quandl-python
quandl-python copied to clipboard
When I tried to use the following code to get the list of all datasets: import csv import quandl quandl.ApiConfig.api_key = 'your_key' ds=quandl.Dataset.all() npage=ds.meta['total_pages'] csv_file = open('Datasets.csv', 'w', newline='') csv_writer...
For example when querying the FRED/GDP endpoint, I get back a list of dates and numbers, however, these dates are not when the numbers were actually release but rather "normalized"...
in Jupiter Notebook 6.1.4: import quandl aapl = quandl.get("WIKI/AAPL", start_date="2006-10-01", end_date="2012-01-01") --------------------------------------------------------------------------- ModuleNotFoundError Traceback (most recent call last) in ----> 1 import quandl 2 aapl = quandl.get("WIKI/AAPL", start_date="2006-10-01", end_date="2012-01-01") ModuleNotFoundError:...