A python API to Alpha Vantage
Project description
An alternative python backend to the Alpha Vantage API
alpyvantage provides a python backend to the Alpha Vantage API as presented in the official API documentation. You can get a free API key here.
Documentation
API calls are straightforward. Either use the build-in functions such as time_series_intraday, time_series_weekly, etc:
import alpyvantage as av
api = av.API(<your_api_key>)
data, meta_data = api.time_series_intraday('DAX', interval='1min', month='2015-01')
print(data) # its a pandas.DataFrame
Or use the function keyword from the official API documentation:
data, meta_data = api('TIME_SERIES_INTRADAY', symbol='DAX', interval='1min', month='2015-01')
A detailed function documentation can be found here.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
alpyvantage-0.1.0.tar.gz
(6.5 kB
view hashes)
Built Distribution
Close
Hashes for alpyvantage-0.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b31a67714c450956afbfc27bfbd6c3339631ca175526fc1b1c67678bc64099fd |
|
MD5 | a59e4e4c1823a7ef08bf0d0d36e8ba82 |
|
BLAKE2b-256 | 935acddfc053973f2eb442d153750c8356b13926e520b3043fe6277665f4fbec |