pandas-datareader¶
Version: v0.10.0 Date: July 13, 2021
Up-to-date remote data access for pandas. Works for multiple versions of pandas.
Quick Start¶
Install using pip
pip install pandas-datareader
and then import and use one of the data readers. This example reads 5-years of 10-year constant maturity yields on U.S. government bonds.
import pandas_datareader as pdr
pdr.get_data_fred('GS10')
Documentation¶
Stable documentation is available on github.io. A second copy of the stable documentation is hosted on read the docs for more details.
Recent developments¶
You can install the latest development version using
pip install git+https://github.com/pydata/pandas-datareader.git
or
git clone https://github.com/pydata/pandas-datareader.git
cd pandas-datareader
python setup.py install
Development documentation is available for the latest changes in master.