Skip to content

Navigating

Dwight Gunning edited this page Aug 6, 2024 · 2 revisions

Navigating

There are a lot of convenience functions to help you navigate filings and other SEC data.

Getting Filings

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

Selecting a filing

Select a filing by index

filings[0]

Iterating over filings

You can iterate over the filings object to get each filing

for filing in filings:
    print(filing)

Paging through filings

If you select a lot of filings, you can page through them using the next and previous methods

filings.next()
filings.previous()
Clone this wiki locally