Skip to content
Discussion options

You must be logged in to vote

The get_filings function uses the main filing indexes which only contain form, filing_date, company, cik, and accession_no for the filing.

The company filings data contains the reportDate so if you want to get the report date for filing for a give company first get the company then use that data.

c = Company(895421)
df = c.filings.to_pandas().query("reportDate !=''")
df

I'm assuming that by 'at scale' you need a performant way to get thousands of filings with report date. It might be faster to go through the companies especially if you use local storage and download company data.

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@gweifu
Comment options

Answer selected by gweifu
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants