alpha-vantage


Namealpha-vantage JSON
Version 2.3.1 PyPI version JSON
download
home_pagehttps://github.com/RomelTorres/alpha_vantage
SummaryPython module to get stock data from the Alpha Vantage Api
upload_time2020-12-21 02:36:18
maintainer
docs_urlNone
authorRomel J. Torres
requires_python
licenseMIT
keywords stocks market finance alpha_vantage quotes shares
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            # alpha_vantage

[![Build Status](https://travis-ci.org/RomelTorres/alpha_vantage.png?branch=master)](https://travis-ci.org/RomelTorres/alpha_vantage)
[![PyPI version](https://badge.fury.io/py/alpha-vantage.svg)](https://badge.fury.io/py/alpha-vantage)
[![Documentation Status](https://readthedocs.org/projects/alpha-vantage/badge/?version=latest)](http://alpha-vantage.readthedocs.io/en/latest/?badge=latest)
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/RomelTorres/alpha_vantage.svg)](http://isitmaintained.com/project/RomelTorres/alpha_vantage "Average time to resolve an issue")
[![Percentage of issues still open](http://isitmaintained.com/badge/open/RomelTorres/alpha_vantage.svg)](http://isitmaintained.com/project/RomelTorres/alpha_vantage "Percentage of issues still open")

*Python module to get stock data/cryptocurrencies from the Alpha Vantage API*

Alpha Vantage delivers a free API for real time financial data and most used finance indicators in a simple json or pandas format. This module implements a python interface to the free API provided by [Alpha Vantage](https://www.alphavantage.co/). It requires a free API key, that can be requested from http://www.alphavantage.co/support/#api-key. You can have a look at all the API calls available in their [API documentation](https://www.alphavantage.co/documentation/).

For code-less access to the APIs, you may also consider the official [Google Sheet Add-on](https://gsuite.google.com/marketplace/app/alpha_vantage_market_data/434809773372) or the [Microsoft Excel Add-on](https://appsource.microsoft.com/en-us/product/office/WA200001365) by Alpha Vantage. Check out [this](https://medium.com/@patrick.collins_58673/stock-api-landscape-5c6e054ee631) guide for some common tips on working with financial market data. 

## News

* From version 2.3.0 onwards, fundamentals data and extended intraday is supported.
* From version 2.2.0 onwards, asyncio support now provided. See below for more information. 
* From version 2.1.3 onwards, [rapidAPI](https://rapidapi.com/alphavantage/api/alpha-vantage-alpha-vantage-default) key integration is now available.
* From version 2.1.0 onwards, error logging of bad API calls has been made more apparent.
* From version 1.9.0 onwards, the urllib was substituted by pythons request library that is thread safe. If you have any error, post an issue.
* From version 1.8.0 onwards, the column names of the data frames have changed, they are now exactly what alphavantage gives back in their json response. You can see the examples in better detail in the following git repo:  https://github.com/RomelTorres/av_example
* From version 1.6.0, pandas was taken out as a hard dependency.

## Install
To install the package use:
```shell
pip install alpha_vantage
```
Or install with pandas support, simply install pandas too:
```shell
pip install alpha_vantage pandas
```

If you want to install from source, then use:
```shell
git clone https://github.com/RomelTorres/alpha_vantage.git
pip install -e alpha_vantage
```

## Usage
To get data from the API, simply import the library and call the object with your API key. Next, get ready for some awesome, free, realtime finance data. Your API key may also be stored in the environment variable ``ALPHAVANTAGE_API_KEY``.
```python
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')
```
You may also get a key from [rapidAPI](https://rapidapi.com/alphavantage/api/alpha-vantage-alpha-vantage-default). Use your rapidAPI key for the key variable, and set ```rapidapi=True```

```python
ts = TimeSeries(key='YOUR_API_KEY',rapidapi=True)
```

Internally there is a retries counter, that can be used to minimize connection errors (in case that the API is not able to respond in time), the default is set to
5 but can be increased or decreased whenever needed.
```python
ts = TimeSeries(key='YOUR_API_KEY',retries='YOUR_RETRIES')
```
The library supports giving its results as json dictionaries (default), pandas dataframe (if installed) or csv, simply pass the parameter output_format='pandas' to change the format of the output for all the API calls in the given class. Please note that some API calls do not support the csv format (namely ```ForeignExchange, SectorPerformances and TechIndicators```) because the API endpoint does not support the format on their calls either.

```python
ts = TimeSeries(key='YOUR_API_KEY',output_format='pandas')
```

The pandas data frame given by the call, can have either a date string indexing or an integer indexing (by default the indexing is 'date'),
depending on your needs, you can use both.

```python
 # For the default date string index behavior
ts = TimeSeries(key='YOUR_API_KEY',output_format='pandas', indexing_type='date')
# For the default integer index behavior
ts = TimeSeries(key='YOUR_API_KEY',output_format='pandas', indexing_type='integer')
```

## Data frame structure
The data frame structure is given by the call on alpha vantage rest API. The column names of the data frames
are the ones given by their data structure. For example, the following call:
```python
from alpha_vantage.timeseries import TimeSeries
from pprint import pprint
ts = TimeSeries(key='YOUR_API_KEY', output_format='pandas')
data, meta_data = ts.get_intraday(symbol='MSFT',interval='1min', outputsize='full')
pprint(data.head(2))
```
Would result on:
![alt text](images/docs_data_frame_header.png?raw=True "Data Header format.")

The headers from the data are specified from Alpha Vantage (in previous versions, the numbers in the headers were removed, but long term is better to have the data exactly as Alpha Vantage produces it.)
## Plotting
### Time Series
Using pandas support we can plot the intra-minute value for 'MSFT' stock quite easily:

```python
from alpha_vantage.timeseries import TimeSeries
import matplotlib.pyplot as plt

ts = TimeSeries(key='YOUR_API_KEY', output_format='pandas')
data, meta_data = ts.get_intraday(symbol='MSFT',interval='1min', outputsize='full')
data['4. close'].plot()
plt.title('Intraday Times Series for the MSFT stock (1 min)')
plt.show()
```
Giving us as output:
![alt text](images/docs_ts_msft_example.png?raw=True "MSFT minute value plot example")

### Technical indicators
The same way we can get pandas to plot technical indicators like Bollinger BandsĀ®

```python
from alpha_vantage.techindicators import TechIndicators
import matplotlib.pyplot as plt

ti = TechIndicators(key='YOUR_API_KEY', output_format='pandas')
data, meta_data = ti.get_bbands(symbol='MSFT', interval='60min', time_period=60)
data.plot()
plt.title('BBbands indicator for  MSFT stock (60 min)')
plt.show()
```
Giving us as output:
![alt text](images/docs_ti_msft_example.png?raw=True "MSFT minute value plot example")

### Sector Performance
We can also plot sector performance just as easy:

```python
from alpha_vantage.sectorperformance import SectorPerformances
import matplotlib.pyplot as plt

sp = SectorPerformances(key='YOUR_API_KEY', output_format='pandas')
data, meta_data = sp.get_sector()
data['Rank A: Real-Time Performance'].plot(kind='bar')
plt.title('Real Time Performance (%) per Sector')
plt.tight_layout()
plt.grid()
plt.show()
```

Giving us as output:

![alt text](images/docs_sp_rt_example.png?raw=True "Real Time Sector Performance")

### Crypto currencies.

We can also plot crypto currencies prices like BTC:

```python
from alpha_vantage.cryptocurrencies import CryptoCurrencies
import matplotlib.pyplot as plt

cc = CryptoCurrencies(key='YOUR_API_KEY', output_format='pandas')
data, meta_data = cc.get_digital_currency_daily(symbol='BTC', market='CNY')
data['4b. close (USD)'].plot()
plt.tight_layout()
plt.title('Daily close value for bitcoin (BTC)')
plt.grid()
plt.show()
```

Giving us as output:
![alt text](images/docs_cripto_btc.png?raw=True "Crypto Currenci daily (BTC)")

### Foreign Exchange (FX)

The foreign exchange endpoint has no metadata, thus only available as json format and pandas (using the 'csv' format will raise an Error)

```python
from alpha_vantage.foreignexchange import ForeignExchange
from pprint import pprint
cc = ForeignExchange(key='YOUR_API_KEY')
# There is no metadata in this call
data, _ = cc.get_currency_exchange_rate(from_currency='BTC',to_currency='USD')
pprint(data)
```
Giving us as output:
```
{
    '1. From_Currency Code': 'BTC',
    '2. From_Currency Name': 'Bitcoin',
    '3. To_Currency Code': 'USD',
    '4. To_Currency Name': 'United States Dollar',
    '5. Exchange Rate': '5566.80500105',
    '6. Last Refreshed': '2017-10-15 15:13:08',
    '7. Time Zone': 'UTC'
}
```

### Asyncio support

From version 2.2.0 on, asyncio support will now be available. This is only for python versions 3.5+. If you do not have 3.5+, the code will break.

The syntax is simple, just mark your methods with the `async` keyword, and use the `await` keyword. 

Here is an example of a for loop for getting multiple symbols asyncronously. This greatly improving the performance of a program with multiple API calls.

```python
import asyncio
from alpha_vantage.async_support.timeseries import TimeSeries

symbols = ['AAPL', 'GOOG', 'TSLA', 'MSFT']


async def get_data(symbol):
    ts = TimeSeries(key='YOUR_KEY_HERE')
    data, _ = await ts.get_quote_endpoint(symbol)
    await ts.close()
    return data

loop = asyncio.get_event_loop()
tasks = [get_data(symbol) for symbol in symbols]
group1 = asyncio.gather(*tasks)
results = loop.run_until_complete(group1)
loop.close()
print(results)
```

We have written a much more in depth article to explain asyncio for those who have never used it but want to learn about asyncio, concurrency, and multi-threading. Check it out here: [Which Should You Use: Asynchronous Programming or Multi-Threading?](https://medium.com/better-programming/which-should-you-use-asynchronous-programming-or-multi-threading-7435ec9adc8e?source=friends_link&sk=8c6c05c2bbc3666e9066547cb564c352)

## Examples

I have added a repository with examples in a python notebook to better see the
usage of the library: https://github.com/RomelTorres/av_example


## Tests

In order to run the tests you have to first export your API key so that the test can use it to run, also the tests require pandas, mock and nose.
```shell
export API_KEY=YOUR_API_KEY
cd alpha_vantage
nosetests
```

## Documentation
The code documentation can be found at https://alpha-vantage.readthedocs.io/en/latest/

## Contributing
Contributing is always welcome. Just contact us on how best you can contribute, add an issue, or make a PR. 

## TODOs:
* The integration tests are not being run at the moment within travis, gotta fix them to run.
* Add test for csv calls as well.
* Add tests for incompatible parameter raise errors.
* Github actions & other items in the issues page. 



## Contact:
You can reach/follow the Alpha Vantage team on any of the following platforms:
* [Slack](https://alphavantage.herokuapp.com/)
* [Twitter: @alpha_vantage](https://twitter.com/alpha_vantage)
* [Medium-Patrick](https://medium.com/@patrick.collins_58673)
* [Medium-AlphaVantage](https://medium.com/alpha-vantage)
* Email: support@alphavantage.co
* Community events: https://alphavhack.devpost.com/


## Star if you like it.
If you like or use this project, consider showing your support by starring it.

:venezuela:-:de:



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/RomelTorres/alpha_vantage",
    "name": "alpha-vantage",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "stocks,market,finance,alpha_vantage,quotes,shares",
    "author": "Romel J. Torres",
    "author_email": "romel.torres@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/75/ea/28417504b1d0701626b76e150cf114b958c4b40d44da006303dc6a6dcce3/alpha_vantage-2.3.1.tar.gz",
    "platform": "",
    "description": "# alpha_vantage\n\n[![Build Status](https://travis-ci.org/RomelTorres/alpha_vantage.png?branch=master)](https://travis-ci.org/RomelTorres/alpha_vantage)\n[![PyPI version](https://badge.fury.io/py/alpha-vantage.svg)](https://badge.fury.io/py/alpha-vantage)\n[![Documentation Status](https://readthedocs.org/projects/alpha-vantage/badge/?version=latest)](http://alpha-vantage.readthedocs.io/en/latest/?badge=latest)\n[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/RomelTorres/alpha_vantage.svg)](http://isitmaintained.com/project/RomelTorres/alpha_vantage \"Average time to resolve an issue\")\n[![Percentage of issues still open](http://isitmaintained.com/badge/open/RomelTorres/alpha_vantage.svg)](http://isitmaintained.com/project/RomelTorres/alpha_vantage \"Percentage of issues still open\")\n\n*Python module to get stock data/cryptocurrencies from the Alpha Vantage API*\n\nAlpha Vantage delivers a free API for real time financial data and most used finance indicators in a simple json or pandas format. This module implements a python interface to the free API provided by [Alpha Vantage](https://www.alphavantage.co/). It requires a free API key, that can be requested from http://www.alphavantage.co/support/#api-key. You can have a look at all the API calls available in their [API documentation](https://www.alphavantage.co/documentation/).\n\nFor code-less access to the APIs, you may also consider the official [Google Sheet Add-on](https://gsuite.google.com/marketplace/app/alpha_vantage_market_data/434809773372) or the [Microsoft Excel Add-on](https://appsource.microsoft.com/en-us/product/office/WA200001365) by Alpha Vantage. Check out [this](https://medium.com/@patrick.collins_58673/stock-api-landscape-5c6e054ee631) guide for some common tips on working with financial market data. \n\n## News\n\n* From version 2.3.0 onwards, fundamentals data and extended intraday is supported.\n* From version 2.2.0 onwards, asyncio support now provided. See below for more information. \n* From version 2.1.3 onwards, [rapidAPI](https://rapidapi.com/alphavantage/api/alpha-vantage-alpha-vantage-default) key integration is now available.\n* From version 2.1.0 onwards, error logging of bad API calls has been made more apparent.\n* From version 1.9.0 onwards, the urllib was substituted by pythons request library that is thread safe. If you have any error, post an issue.\n* From version 1.8.0 onwards, the column names of the data frames have changed, they are now exactly what alphavantage gives back in their json response. You can see the examples in better detail in the following git repo:  https://github.com/RomelTorres/av_example\n* From version 1.6.0, pandas was taken out as a hard dependency.\n\n## Install\nTo install the package use:\n```shell\npip install alpha_vantage\n```\nOr install with pandas support, simply install pandas too:\n```shell\npip install alpha_vantage pandas\n```\n\nIf you want to install from source, then use:\n```shell\ngit clone https://github.com/RomelTorres/alpha_vantage.git\npip install -e alpha_vantage\n```\n\n## Usage\nTo get data from the API, simply import the library and call the object with your API key. Next, get ready for some awesome, free, realtime finance data. Your API key may also be stored in the environment variable ``ALPHAVANTAGE_API_KEY``.\n```python\nfrom alpha_vantage.timeseries import TimeSeries\nts = TimeSeries(key='YOUR_API_KEY')\n# Get json object with the intraday data and another with  the call's metadata\ndata, meta_data = ts.get_intraday('GOOGL')\n```\nYou may also get a key from [rapidAPI](https://rapidapi.com/alphavantage/api/alpha-vantage-alpha-vantage-default). Use your rapidAPI key for the key variable, and set ```rapidapi=True```\n\n```python\nts = TimeSeries(key='YOUR_API_KEY',rapidapi=True)\n```\n\nInternally there is a retries counter, that can be used to minimize connection errors (in case that the API is not able to respond in time), the default is set to\n5 but can be increased or decreased whenever needed.\n```python\nts = TimeSeries(key='YOUR_API_KEY',retries='YOUR_RETRIES')\n```\nThe library supports giving its results as json dictionaries (default), pandas dataframe (if installed) or csv, simply pass the parameter output_format='pandas' to change the format of the output for all the API calls in the given class. Please note that some API calls do not support the csv format (namely ```ForeignExchange, SectorPerformances and TechIndicators```) because the API endpoint does not support the format on their calls either.\n\n```python\nts = TimeSeries(key='YOUR_API_KEY',output_format='pandas')\n```\n\nThe pandas data frame given by the call, can have either a date string indexing or an integer indexing (by default the indexing is 'date'),\ndepending on your needs, you can use both.\n\n```python\n # For the default date string index behavior\nts = TimeSeries(key='YOUR_API_KEY',output_format='pandas', indexing_type='date')\n# For the default integer index behavior\nts = TimeSeries(key='YOUR_API_KEY',output_format='pandas', indexing_type='integer')\n```\n\n## Data frame structure\nThe data frame structure is given by the call on alpha vantage rest API. The column names of the data frames\nare the ones given by their data structure. For example, the following call:\n```python\nfrom alpha_vantage.timeseries import TimeSeries\nfrom pprint import pprint\nts = TimeSeries(key='YOUR_API_KEY', output_format='pandas')\ndata, meta_data = ts.get_intraday(symbol='MSFT',interval='1min', outputsize='full')\npprint(data.head(2))\n```\nWould result on:\n![alt text](images/docs_data_frame_header.png?raw=True \"Data Header format.\")\n\nThe headers from the data are specified from Alpha Vantage (in previous versions, the numbers in the headers were removed, but long term is better to have the data exactly as Alpha Vantage produces it.)\n## Plotting\n### Time Series\nUsing pandas support we can plot the intra-minute value for 'MSFT' stock quite easily:\n\n```python\nfrom alpha_vantage.timeseries import TimeSeries\nimport matplotlib.pyplot as plt\n\nts = TimeSeries(key='YOUR_API_KEY', output_format='pandas')\ndata, meta_data = ts.get_intraday(symbol='MSFT',interval='1min', outputsize='full')\ndata['4. close'].plot()\nplt.title('Intraday Times Series for the MSFT stock (1 min)')\nplt.show()\n```\nGiving us as output:\n![alt text](images/docs_ts_msft_example.png?raw=True \"MSFT minute value plot example\")\n\n### Technical indicators\nThe same way we can get pandas to plot technical indicators like Bollinger Bands\u00ae\n\n```python\nfrom alpha_vantage.techindicators import TechIndicators\nimport matplotlib.pyplot as plt\n\nti = TechIndicators(key='YOUR_API_KEY', output_format='pandas')\ndata, meta_data = ti.get_bbands(symbol='MSFT', interval='60min', time_period=60)\ndata.plot()\nplt.title('BBbands indicator for  MSFT stock (60 min)')\nplt.show()\n```\nGiving us as output:\n![alt text](images/docs_ti_msft_example.png?raw=True \"MSFT minute value plot example\")\n\n### Sector Performance\nWe can also plot sector performance just as easy:\n\n```python\nfrom alpha_vantage.sectorperformance import SectorPerformances\nimport matplotlib.pyplot as plt\n\nsp = SectorPerformances(key='YOUR_API_KEY', output_format='pandas')\ndata, meta_data = sp.get_sector()\ndata['Rank A: Real-Time Performance'].plot(kind='bar')\nplt.title('Real Time Performance (%) per Sector')\nplt.tight_layout()\nplt.grid()\nplt.show()\n```\n\nGiving us as output:\n\n![alt text](images/docs_sp_rt_example.png?raw=True \"Real Time Sector Performance\")\n\n### Crypto currencies.\n\nWe can also plot crypto currencies prices like BTC:\n\n```python\nfrom alpha_vantage.cryptocurrencies import CryptoCurrencies\nimport matplotlib.pyplot as plt\n\ncc = CryptoCurrencies(key='YOUR_API_KEY', output_format='pandas')\ndata, meta_data = cc.get_digital_currency_daily(symbol='BTC', market='CNY')\ndata['4b. close (USD)'].plot()\nplt.tight_layout()\nplt.title('Daily close value for bitcoin (BTC)')\nplt.grid()\nplt.show()\n```\n\nGiving us as output:\n![alt text](images/docs_cripto_btc.png?raw=True \"Crypto Currenci daily (BTC)\")\n\n### Foreign Exchange (FX)\n\nThe foreign exchange endpoint has no metadata, thus only available as json format and pandas (using the 'csv' format will raise an Error)\n\n```python\nfrom alpha_vantage.foreignexchange import ForeignExchange\nfrom pprint import pprint\ncc = ForeignExchange(key='YOUR_API_KEY')\n# There is no metadata in this call\ndata, _ = cc.get_currency_exchange_rate(from_currency='BTC',to_currency='USD')\npprint(data)\n```\nGiving us as output:\n```\n{\n    '1. From_Currency Code': 'BTC',\n    '2. From_Currency Name': 'Bitcoin',\n    '3. To_Currency Code': 'USD',\n    '4. To_Currency Name': 'United States Dollar',\n    '5. Exchange Rate': '5566.80500105',\n    '6. Last Refreshed': '2017-10-15 15:13:08',\n    '7. Time Zone': 'UTC'\n}\n```\n\n### Asyncio support\n\nFrom version 2.2.0 on, asyncio support will now be available. This is only for python versions 3.5+. If you do not have 3.5+, the code will break.\n\nThe syntax is simple, just mark your methods with the `async` keyword, and use the `await` keyword. \n\nHere is an example of a for loop for getting multiple symbols asyncronously. This greatly improving the performance of a program with multiple API calls.\n\n```python\nimport asyncio\nfrom alpha_vantage.async_support.timeseries import TimeSeries\n\nsymbols = ['AAPL', 'GOOG', 'TSLA', 'MSFT']\n\n\nasync def get_data(symbol):\n    ts = TimeSeries(key='YOUR_KEY_HERE')\n    data, _ = await ts.get_quote_endpoint(symbol)\n    await ts.close()\n    return data\n\nloop = asyncio.get_event_loop()\ntasks = [get_data(symbol) for symbol in symbols]\ngroup1 = asyncio.gather(*tasks)\nresults = loop.run_until_complete(group1)\nloop.close()\nprint(results)\n```\n\nWe have written a much more in depth article to explain asyncio for those who have never used it but want to learn about asyncio, concurrency, and multi-threading. Check it out here: [Which Should You Use: Asynchronous Programming or Multi-Threading?](https://medium.com/better-programming/which-should-you-use-asynchronous-programming-or-multi-threading-7435ec9adc8e?source=friends_link&sk=8c6c05c2bbc3666e9066547cb564c352)\n\n## Examples\n\nI have added a repository with examples in a python notebook to better see the\nusage of the library: https://github.com/RomelTorres/av_example\n\n\n## Tests\n\nIn order to run the tests you have to first export your API key so that the test can use it to run, also the tests require pandas, mock and nose.\n```shell\nexport API_KEY=YOUR_API_KEY\ncd alpha_vantage\nnosetests\n```\n\n## Documentation\nThe code documentation can be found at https://alpha-vantage.readthedocs.io/en/latest/\n\n## Contributing\nContributing is always welcome. Just contact us on how best you can contribute, add an issue, or make a PR. \n\n## TODOs:\n* The integration tests are not being run at the moment within travis, gotta fix them to run.\n* Add test for csv calls as well.\n* Add tests for incompatible parameter raise errors.\n* Github actions & other items in the issues page. \n\n\n\n## Contact:\nYou can reach/follow the Alpha Vantage team on any of the following platforms:\n* [Slack](https://alphavantage.herokuapp.com/)\n* [Twitter: @alpha_vantage](https://twitter.com/alpha_vantage)\n* [Medium-Patrick](https://medium.com/@patrick.collins_58673)\n* [Medium-AlphaVantage](https://medium.com/alpha-vantage)\n* Email: support@alphavantage.co\n* Community events: https://alphavhack.devpost.com/\n\n\n## Star if you like it.\nIf you like or use this project, consider showing your support by starring it.\n\n:venezuela:-:de:\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python module to get stock data from the Alpha Vantage Api",
    "version": "2.3.1",
    "project_urls": {
        "Homepage": "https://github.com/RomelTorres/alpha_vantage"
    },
    "split_keywords": [
        "stocks",
        "market",
        "finance",
        "alpha_vantage",
        "quotes",
        "shares"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bab4d95f9e0eccea6732bab5a079772d453a4f0b68a9f63740d9cf320f92beaa",
                "md5": "d198d0a81634f0f583527097ce3f803a",
                "sha256": "5d05355febe6f0fafc4bd11dc6ce3504a02d9d3c105d60202539855c0f608661"
            },
            "downloads": -1,
            "filename": "alpha_vantage-2.3.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d198d0a81634f0f583527097ce3f803a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 31529,
            "upload_time": "2020-12-21T02:36:15",
            "upload_time_iso_8601": "2020-12-21T02:36:15.616800Z",
            "url": "https://files.pythonhosted.org/packages/ba/b4/d95f9e0eccea6732bab5a079772d453a4f0b68a9f63740d9cf320f92beaa/alpha_vantage-2.3.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75ea28417504b1d0701626b76e150cf114b958c4b40d44da006303dc6a6dcce3",
                "md5": "133548edf10093bc4b4b116c7b204d78",
                "sha256": "0ce76908c3e2a22f9bbdacead90195ec3a4fa41ef8ae7c69a4a2fc99459bfbec"
            },
            "downloads": -1,
            "filename": "alpha_vantage-2.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "133548edf10093bc4b4b116c7b204d78",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 28024,
            "upload_time": "2020-12-21T02:36:18",
            "upload_time_iso_8601": "2020-12-21T02:36:18.346283Z",
            "url": "https://files.pythonhosted.org/packages/75/ea/28417504b1d0701626b76e150cf114b958c4b40d44da006303dc6a6dcce3/alpha_vantage-2.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2020-12-21 02:36:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "RomelTorres",
    "github_project": "alpha_vantage",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "alpha-vantage"
}
        
Elapsed time: 0.53631s