-
-
Notifications
You must be signed in to change notification settings - Fork 106
Navigating
Dwight Gunning edited this page Aug 6, 2024
·
2 revisions
There are a lot of convenience functions to help you navigate filings and other SEC data.
The get_filings
function returns a Filings object that contains all the filings available in the dataset. This object can be used to filter filings by date, company, and form type.
filings = get_filings()
filings
Filings
as well as all other objects that contain a list of things are self-playing, which means they will show the data they contain as table.
Then you can select a single item by index
Select a filing by index
filings[0]
You can iterate over the filings object to get each filing
for filing in filings:
print(filing)
If you select a lot of filings, you can page through them using the next
and previous
methods
filings.next()
filings.previous()