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

As per title, return empty DF if trying to access the missing field "Date".

There was a big change in the TSP website for tracking, accessing and contribute. >>> import pandas_datareader.tsp as tsp >>> tspreader = tsp.TSPReader(start='2022-06-01', end='2022-06-02') >>> tspreader.read() Traceback (most recent call...

All monthly US files containing the Operating Profitability factor, e.g. 25_Portfolios_BEME_OP_5x5, could noit be imported since the files contain a single quotation mark " ' ". (see line 16 [...]...

I'm using pandas-datareader package to query data from the FRED's database and would like to know whether there is an opportunity to set the units and frequency while querying the...

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

This change allows the `pandas_datareader` library to read Windows text files with smart quotes and apostrophes and still convert all other characters to UTF-8, where needed. - [ ] closes...

Fixes problems in: - FamaFrenchReader with encoding in one file - YahooDailyReader will now return a a DataFrame of nans when a single symbol has no data - [x] closes...

This is a minor point, but it looks like the `chunksize` parameter used by the Yahoo reader doesn't force a pause anywhere. Looking at [its use](https://github.com/pydata/pandas-datareader/blob/ab26ad2099d6a7bc79447e71d72cdb93d8299b3c/pandas_datareader/base.py#L265) in the base class,...

Update black Fix nested exceptions - [ ] closes #xxxx - [ ] tests added / passed - [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`...

File ~/jupyter_dir/lib/python3.9/site-packages/pandas/core/indexes/base.py:3623, in Index.get_loc(self, key, method, tolerance) 3621 return self._engine.get_loc(casted_key) 3622 except KeyError as err: -> 3623 raise KeyError(key) from err 3624 except TypeError: 3625 # If we have a...