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
- Host: GitHub
- URL: https://github.com/antonio-hickey/fedpy
- Owner: antonio-hickey
- License: mit
- Created: 2021-06-17T00:42:58.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2025-01-26T03:00:32.000Z (4 months ago)
- Last Synced: 2025-01-26T03:26:53.661Z (4 months ago)
- Topics: economics, fed, federal-reserve, python
- Language: Python
- Homepage: https://antonio-hickey.github.io/FedPy.Docs/
- Size: 324 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.txt
- License: LICENSE.txt
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()