Metadata-Version: 2.4
Name: pandas-datareader
Version: 0.11.0
Summary: Pandas-compatible data readers. Formerly a component of pandas.
Author-email: The PyData Development Team <pydata@googlegroups.com>
License-Expression: BSD-3-Clause
Project-URL: Homepage, https://pandas.pydata.org
Project-URL: Documentation, https://pandas-datareader.readthedocs.io/en/latest/
Project-URL: Repository, https://github.com/pydata/pandas-datareader.git
Project-URL: Bug Tracker, https://github.com/pydata/pandas-datareader/issues
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: lxml
Requires-Dist: pandas>=2.1.4
Requires-Dist: requests>=2.19.0
Requires-Dist: setuptools
Dynamic: license-file

# pandas-datareader

Macroeconomic and factor-oriented remote data access for pandas.

[![CI Testing](https://github.com/pydata/pandas-datareader/actions/workflows/ci.yml/badge.svg)](https://github.com/pydata/pandas-datareader/actions/workflows/ci.yml)
[![PyPI](https://img.shields.io/pypi/v/pandas-datareader.svg)](https://pypi.python.org/pypi/pandas-datareader/)
[![Codecov](https://codecov.io/gh/pydata/pandas-datareader/branch/master/graph/badge.svg)](https://codecov.io/gh/pydata/pandas-datareader)
[![RTD](https://readthedocs.org/projects/pandas-datareader/badge/?version=latest)](https://pandas-datareader.readthedocs.io/en/latest/)
[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![License](https://img.shields.io/pypi/l/pandas-datareader)](https://github.com/pydata/pandas-datareader/blob/main/LICENSE.md)

## Installation

Install using `pip`

``` shell
pip install pandas-datareader
```

## Usage

``` python
import pandas_datareader as pdr
pdr.get_data_fred('GS10')
```

The public API is focused on macroeconomic, policy, and factor-style data
sources such as FRED, Fama/French, Bank of Canada, World Bank, OECD,
Eurostat, and the new `pandas_datareader.macro` interface.

## Documentation

[Stable documentation](https://pydata.github.io/pandas-datareader/) is available on
[github.io](https://pydata.github.io/pandas-datareader/). A second copy of the stable
documentation is hosted on [read the docs](https://pandas-datareader.readthedocs.io/)
for more details.

[Development documentation](https://pydata.github.io/pandas-datareader/devel/) is available
for the latest changes in master.

### Requirements

Using pandas datareader requires the following packages:

-   pandas>=1.5.3
-   lxml
-   requests>=2.19.0
-   distutils (not included in standard library of Python 3.12 and above it, which can be solved by installing `setuptools`)

Building the documentation additionally requires:

-   matplotlib
-   ipython
-   requests_cache
-   sphinx
-   pydata_sphinx_theme

Development and testing additionally requires:

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

### Install latest development version

``` shell
python -m pip install git+https://github.com/pydata/pandas-datareader.git
```

or

``` shell
git clone https://github.com/pydata/pandas-datareader.git
cd pandas-datareader
python -m pip install -e .
```

