I'm trying to get the alpha_vantage package installed and working under Pythonista. <https://github.com/RomelTorres/alpha_vantage.
'pip install alpha_vantage works fine but there seem to be some problems running the demo:
from alpha_vantage.timeseries import TimeSeries
ts = TimeSeries(key='YOUR_API_KEY')
Get json object with the intraday data and another with the call's metadata
data, meta_data = ts.get_intraday('GOOGL')
If I run this (with an API_key which you can get for free), I get "cannot import name TImeSeries'. The timeseries script is in the alpha_vantage directory in Site_Packages. Can anyone see the problem?