Open source python library for quickly and seamlessly pulling data related to the Federal Reserve.
Install using pip:
pip install FedPy
Check out the Documentation 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.
-
import FedPy t_bill_holdings = FedPy.SOMA().holdings("bills")
-
-
Pull Temporary Open Market Operations (TOMO) conducted by the Federal Reserve.
-
import FedPy repo_ops = FedPy.TOMO().repo() rev_repo_ops = FedPy.TOMO().reverse_repo()
-