--- license: cc0-1.0 language: - en pretty_name: SEC EDGAR Fundamentals (PIT) tags: - point-in-time - pit - ziplime - backtesting - fundamentals - sec-edgar - us_equities task_categories: - time-series-forecasting size_categories: - 10K`) pins the table for reproducibility; it composes with the knowledge filter rather than replacing it. ## Updates `recipe.py` implements `fetch(since) -> pl.DataFrame` against SEC company facts; `ingest.py` dedups and **appends** to the Delta bundle (never rewrites). The scheduled job in `.github/workflows/update.yml` runs it daily. ## What's in this repo ``` README.md # this card manifest.json # PIT manifest (schema, source, coverage) recipe.py # fetch(since) -> PIT rows from SEC company facts ingest.py # dedup + append-only Delta writer .github/workflows/update.yml # scheduled ingestion data/ # ziplime Delta bundle + registry manifest bundle_registry/sec_fundamentals_pit_1784818614.json data_bundle/sec_fundamentals_pit/1784818614/data.delta/ (partitioned by knowledge_year) ``` To load with ziplime, drop `data/bundle_registry/*` and `data/data_bundle/*` into your `~/.ziplime/data/` and read via `context.pit("sec-fundamentals-pit")`; or point `pl.scan_delta` straight at the Delta table as shown above. ## Provenance & license Built from SEC EDGAR XBRL **company facts** (public domain, US Government work) via the `dartlab-data` mirror, repackaged into the ziplime PIT schema. Filing dates (`filed`) are used verbatim as `knowledge_date`; fact periods are classified from each fact's own reporting window. No values are imputed.