Skip to main content

Point-in-time SEC EDGAR financial data pipeline

Project description

pitedgar

CI PyPI version Python versions License: MIT

Point-in-time SEC EDGAR financial data pipeline.

Downloads SEC EDGAR companyfacts.zip, parses XBRL JSON facts into a local parquet file, and exposes a query API with zero look-ahead bias — every value is stamped with the filed date (when the data was actually available to the market), not the period-end date.


Installation

pip install pitedgar
# or with Poetry
poetry install

Quick start

from pathlib import Path
from pitedgar import PitEdgarConfig, build_cik_map, download_bulk, parse_all, PitQuery

config = PitEdgarConfig(
    edgar_identity="Mario Rossi mario@example.com",  # required by SEC
    data_dir=Path("./data"),
)

# Step 1 — one-shot ticker → CIK mapping
tickers = ["AAPL", "MSFT", "JPM", "GOOGL"]
cik_map = build_cik_map(tickers, config)

# Step 2 — download ~1.5 GB bulk ZIP (do this periodically, not every run)
download_bulk(config)

# Step 3 — parse JSON → parquet (sub-minute for 500 companies)
master = parse_all(config, cik_map)

# Step 4 — query
q = PitQuery(config.data_dir / "pit_financials.parquet")

# What revenue figure was available to the market on 2022-06-30?
result = q.as_of(["AAPL", "MSFT"], "us-gaap:Revenues", "2022-06-30")

# Full history
hist = q.history("AAPL", "us-gaap:NetIncomeLoss", freq="A")

# Portfolio cross-section signal
xs = q.cross_section("us-gaap:NetIncomeLoss", "2023-12-31")

CLI

# Resolve tickers (tickers.txt has one ticker per line)
pitedgar map --tickers tickers.txt --identity "Name name@email.com"

# Download bulk ZIP
pitedgar fetch --identity "Name name@email.com"

# Parse to parquet
pitedgar build --identity "Name name@email.com"

# Query a single value
pitedgar query --ticker AAPL --concept us-gaap:Revenues --as-of 2023-06-30

Key design decisions

Decision Rationale
filed as PIT timestamp The date the filing was submitted to SEC — this is when information became public
Deduplication keeps latest filed per (concept, end) Companies sometimes refile restated figures; keep the superseding value
Raw USD values, no scale conversion SEC reports values as-filed; downstream code applies any needed normalization
Local parquet, no runtime HTTP Queries run at DataFrame speed with no network dependency

Supported XBRL concepts (defaults)

See pitedgar.config.DEFAULT_CONCEPTS for the full list, which includes revenues, net income, assets, liabilities, equity, EPS, cash, debt, operating cash flow, capex, and R&D expense.


Examples

  • examples/fcf_sp500.py — S&P 500 free cash flow benchmark: fetches constituents, builds the parquet, and queries FCF cross-sections across 20 quarters. Useful as an end-to-end performance reference.

Contributing

Contributions are welcome. See CONTRIBUTING.md for setup instructions, coding conventions, and the PR process.


License

MIT

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

pitedgar-0.3.1.tar.gz (21.8 kB view details)

Uploaded Source

Built Distribution

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

pitedgar-0.3.1-py3-none-any.whl (24.8 kB view details)

Uploaded Python 3

File details

Details for the file pitedgar-0.3.1.tar.gz.

File metadata

  • Download URL: pitedgar-0.3.1.tar.gz
  • Upload date:
  • Size: 21.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.4 CPython/3.11.15 Linux/6.17.0-1010-azure

File hashes

Hashes for pitedgar-0.3.1.tar.gz
Algorithm Hash digest
SHA256 52cac63c554565df9170a0575d64ae2d7751abd07cf1617f7acd84dab491d33c
MD5 26711896bb8cabc225e1a02c64b13010
BLAKE2b-256 90fc7b093f313e7a56757e965f0f4101a89ec8271ae40fae1d0e19df23ad877c

See more details on using hashes here.

File details

Details for the file pitedgar-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: pitedgar-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 24.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.4 CPython/3.11.15 Linux/6.17.0-1010-azure

File hashes

Hashes for pitedgar-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 78b27c11b450e9f86e941213ba2a6d42a7cf405795487e586f5e83a3b37b90ea
MD5 103b78bee7ad4499bfd32d61e4e0a1ae
BLAKE2b-256 9d4c8f5ff9a98de8b07cb447f7c88f1fcd6e783b8f9b4513e5018b3c490f8b91

See more details on using hashes here.

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