You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems a stock's SEC filings can be retrieved through the secFilingsmodule:
filings = quote._fetch( # pylint: disable=W0212
quote.proxy, modules=["secFilings"]
)
if filings is not None:
filings = filings["quoteSummary"]["result"][0]["secFilings"]["filings"]
for filing in filings:
url = filing["edgarUrl"]
type_ = filing["type"]
title = filing["title"]
timestamp = filing["epochDate"]
date = datetime.datetime.fromtimestamp(timestamp, tz=datetime.UTC)
symbols = filing.get("relatedTickers")
# Do something with the filing...
Would it be possible to include this as a new feature within yfinance?
The text was updated successfully, but these errors were encountered:
ValueRaider
changed the title
Support for SEC filings module
Request: Support for SEC filings module
Aug 2, 2024
Originally posted by @dmoklaf in #2004
It seems a stock's SEC filings can be retrieved through the
secFilings
module:Would it be possible to include this as a new feature within
yfinance
?The text was updated successfully, but these errors were encountered: