Skip to content

Fixed environment variable name #648

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/source/remote_data.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,11 @@ IEX

The Investors Exchange (IEX) provides a wide range of data through an
`API <https://iexcloud.io/api/docs/>`__. Historical stock
prices are available for up to 15 years. The usage of these readers requires an API key, which can be stored in the ``IEX_API_TOKEN`` environment variable.
prices are available for up to 15 years. The usage of these readers requires the publishable API key from IEX Cloud Console, which can be stored in the ``IEX_API_KEY`` environment variable.

.. ipython:: python


os.environ["IEX_API_KEY"] = "pk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
import pandas_datareader.data as web
from datetime import datetime
start = datetime(2016, 9, 1)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/whatsnew/v0.8.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Highlights include:
aggregated economic data from 90+ official statistical agencies
(:issue:`615`)
- Migrated IEX readers to `IEX Cloud <https://iexcloud.io>`__. All
readers now require an API token (``IEX_API_TOKEN``)
readers now require an API token (``IEX_API_KEY``)
- Removal of Google finance and Morningstar, which were deprecated in 0.7.0.
- Immediate deprecation of Robinhood for quotes and historical data. Robinhood
ended support for these endpoints in 1/2019
Expand Down