Skip to main content

A tool that replicates the quarterly Financial Statement Datasets from the SEC (https://www.sec.gov/dera/data/financial-statement-data-sets), but on a daily basis.

Project description

SEC Financial Statement Data Set Daily Processing

PyPI version License

Purpose

The secdaily package replicates the quarterly Financial Statement Datasets from the SEC, but on a daily basis. While the SEC only provides these datasets once per quarter, this tool allows you to:

  • Add daily updates by processing new 10-K and 10-Q filings as they become available
  • Generate daily zip files in the same format as the official quarterly datasets

This enables financial analysts, researchers, and developers to access structured financial statement data without waiting for the quarterly releases.

Installation

The package requires Python 3.10 or higher. Install using pip:

pip install secdaily

Usage

The main entry point is the SecDailyOrchestrator class. Here's a basic example:

from secdaily.SecDaily import SecDailyOrchestrator, Configuration

# create the configuration
configuration = Configuration(workdir=workdir_default)


# Initialize the orchestrator
orchestrator = SecDailyOrchestrator(configuration=configuration)

# Run the full process
orchestrator.process(
    start_year=2025,  # Optional: specify starting year (defaults to current year)
    start_qrtr=1      # Optional: specify starting quarter (defaults to current quarter)
)

Configuration Parameters

The configuration class provides the following parameters:

  • user_agent_def: User agent string for SEC.gov requests. If not provided, a default string will be generated. Must follow the format specified in SEC's EDGAR access requirements: "Company Name contact@company.com"
  • workdir: Working directory for storing all data. Defaults to current directory.
  • xmldir: Directory for storing XML files. If not provided, defaults to '_1_xml/' under workdir.
  • csvdir: Directory for storing CSV files. If not provided, defaults to '_2_csv/' under workdir.
  • formatdir: Directory for storing SEC-style formatted files. If not provided, defaults to '_3_secstyle/' under workdir.
  • dailyzipdir: Directory for storing daily zip files. If not provided, defaults to '_4_daily/' under workdir.
  • quarterzipdir: Directory for storing quarterly zip files. If not provided, defaults to '_5_quarter/' under workdir.
  • clean_intermediate_files: Flag to clean up intermediate files during housekeeping. Defaults to False.
  • clean_db_entries: Flag to clean up database entries during housekeeping. Defaults to False.
  • clean_daily_zip_files: Flag to clean up daily zip files during housekeeping. Defaults to False.
  • clean_quarter_zip_files: Flag to clean up quarterly zip files during housekeeping. Defaults to False.

How to use it

Normally, you will use the "orginial" quarterly files from the SEC Financial Statement Datasets as a starting point. Therefore, you will set the "start_year" and "start_qrtr" parameters to the quarter of the first quarter that is missing at SEC. For example, if quarterly up to 2024Q4 are available on the SEC site, you will set the "start_year" to 2025 and the "start_qrtr" to 1 in order to download and process the daily available xml files and transform them into the same format as the SEC quarterly files.

The quarterly zip file from the sec is usually available two to three weeks after the quarter end.

As soon as a new quarter zip file on SEC is available, you can then adjust the startyear and startqrtr parameters to the next quarter. Dpending on the configuration, intermediate files, database entries, and zip files can be cleaned up.

Since reports are filed daily on the SEC, you will run the process daily to be always up-to-date with the latest available reports.

High-level Process Description

  1. Index Processing: Parse SEC's index.json to identify new filings
  2. XML Processing: Download and extract necessary XML files
  3. Data Parsing: Process the XML files into CSV format (creating initial versions of num.txt, pre.txt, lab.txt)
  4. SEC-style Formatting: Format the data to match the official SEC dataset structure
  5. Daily Zip Creation: Package the formatted data into daily zip files
  6. Quarterly Zip Creation: Package the daily zip files into quarterly zip files
  7. Housekeeping: Clean up intermediate files, database entries, and zip files based on the provided configuration

Individual Process Steps

You can also run individual parts of the process:

# Only process index data
orchestrator.process_index_data()

# Only process XML data
orchestrator.process_xml_data()

# Only create SEC-style formatted files
orchestrator.create_sec_style()

# Only create daily zip files
orchestrator.create_daily_zip()

# Only create quarter zip files
orchestrator.create_quarter_zip()

# Only perform housekeeping
# housekeeps everything before the start quarter
orchestrator.housekeeping(start_qrtr_info=QuarterInfo(year=2025, qrtr=1))

Directory Structure of the Created Data

The tool creates the following directory structure in your specified workdir:

workdir/
├── sec_processing.db          # SQLite database for tracking processing
├── _1_xml/                    # Downloaded XML files
│   ├── 2024q4/  
│   │   ├── 2024-10-01/
│   │   │   ├── xyz_htm.xml.zip
│   │   │   ├── xyz_pre.xml.zip
│   │   │   ├── xyz_lab.xml.zip
│   │   │   └── ...
│   │   └── ...
│   └── ...                    
├── _2_csv/                    # Parsed CSV files
│   ├── 2024q4/  
│   │   ├── 2024-10-01/
│   │   │   ├── xyz_num.csv.zip
│   │   │   ├── xyz_pre.csv.zip
│   │   │   ├── xyz_lab.csv.zip
│   │   │   └── ...
│   │   └── ...
│   └── ...                    
├── _3_secstyle/               # SEC-style formatted files
│   ├── 2024q4/  
│   │   ├── 2024-10-01/
│   │   │   ├── xyz_num.csv.zip
│   │   │   ├── xyz_pre.csv.zip
│   │   │   └── ...
│   │   └── ...
│   └── ...                    
├── _4_daily/                  # Daily zip files
│   ├── 2024q4/                
│   │   ├── 20241001.zip       
│   │   ├── 20241002.zip
│   │   └── ...
│   └── ...
└── _5_quarter/                # Quarterly zip files
    ├── 2024q4.zip
    ├── 2025q1.zip
    └── ...

Each daily and quarterly zip file contains:

  • sub.txt - Submission information
  • pre.txt - Presentation information
  • num.txt - Numeric data

Limitations

  • num.txt doesn't contain content for the segments column
  • XBRL data embedded in HTML files (approximately 20% of reports) is not processed yet
  • Numbering of columns "report" and "line" in pre.txt may not be the same as in the quarterly files, but the order should be the same
  • The tool throttles requests to SEC.gov to comply with their limit of 10 requests per second
  • sub.txt only contains a subset of the information available in the quarterly files from sec.gov

Robustness Features

  • Implements retry mechanisms for failed downloads
  • Uses a SQLite database to track processing state, allowing for safe restarts
  • Throttles requests to comply with SEC.gov's rate limits
  • Stores downloaded and created files in a compressed format to conserve disk space
  • Uses parallel processing where appropriate for improved performance

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

SEC Financial Statement Data Sets Tools (secfsdstools)

Also check out the SEC Financial Statement Data Sets Tools project.

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

secdaily-0.2.2.tar.gz (2.0 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

secdaily-0.2.2-py3-none-any.whl (2.2 MB view details)

Uploaded Python 3

File details

Details for the file secdaily-0.2.2.tar.gz.

File metadata

  • Download URL: secdaily-0.2.2.tar.gz
  • Upload date:
  • Size: 2.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for secdaily-0.2.2.tar.gz
Algorithm Hash digest
SHA256 d9856c91da928ebf3657dec1dc29d80e13d484ec5435660c5558d98b9ed6a6dc
MD5 90fd02f48e70f1710cdf888d06f13135
BLAKE2b-256 0dad80637f85fe3f918913e9b2538f3df4fe2a303277ea804ce3fb62178574e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for secdaily-0.2.2.tar.gz:

Publisher: python-release.yml on HansjoergW/sec-financial-statement-data-set-daily-processing

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file secdaily-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: secdaily-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for secdaily-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d94d9e8a2dde6e685ace766eaad615e976587d32f6ab4cd199ebad0f223294b8
MD5 6a4fec6cafacdec5b90b9944788a5034
BLAKE2b-256 510254137fd4c2e3993aa03b31d81163f4557d0572dc238b330c75235ce227bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for secdaily-0.2.2-py3-none-any.whl:

Publisher: python-release.yml on HansjoergW/sec-financial-statement-data-set-daily-processing

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page