An open API service indexing awesome lists of open source software.

https://github.com/antonio-hickey/fedpy

Python library for all things Federal Reserve related
https://github.com/antonio-hickey/fedpy

economics fed federal-reserve python

Last synced: 29 days ago
JSON representation

Python library for all things Federal Reserve related

Awesome Lists containing this project

README

        

# FedPy
### _Everything Federal Reserve Related_

Open source python library for quickly and seamlessly pulling data related to the Federal Reserve.

## Installation:
Install using pip:

```sh
pip install FedPy
```

## Basic Example Usage:

Check out the [Documentation](https://antonio-hickey.github.io/FedPy.Docs/) for more in depth usage!

- Pull all the U.S Treasury Bills currently held in the Federal Reserve's System Open Market Account (SOMA) portfolio.
- ```python
import FedPy

t_bill_holdings = FedPy.SOMA().holdings("bills")

- Pull Temporary Open Market Operations (TOMO) conducted by the Federal Reserve.

- ```python
import FedPy

repo_ops = FedPy.TOMO().repo()
rev_repo_ops = FedPy.TOMO().reverse_repo()