Skip to content Skip to sidebar Skip to footer

Not Able To Fetch Data From Quandl In Python

I tried the following code (written in a file test.py): import pandas as pd import quandl d=quandl.get('WIKI/PRICES') And I got this error message: Traceback (most recent call las

Solution 1:

I believe you need to pass it your authentication token:

quandl.get("EOD/AAPL", authtoken="...")

This returns the end of day prices for Apple (AAPL).

Solution 2:

if you are not getting data and its showing some error when you are typing quandl.get("..."). Then You need to go to quandl. in the search option type "GOOGLE STOCK". then click on the dataset which you opt select. After that go to library and click on the python and get something like quandl.get(".....dataset",authtoken="....") . copy this and paste it in your command shell.

Post a Comment for "Not Able To Fetch Data From Quandl In Python"