darren-luo / pandas-datareader

Extract data from a wide range of Internet sources into a pandas DataFrame.

Home Page:https://pydata.github.io/pandas-datareader/stable/index.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pandas-datareader

Up to date remote data access for pandas, works for multiple versions of pandas.

https://travis-ci.org/pydata/pandas-datareader.svg?branch=master https://coveralls.io/repos/pydata/pandas-datareader/badge.svg?branch=master https://readthedocs.org/projects/pandas-datareader/badge/?version=latest

Warning

v0.8.0 is the last version which officially supports Python 2.7. Future versions of pandas_datareader will end support for Python 2.x.

Warning

As of v0.8.0 Robinhood has been immediately deprecated due to large changes in their API and no stable replacement.

Usage

Starting in 0.19.0, pandas no longer supports pandas.io.data or pandas.io.wb, so you must replace your imports from pandas.io with those from pandas_datareader:

from pandas.io import data, wb # becomes
from pandas_datareader import data, wb

Many functions from the data module have been included in the top level API.

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.

Development documentation is available for the latest changes in master.

Installation

Requirements

Using pandas datareader requires the following packages:

  • pandas>=0.19.2
  • lxml
  • requests>=2.3.0

Building the documentation additionally requires:

  • matplotlib
  • ipython
  • requests_cache
  • sphinx
  • sphinx_rtd_theme

Development and testing additionally requires:

  • black
  • coverage
  • codecov
  • coveralls
  • flake8
  • pytest
  • pytest-cov
  • wrapt

Install latest release version via pip

$ pip install pandas-datareader

Install latest development version

$ pip install git+https://github.com/pydata/pandas-datareader.git

or

$ git clone https://github.com/pydata/pandas-datareader.git
$ python setup.py install

About

Extract data from a wide range of Internet sources into a pandas DataFrame.

https://pydata.github.io/pandas-datareader/stable/index.html

License:Other


Languages

Language:Python 99.9%Language:Shell 0.1%