Skip to content

Tags: RomelTorres/alpha_vantage

Tags

v3.0.0

Toggle v3.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update README.md

2.3.1

Toggle 2.3.1's commit message
updated for correct readme

2.2.0

Toggle 2.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Prep for 2.2.0 (#210)

* added rapidapi key integration

* prep for 2.1.3

* Removing get_batch_stock_quotes method (#189)

* Removing get_batch_stock_quotes method

Remove get_batch_stock_quotes method, resolving issue #184.

* remove tests for get_batch_stock_quotes

* Delete mock_batch_quotes

Was only used for the tests removed in the previous commits, which made this file dead weight.

* Add asyncio support for all components (#191)

* Add asyncio support for all components

In order to minimize the copy-paste between the async and sync
implementations, all of the non-base components are sym-linked to their
sync counterparts.  Since these import `AlphaVantage` locally, they
automatically pick up the async version, which is really nifty!

There was some refactoring in `SectorPerformance` to make the re-use
possible.

The async verison of AlphaVantage tries to re-use as much as possible
from the sync version.  The main differences are:
* a new `session` for the HTTP calls
* a new `close()` function which should be called when you're done
* `proxy` is a string instead of a dict

Using it:
```python
import asyncio
from alpha_vantage.async_support.timeseries import TimeSeries

async def get_data():
    ts = TimeSeries(key='YOUR_API_KEY')
    data, meta_data = await ts.get_intraday('GOOGL')
    await ts.close()

loop = asyncio.get_event_loop()
loop.run_until_complete(get_data())
loop.close()
```

* Add asyncio packages to setup.py

* Issue #206: Add 'time_period' argument to 'get_bbands()' documentation. (#207)

* Fixes small documentation bugs (#208)

* fixed fx documentation

* fixed pypi badge for documentation

* prep for 2.2.0 (#209)

* fixed fx documentation

* fixed pypi badge for documentation

* prep for 2.2.0

* small documentaiton change for 2.2.0

Co-authored-by: Aaron Sanders <sandersaarond@gmail.com>
Co-authored-by: Jon Cinque <jon.cinque@gmail.com>
Co-authored-by: Peter Anderson <BWPanda@users.noreply.github.com>

2.1.2

Toggle 2.1.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #163 from RomelTorres/develop

Prep for 2.1.2

2.1.1

Toggle 2.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #145 from PatrickAlphaVantage/develop

fixing dtype float error on global quote handling

2.1.0

Toggle 2.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #143 from PatrickAlphaVantage/develop

Prepare for 2.1.0 Release

2.0.0

Toggle 2.0.0's commit message
This release merges a pull request for setting up proxies

1.9.0

Toggle 1.9.0's commit message
This update replaces the urlib for requests

1.8.1

Toggle 1.8.1's commit message
Improve csv file reader

1.8.0

Toggle 1.8.0's commit message
This release gives back the column names of the call

to alphabantage api original name (instead of messing with them
to make them look a bit nicer)

Also implemented the get_batch_quotes call.