Welcome to EDGAR-DOC-PARSER’s documentation!

About

A package for downloading, extracting, parsing, and processing data from SEC-EDGAR, a public online database of all documents filed with the USA’s Securities and Exchange Commission.

Core Functionality

Dataloader for clean text from SEC forms

from edgar import DataLoader

dataloader = DataLoader(tikrs=['nflx'], document_type='8-K',
                        data_dir='data')

for text in dataloader:
    # Do Stuff
    pass

Downloading and extracting archives of supported submissions from the SEC API.

from edgar import load_files

data_dir = 'data'
tikr = 'nflx'
tikrs = [tikrs]

load_files(tikrs=tikrs, data_dir=data_dir, document_type='10-Q')

Indices and tables