Skip to content

antonio-hickey/FedPy

Repository files navigation

FedPy

Everything Federal Reserve Related

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

Installation:

Install using pip:

pip install FedPy

Basic Example Usage:

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()