April 2019
Intermediate to advanced
426 pages
11h 13m
English
Fetching data from Quandl into Python is fairly straightforward. Suppose we are interested in ABN Amro Group from the Euronext Stock Exchange. The ticker symbol in Quandl is EURONEXT/ABN. In a Jupyter notebook cell, run the following command:
In [ ]: import quandl # Replace with your own Quandl API key QUANDL_API_KEY = 'BCzkk3NDWt7H9yjzx-DY' quandl.ApiConfig.api_key = QUANDL_API_KEY df = quandl.get('EURONEXT/ABN')
After importing the quandl package, we store our Quandl API key in the constant variable, QUANDL_API_KEY, which will be reused in the rest of this ...