You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is my code, the only changes i made are from urllib.request import urlopen and result = urllib.urlopen(api_url).read() as i am on python 3.8.3
`
from spyre import server
import pandas as pd
from urllib.request import urlopen
import json
class StockExample(server.App):
title = "Historical Stock Prices"
I am using python 3.8.3 on Windows 10. All dependencies are fully up to date.
I copied Example 2's code making only necessary changes, but the chart is stuck loading when i run my web app.


The same is the case when i run the second example on the dataspyre documentation found here:
https://dataspyre.readthedocs.io/en/latest/getting_started.html#example-2-tabs-and-tables
The first example runs fine
Here is my code, the only changes i made are
from urllib.request import urlopen
andresult = urllib.urlopen(api_url).read()
as i am on python 3.8.3`
from spyre import server
import pandas as pd
from urllib.request import urlopen
import json
class StockExample(server.App):
title = "Historical Stock Prices"
app = StockExample()
app.launch(port=9093)`
Any help with this would be appreciated, thank you
The text was updated successfully, but these errors were encountered: