January 2020
Beginner to intermediate
432 pages
11h 24m
English
Execute the following steps to download data from Quandl.
import pandas as pd import quandl
QUANDL_KEY = '{key}'quandl.ApiConfig.api_key = QUANDL_KEY
You need to replace {key} with your own API key.
df_quandl = quandl.get(dataset='WIKI/AAPL', start_date='2000-01-01', end_date='2010-12-31')
We can inspect the downloaded data:

The result of the request is a DataFrame (2,767 rows) containing the daily OHLC prices, the adjusted prices, dividends, and potential stock splits.
Read now
Unlock full access