CoolFace
Datasetpublic

sfd-anonymous/sec-parser

SEC Filings Dataset Parser This repository contains the core parser used to convert SEC EDGAR filings into layout-faithful Markdown-style text for downstream dataset construction and evaluation. Contents sec_parser/sec_parser.py: main parser implementation sec_parser/special_chars.py: special-character normalization tables sec_parser/hardcodes.py: filing cleanup hardcodes sec_parser/config.py: parser configuration pdf_table_fastpath.py, table_ocr_backends.py… See the full description on the dataset page: https://huggingface.co/datasets/sfd-anonymous/sec-parser.

sourceHugging Faceapache-2.0updated 5mo agoView on Hugging Face
0likes89downloads
Dockerfile.linux8 linesDownload Raw Back to root
1FROM python:3.12.12-bookworm2ENV DEBIAN_FRONTEND=noninteractive3WORKDIR /app4RUN apt-get update && apt-get install -y wkhtmltopdf && rm -rf /var/lib/apt/lists/*5COPY requirements.txt .6RUN pip install --no-cache-dir -r requirements.txt7RUN playwright install chromium --with-deps8