I'm having trouble importing and using Quandl on Jupyter notebook. Below is the error message I get. When I do df = Quandl.get('WIKI/GOOGL')
, I'm given NameError: name 'Quandl' is not defined
.
Asked
Active
Viewed 336 times
1

Ben Gardner
- 121
- 1
- 13
-
The error message in the title seems like it is different from what you've posted? – IanQ Feb 26 '19 at 21:48
-
Two different errors: one when I use `Quandl.get` and another when I use `quandl.get`. Resolved now – Ben Gardner Feb 26 '19 at 21:53
1 Answers
0
A little more digging showed that it was just that Quandl had changed. quandl.ApiConfig.api_key = <YOUR API KEY HERE>
is required now.

Ben Gardner
- 121
- 1
- 13