fredapi
fredapi copied to clipboard
Python API for FRED (Federal Reserve Economic Data) and ALFRED (Archival FRED)
Using clean Anaconda install with JupyterLab notebook in a dedicated virtual environment: from fredapi import Fred fred = Fred(api_key='#####') data = fred.get_series('SP500') AttributeError Traceback (most recent call last) Cell In[7],...
Hi, I have been trying to fetch series using `fred.get_series(code, observation_start=(from_date), observation_end=(to_today), units=units_used, frequency=frequency_used)`. The series are in a dictionary and I'm using the aforementioned bit in a loop, then...
Api worked always fine but now gives error Urlopen error SSL: CERTIFICATE_VERIFY_FAILED certificate verify failed: certificate has expired (_ssl.c:1129) I could not find a way to correct this error
Hi - I am getting the error below when trying to run a simple data pull using fredapi Anybody out there kind enough to help identify the issue? Thanks! **CODE**...
``` ========================================================================================== test session starts ========================================================================================== platform freebsd13 -- Python 3.9.16, pytest-7.2.0, pluggy-1.0.0 -- /usr/local/bin/python3.9 cachedir: .pytest_cache hypothesis profile 'default' -> database=DirectoryBasedExampleDatabase('/usr/ports/finance/py-fredapi/work-py39/fredapi-0.5.0/.hypothesis/examples') Using --randomly-seed=3873099282 rootdir: /usr/ports/finance/py-fredapi/work-py39/fredapi-0.5.0 plugins: forked-1.4.0, hypothesis-6.56.2, cov-2.9.0,...
Hello, I am wondering if it is possible to query the fredapi for the suggested citation of a certain variable? For example, for the FRED identifier PSAVERT, the browser URL...
As discussed in https://github.com/mortada/fredapi/pull/65#discussion_r1565358161
When i download the Fed Funds Rate, Range, Low (FEDTARRL) using `fred.get_series_all_releases('FEDTARRL')` , few of the data points are missing as an example for 12/13/2023 and 3/20/2024 - 2026 rate...
# Include Docker image devshell in project I created a [docker fredapi image](https://hub.docker.com/repository/docker/erezbinyamin/fredapi/general) for my own use, but if you'd like to incorporate the Dockerfile into this project please feel...
In order to avoid the exception, something like below must be implemented Line 98 in fred.py should be corrected like this # info = pd.Series(root.getchildren()[0].attrib) info = pd.Series(root.findall('.//series')[0].attrib) the same...