Skip to content

Commit 80c333b

Browse files
jhoodsmithbashtage
authored andcommitted
Update data.py (#494)
Passing 'access_key' as Quandl api key
1 parent 88d8268 commit 80c333b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas_datareader/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ def DataReader(name, data_source=None, start=None, end=None,
379379
elif data_source == "quandl":
380380
return QuandlReader(symbols=name, start=start, end=end,
381381
retry_count=retry_count, pause=pause,
382-
session=session).read()
382+
session=session, api_key=access_key).read()
383383
elif data_source == "moex":
384384
return MoexReader(symbols=name, start=start, end=end,
385385
retry_count=retry_count, pause=pause,

0 commit comments

Comments
 (0)