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. Alpha Vantage provides access to a wide range of financial data and time series. Details can be found in the official API documentation. You can get a free API key here.
Installation
Installing the repository version is as simple as typing
pip install alpyvantage
in your terminal or Anaconda Prompt.
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 and provide the parameters as keyword arguments:
data, meta_data = api('TIME_SERIES_INTRADAY', symbol='DAX', interval='1min', month='2015-01')
A detailed documentation of the individual functions can be found here.
Issues and contributions
Please use the issues for questions or if you think anything doesn’t do what it is supposed to do. Pull requests are welcome, please include some documentation.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file alpyvantage-0.2.1.tar.gz.
File metadata
- Download URL: alpyvantage-0.2.1.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
916655910fa9b6ab9e92d227c790bf29efb768472f582e27b3543aca65d7cd2f
|
|
| MD5 |
42f2773d849a1627244f4a2860ad67ba
|
|
| BLAKE2b-256 |
38899da6bc76fc5ae87556906a658d442bc3c285a32406e94edd8d9362decbe2
|
File details
Details for the file alpyvantage-0.2.1-py3-none-any.whl.
File metadata
- Download URL: alpyvantage-0.2.1-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a380422b655113f6b95a9d0ca8ebd27b21d3b88a7529e9e03a24de55ea375d84
|
|
| MD5 |
a91be06d121e335174551958b7512fdb
|
|
| BLAKE2b-256 |
82229270b9ef85641f3d9233ef94391e7f7edbabb726a16d25409703d96eb50f
|