pandas-datareader icon indicating copy to clipboard operation
pandas-datareader copied to clipboard

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

Results 141 pandas-datareader issues
Sort by recently updated
recently updated
newest added

You should set the long description content type to `text/markdown` because the current markdown is not being rendered properly on pypi. Minor thing, but thought I'd mention it. ![image](https://github.com/pydata/pandas-datareader/assets/82475207/9652528e-0f0d-4cf7-8977-e6d4571f0d50)

``` import pandas_datareader as pdr df = pdr.get_data_moex('SBER', start='2024-05-26') df.head() ``` AttributeError Traceback (most recent call last) ~\AppData\Local\Temp\ipykernel_18664\2461240623.py in ?() 1 import pandas_datareader as pdr 2 import pandas_montecarlo 3 ---->...

- [x] closes #995 Used beautiful soup to extract stock data from html table present inside yahoo finance web page. Earlier the data was being extracted using regex pattern which...

Run the following code to reproduce the issue: ```python import pandas_datareader as web web.DataReader("AAPL", "yahoo", "1/1/2018", "1/1/2019") ``` You will get the following exception: ``` Traceback (most recent call last):...

I've already installed the pandas-datareader on my pycharm however whenever i try to import it i get the following error ModuleNotFoundError: No module named 'distutils'. I also couldn't find this...

addresses issue when data are not found in requested page, to reproduce: ```py import pandas_datareader.data as web # Fetch stock data using pandas_datareader def fetch_stock_data(symbol='AAPL', start_date='2020-01-01', end_date='2021-01-01'): df = web.DataReader(symbol,...

## Issue I just followed [the documentation](https://pandas-datareader.readthedocs.io/en/latest/remote_data.html#oecd). But it does not work. ```python import pandas_datareader.data as web import datetime df = web.DataReader('TUD', 'oecd') print(df.columns) df[['Japan', 'United States']] ``` ## Result...

- [✅] closes #xxxx - [✅] tests added / passed - [✅] passes `git diff upstream/master -u -- "*.py" | flake8 --diff` - [✅] passes `black --check pandas_datareader` - [✅]...

STORY: Users can retrieve IMF datasets with pandas-datareader - https://betadata.imf.org/ - https://betadata.imf.org/en/Resource-Pages/IMF-API - "Access to IMF Data SDMX API in Python" https://datasupport.imf.org/knowledge?id=knowledge_category&sys_kb_id=b849dc6b47294ad8805d07c4f16d4311&category_id=9959b2bc1b6391903dba646fbd4bcb6a - pySDMX Workaround: - Access the API with...