Skip to content

Commit 924c7c2

Browse files
authored
Merge pull request #1 from econdb/docs
Add requested documentation items
2 parents 771d492 + fc43a44 commit 924c7c2

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

docs/source/readers/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Data Readers
88
fred
99
famafrench
1010
bank-of-canada
11+
econdb
1112
enigma
1213
eurostat
1314
iex

docs/source/remote_data.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,23 @@ performances through the top-level function ``get_sector_performance_av``.
211211
212212
.. _remote_data.enigma:
213213

214+
Econdb
215+
======
216+
217+
`Econdb <https://www.econdb.com>`__ provides economic data from 90+
218+
official statistical agencies. Free API allows access to the complete
219+
Econdb database of time series aggregated into datasets.
220+
221+
.. ipython:: python
222+
223+
import os
224+
import pandas_datareader.data as web
225+
226+
f = web.DataReader('ticker=RGDPQNO', 'econdb')
227+
f.head()
228+
229+
.. _remote_data.econdb:
230+
214231
Enigma
215232
======
216233

docs/source/whatsnew/v0.8.0.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ v0.8.0 (TBD)
55

66
Highlights include:
77

8+
- A new connector for Econdb was introduced. Econdb provides
9+
aggregated economic data from 90+ official statistical agencies
10+
(:issue:`615`)
11+
812
.. contents:: What's new in v0.8.0
913
:local:
1014
:backlinks: none

0 commit comments

Comments
 (0)