fomc_statement()

About

FedPy.Publications().fomc_statement(dates)
1

Returns a DataFrame of FOMC Statement's

Parameters:

  • dates: string for single date, list of strings for multiple dates, or None for all dates.
    • date format:
      • YYYY-MM-DD : the FOMC Statement for YYYY-MM-DD.
      • "current" : the most recent FOMC Statement.
      • "previous" : the previous FOMC Statement.
      • None : All FOMC Statement's.

Example use

import FedPy

publications = FedPy.Publications()
current_statement = publications.fomc_statement("current")
print(current_statement)
1
2
3
4
5

Output:

date        statement
2021-11-03  The Federal Reserve is committed to using its ...
1
2