Get data from API
Tags: #quandl #marketdata #opendata #finance #snippet #matplotlib
Last update: 2023-04-12 (Created: 2021-02-28)
Description: This notebook provides a guide to retrieving data from the Quandl API.
!pip install quandl
import quandl
import matplotlib.pyplot as plt
data = quandl.get("EIA/PET_RWTC_D")
data
%matplotlib inline
data.plot()
Last modified 1mo ago