FRB

Federal Reserve Economic Data (FRED)


Keywords
macroeconomics, microeconomics, finance, fred, alfred, api, federal, reserve, bank, economics, data, economic-data, economic-indicators, federal-reserve, fred-api
License
MIT
Install
pip install FRB==1.1.4

Documentation

Federal Reserve Economic Data (FRED) Client

Python client for interfacing with the Federal Reserve Bank's FRED API. Our goal is to provide a simple, well-documented solution for FRED-related programming in Python.

Features

This client was built to provide users with an intuitive and effective framework for making requests to the FRED API from within Python. As such, our main feature is the ability to interact with the FRED web-service.

Comprehensive query support

Request economic data from all 5 data groups available in FRED and ALFRED. For reference, the data groups are included below. See Federal Reserve Bank of St. Louis for additional documentation, or click on a specific query to go directly to documentation for that query.

Popular response transformations

Transform data from http responses to your preferred format, allowing you to focus more time on data integration and analysis and less on response processing. If you prefer raw responses from FRED, so that you can conduct your own response parsing, simply set response_type to xml or json (standard FRED responses). Otherwise, automatically transform data into comma, tab, or pipe separated values, python dictionaries, pandas dataframes, or numpy arrays.

For dictionary, dataframe, and array responses, an attempt is made to convert data to more useful dtypes. For example, realtime_start and realtime_end response data are automatically converted from a string to datetime64 numpy dtype. Similarly, counts and IDs (where appropriate) are converted to int while observation measures are converted to float.

Installation

Install via pip:

pip install FRB

Git clone from the command line:

git clone http://github.com/avelkoski/FRB.git

Download directly from Github.

Basic usage

from fred import Fred
fr = Fred(api_key='abcdefghijklmnopqrstuvwxyz123456',response_type='dict')

params = {
         'limit':2,
         'tag_names':'trade;goods'
         }

res = fr.category.series(125,params=params)

for record in res:
    print(record)

Read the Docs

For additional detail about this package, read our documentation .

License

The MIT License (MIT)

Copyright (c) 2016 Aleksandar Velkoski https://github.com/avelkoski

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Affiliation

The author is affiliated with the Data Science division of the National Association of REALTORS.