File tree Expand file tree Collapse file tree 3 files changed +22
-0
lines changed Expand file tree Collapse file tree 3 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ Data Readers
8
8
fred
9
9
famafrench
10
10
bank-of-canada
11
+ econdb
11
12
enigma
12
13
eurostat
13
14
iex
Original file line number Diff line number Diff line change @@ -211,6 +211,23 @@ performances through the top-level function ``get_sector_performance_av``.
211
211
212
212
.. _remote_data.enigma :
213
213
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
+
214
231
Enigma
215
232
======
216
233
Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ v0.8.0 (TBD)
5
5
6
6
Highlights include:
7
7
8
+ - A new connector for Econdb was introduced. Econdb provides
9
+ aggregated economic data from 90+ official statistical agencies
10
+ (:issue:`615`)
11
+
8
12
.. contents:: What's new in v0.8.0
9
13
:local:
10
14
:backlinks: none
You can’t perform that action at this time.
0 commit comments