Skip to content

Commit 88363ea

Browse files
authored
Merge pull request #648 from oceanapplications/patch-1
Fixed environment variable name
2 parents 8444bb4 + 2dfd907 commit 88363ea

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

docs/source/remote_data.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,11 @@ IEX
7575

7676
The Investors Exchange (IEX) provides a wide range of data through an
7777
`API <https://iexcloud.io/api/docs/>`__. Historical stock
78-
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.
78+
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.
7979

8080
.. ipython:: python
81-
81+
82+
os.environ["IEX_API_KEY"] = "pk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
8283
import pandas_datareader.data as web
8384
from datetime import datetime
8485
start = datetime(2016, 9, 1)

docs/source/whatsnew/v0.8.0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Highlights include:
99
aggregated economic data from 90+ official statistical agencies
1010
(:issue:`615`)
1111
- Migrated IEX readers to `IEX Cloud <https://iexcloud.io>`__. All
12-
readers now require an API token (``IEX_API_TOKEN``)
12+
readers now require an API token (``IEX_API_KEY``)
1313
- Removal of Google finance and Morningstar, which were deprecated in 0.7.0.
1414
- Immediate deprecation of Robinhood for quotes and historical data. Robinhood
1515
ended support for these endpoints in 1/2019

0 commit comments

Comments
 (0)