Python API for Federal Reserve Economic Data (FRED) from St. Louis Fed
Project description
fredapi is a Python API for the FRED data provided by the Federal Reserve Bank of St. Louis. fredapi provides a wrapper in python to the FRED web service, and also provides several conveninent methods for parsing and analyzing point-in-time data (i.e. historic data revisions) from ALFRED
fredapi makes use of pandas and returns data to you in a pandas Series or DataFrame
Installation
pip install fredapi
Basic Usage
First you need an API key, you can apply for one for free on the FRED website. Once you have your API key, you can set it in one of three ways:
set it to the evironment variable FRED_API_KEY
save it to a file and use the ‘api_key_file’ parameter
pass it directly as the ‘api_key’ parameter
from fredapi import Fred
fred = Fred(api_key='insert api key here')
data = fred.get_series('SP500')
Working with data revisions
Many economic data series contain frequent revisions. fredapi provides several convenient methods for handling data revisions and answering the quesion of what-data-was-known-when.
In ALFRED there is the concept of a vintage date. Basically every observation can have three dates associated with it: date, realtime_start and realtime_end.
date: the date the value is for
realtime_start: the first date the value is valid
realitime_end: the last date the value is valid
For instance, there has been three observations (data points) for the GDP of 2014 Q1:
<observation realtime_start="2014-04-30" realtime_end="2014-05-28" date="2014-01-01" value="17149.6"/>
<observation realtime_start="2014-05-29" realtime_end="2014-06-24" date="2014-01-01" value="17101.3"/>
<observation realtime_start="2014-06-25" realtime_end="2014-07-29" date="2014-01-01" value="17016.0"/>
This means the GDP value for Q1 2014 has been released three times. First release was on 4/30/2014 for a value of 17149.6, and then there have been two revisions on 5/29/2014 and 6/25/2014 for revised values of 17101.3 and 17016.0, respectively.
Get first data release only (i.e. ignore revisions)
data = fred.get_series_first_release('GDP')
Get latest data
Note that this is the same as simply calling get_series()
data = fred.get_series_latest_release('GDP')
Get latest data known on a given date
fred.get_series_as_of_date('GDP', '6/1/2014')
Get all data release dates
This returns a DataFrame with all the data from ALFRED
df = fred.get_series_all_releases('GDP')
df.tail()
Get all vintage dates
vintage_dates = fred.get_series_vintage_dates('GDP')
Search for data series
You can always search for data series on the FRED website. But sometimes it can be more convenient to search programmatically. fredapi provides a search() method that does a fulltext search and returns a DataFrame of results.
fred.search('potential gdp')
You can also search by release id and category id with various options
df1 = fred.search_by_release(11)
df2 = fred.search_by_category(101, limit=10, order_by='popularity', sort_order='desc')
Dependencies
More Examples
I have a blog post with more examples written in an IPython notebook
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file fredapi-0.5.2.tar.gz
.
File metadata
- Download URL: fredapi-0.5.2.tar.gz
- Upload date:
- Size: 14.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/6.0.0 pkginfo/1.9.6 requests/2.31.0 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 405ca048abed4207d93dbc9b7ee8c46d6b473483650323e2f1c094af83d4b247 |
|
MD5 | 19446db22701120efdf75f025176eb15 |
|
BLAKE2b-256 | 6f3ce9281ecda4c6ee5c7d50a4bcf00dc5df1a7ff325e604c9b9510c5bdd8514 |
File details
Details for the file fredapi-0.5.2-py3-none-any.whl
.
File metadata
- Download URL: fredapi-0.5.2-py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/6.0.0 pkginfo/1.9.6 requests/2.31.0 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 961817ec8d70e58886ff7302d3dda908614ad99f77831a59833c4fc3f6150155 |
|
MD5 | 813f16bdab375eaa02e83647fbda63dd |
|
BLAKE2b-256 | 73641db43417cf7ed430f104a347126b5260a1724ee9a1b7d0b1622262c9c4df |