Skip to main content

⚡ LightningParse

Fast, accurate PDF parsing for RAG pipelines — a Rust extraction core (via PyO3) feeding a Python chunking/embedding/retrieval pipeline.

Status: core pipeline complete — Rust extraction, cleanup, OCR fallback, chunking, retrieval, and generation are all implemented and benchmarked end-to-end. See PHASES.md for what's built and BENCHMARKS.md for full results.

What's New in v0.2.0

  • Structured table extraction: tables with detected captions are now parsed into structured row/column data instead of flat text, with markdown-formatted output in RAG chunks
  • CID/Type0 composite font support: proper /W and /DW array parsing for embedded CJK and other composite fonts (previously fell back to a fixed 0.5em width)
  • New robustness fixtures: added synthetic distorted-scan and Word-export test cases to broaden Tier 2/Tier 1 coverage
  • Fixed: a performance regression introduced during table-detection development (O(N²)O(N))
  • Fixed: a false-positive table detection issue that was incorrectly merging multi-author affiliation blocks

Why

Traditional Python PDF libraries (PyPDF2, pdfplumber, PyMuPDF) are GIL-bound and process pages sequentially, which becomes a bottleneck in RAG ingestion pipelines. LightningParse pushes extraction, header/footer cleanup, and OCR fallback into Rust, parallelized across pages, and returns structured JSON that Python can chunk with page/section metadata intact.

Architecture

React → FastAPI → Rust PDF Parser (PyO3) → Chunker → FAISS/Chroma → LLM

Two processing tiers:

  • Tier 1 — Digital-native PDFs: direct text extraction, no OCR. This is where the speed claim is benchmarked.
  • Tier 2 — Scanned/image PDFs: routed per-page to OCR (Tesseract) when no text layer is present.

Full design details: ARCHITECTURE.md Product scope and roadmap: PRD.md Contributor/agent instructions: AGENTS.md

Benchmarks

LightningParse is 6.0×–93.1× faster than pypdf/pdfplumber on digital-native (Tier 1) PDFs, with the gap widening on longer documents. Some representative results:

Document Pages LightningParse (median) pypdf pdfplumber
Multi-page IEEE paper (ieee_template_placeholder.pdf) 8 0.61 ms 7.89 ms (12.9× slower) 56.82 ms (93.1× slower)
Two-column academic paper (arxiv_twocolumn.pdf) 15 41.12 ms 951.92 ms (23.1× slower) 2579.90 ms (62.7× slower)
Single-page resume (Shivam_FullStack.pdf) 1 6.82 ms 82.14 ms (12.0× slower) 208.42 ms (30.6× slower)

OCR (Tier 2) and mixed-document handling are also supported, benchmarked separately from Tier 1 — pypdf and pdfplumber can't perform OCR, so comparing their near-instant-but-empty results against LightningParse's actual OCR time would be misleading rather than informative. See BENCHMARKS.md for those numbers on their own terms.

A concurrent-load test also confirms the Rust FFI genuinely releases Python's GIL during parsing: 10 concurrent OCR-heavy parse requests complete 4.78× faster than running them sequentially, on an 8-core/16-thread machine.

Full methodology, per-document results, and reproduction steps: benchmarks/BENCHMARKS.md. Run them yourself:

cd benchmarks
python benchmark.py --tier all

Results are published in benchmarks/BENCHMARKS.md — generated, not hand-written.

Known Limitations

  • CID/Type0 composite fonts: glyph width lookup currently only reads /Widths (simple fonts); CID fonts fall back to a standard 0.5 em width, verified safe (no crash) but not pixel-precise for bbox positioning. See ARCHITECTURE.md decision log.
  • OCR noise: Tesseract confidence-based filtering removes most scan artifacts (binder shadows, margin smudges) but some low-level noise can still pass through on real-world scans. OCR output is not expected to be flawless — see PRD.md non-goals.
  • Tier 2/Mixed fixture coverage: currently validated against a small number of real scanned/mixed fixtures rather than a broad corpus. On the synthetic phone_photo_invoice.pdf fixture specifically, heavy combined distortion (rotation + noise + lighting gradient + blur) caused the OCR confidence filter to discard all real content along with the noise — 0 of 7 real lines recovered. This demonstrates the system fails safely (no crash, no hallucinated garbage) under severe distortion, but does not currently recover text from heavily degraded scans. Real-world phone photos are often less distorted than this synthetic worst-case, but this is a genuine, unresolved limitation, not just a synthetic-vs-real fidelity gap. Speedup claims for Tier 1 are well-validated across multiple document types; Tier 2 performance numbers should be read as representative of the current fixtures, not a broad guarantee.
  • Tables and complex layouts: table extraction is flattened to text, not structured (rows/columns), in v1. Full table structure extraction is out of scope for now — see PRD.md.
  • Encrypted/form PDFs: not explicitly supported in v1.

Install

# Rust core (requires maturin)
cd lightningparse-core
maturin develop --release

# Python API
cd lightningparse-api
pip install -e .

Quickstart

from lightningparse import parse_pdf

result = parse_pdf("document.pdf")
for page in result["pages"]:
    for block in page["blocks"]:
        print(block["section_id"], block["text"][:80])

Scope (v1)

In scope: digital-native PDF extraction, header/footer/footnote removal, OCR fallback for scanned pages, metadata-aware chunking, retrieval + LLM Q&A pipeline with citations.

Not in scope yet: structured table extraction, encrypted/form PDFs, ML-based layout detection. See PRD.md §2 for the full non-goals list — these are deliberate cuts, not oversights.

Contributing

See AGENTS.md for repo conventions, build commands, and non-negotiable rules (FFI safety, GIL handling, benchmark discipline) before opening a PR.

License

MIT License.

Download files

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

Source Distribution

lightningparse-0.4.0.tar.gz (1.0 MB view details)

Uploaded Source

Built Distributions

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

lightningparse-0.4.0-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

lightningparse-0.4.0-cp314-cp314-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lightningparse-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

lightningparse-0.4.0-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

lightningparse-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lightningparse-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lightningparse-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lightningparse-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lightningparse-0.4.0-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

lightningparse-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lightningparse-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lightningparse-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lightningparse-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lightningparse-0.4.0-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

lightningparse-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lightningparse-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lightningparse-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lightningparse-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

lightningparse-0.4.0-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

lightningparse-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lightningparse-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lightningparse-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

lightningparse-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

lightningparse-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

lightningparse-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

lightningparse-0.4.0-cp38-cp38-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

lightningparse-0.4.0-cp38-cp38-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file lightningparse-0.4.0.tar.gz.

File metadata

  • Download URL: lightningparse-0.4.0.tar.gz
  • Upload date:
  • Size: 1.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for lightningparse-0.4.0.tar.gz
Algorithm Hash digest
SHA256 1b39aff3360e6fbb13ec2ef5bb21e3efdb51851e153eb757be307815525c26c1
MD5 7fa356b9630bd46b8a55a3a6c414e58b
BLAKE2b-256 9362673f772a13882af44aef595e912d1572e36ae8713c51d0fdb8f2c82126cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0.tar.gz:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 59c2c7e60e129e4e1011fb8f8c31dd97b0ac02e300afd91ddc9cdbd4195c30d1
MD5 02f7732fafe109cd18b888af4cc14539
BLAKE2b-256 65f001d267fef72f3887ee6c3d9e2911d355d31de0601c2db10b70ed75a3329d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e62d9d8746fe8f7c1a4a2946b8c7f01639b4cd04dd632d7c4a4fa4380c77d7d
MD5 a9e5860682589d58f16dbd590d7e1f4e
BLAKE2b-256 7e6d8963ee8f7f0a1cff7d512a8435ccf5978242a5a363e25ad4ee98a2e92a7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06f54b05b63fe6229d26ad2f56757aa392ac659376eff8287fbd4bf276c6852a
MD5 20beb3991d201ed202b2349e0d30af44
BLAKE2b-256 7f46a3c40e3eb573e112962343c991841be882bf4bef3a76b9d54209e1195ec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cb6662ad3e2774da6c5d30901d162f07fd1809535c770ce7a62f45178059262b
MD5 2a04937112d77d54bc3cf21d71a80323
BLAKE2b-256 d5ca212a34ebe50ec9f4beb21747c73b4964ae4df5780edd5564d936bcc63b57

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de4e83f2ac6e092f6e710d4f20eabf4c4ecd89a0c3dcd48a96381bd3cc9deac1
MD5 125a999e7b4c5843189bf506d48dc1a1
BLAKE2b-256 65a2490d414c690fd9ad0dda176618af834494b485630df4be579724dfce1888

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0065a0c318952ac5c64b11c5cf5e1ef7ac2b739a989315050874ad37899bbe3
MD5 3d227a8af4fccd90b5e2b0d0901a4822
BLAKE2b-256 e99a4d28b100171a8d6bf2f38c81cb7f70f7cd9785eb5daca049ac78c80550ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6f7308660b2db3f9e87e67b2197a74aa51deac0061ef93f08baa78941e8fab4
MD5 1258ee0ddd8bd1a3eefe9178351aa265
BLAKE2b-256 fbe685cb3563515dc1c8416744e0a4cfc841c435b9eac9ee811a603450f06ce5

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c78e56b2ca394c3bd60d525cde265cbbecf6acb55e7853a71447c98a33021178
MD5 b23e5ffac56d27226c70c59a773ef51a
BLAKE2b-256 60c21ccdb0b9fd9b907b1f295d8c04dfec1d101b8676768e1a90dc32400ee318

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 780b63b7c5def4e6d1f66ebb0dc89626b5b558c713e2eb649d12b2753eb6e9ef
MD5 faa4b5d613135fbbf03bbfc4fc3396f0
BLAKE2b-256 4c59dec209d056ea30cff346893384e5304dd4ee6423f2bf76b6794d942890d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62fa8cb4143d930bce0e7ace785f1f5a51970ef7ba96272f347aeb5ed546e833
MD5 830a9fb42e5f922cc34f7f2685e459b9
BLAKE2b-256 d80f3e94e4f1a9fad44d4abc58c0bbd85abec7bf6744637fb1e513d8bf37bba9

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6f17b43d2d67168e133a7ea76e541e83af3d0c6b12794e91275a008efaf5300
MD5 001214dbe80c00667cbe006fcdf6afe2
BLAKE2b-256 5b8a0d87a6ed5ec018625258e029a6b7361dc5b17a1a6b28c287959cedda79d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee2849255533e5c0d71d55f3843fb17f3d6976fc13d723bf456f8225166d82b0
MD5 69e4db1c2de042b4b2e06b84cbaeb11d
BLAKE2b-256 b6026003170081d83a6f998487556a78d5ada98bdd7bad6fa65da2bce6c8966a

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca9d4f1812efcc6c161aec891f2885c76902d9965ec3f2b0a1991b45ea9468ec
MD5 b55e5a8d714bab195293ffe3bc2f2d22
BLAKE2b-256 5dd654cbadba6ccd00e16d3ba9bacbe1791dc232fd06bf9c3c9e1ad2e74a20b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6d8425712cc5375b8ec2a5ecffddabbcadb418a05865403a71fabf5e6eb2552f
MD5 71e57c291d740a7bf09fcb2b30b71ed9
BLAKE2b-256 ba87ad99e1cb083a93a758832acf850f3a5b11367e16ccc720e080119f9738db

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 886ebc7fcbd6c3ef24314fb661b9fb28b6490762d89a65f1c3596818b328f5be
MD5 ed2637c56281f5ec4893c8ee63122a67
BLAKE2b-256 39561129f6f45f61fdca77e7e86adbe1d5b98a55d85b5d8440eb858fb2dffe5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b1aeafa7b097af7895d8e6d599a36808d65376969b44a47d391b91b192bfc0a
MD5 344b94b3d0d84589ddfa89b364b06039
BLAKE2b-256 33c35215f6356f8b38f34433ed4cd55ae89f672201506877f6dac89232f14138

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5861b5f628f1442aca8444b719dfbaebc5e10d9f4eb96b50e2c4e2392837df29
MD5 8176326c4a7e3c4266840c05f5d24c9e
BLAKE2b-256 30822fa2d9a1a2914ea3acb5e9456941114fc6e72a3023fc54e8f28c9fc39806

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f724b4de32efff3c02e725689dcfd61600bba38f166cdef6d34f57677c504ab6
MD5 4027129c76aeed2d2ffb068778dfe7c2
BLAKE2b-256 a69d9f48b765af81ef22e0003ad2a83125c7dcf8e135756a1d5e48bf31acb0fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f3bdf3e136267e08e64989e4b1c7c4749575d02720f7d3f8356e60476ec20c52
MD5 c8597390059660eaea166dd69b06fefa
BLAKE2b-256 8c393d1b002189f6b3de70ac18cd594ac392ade18a664953949ec4db7c1a1d8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbea84955ed93f985ee5703760eb046843814a6f2b2db27973cca1bfbded2f17
MD5 d6ef9fe9d3be78f6b21f205eb85b403a
BLAKE2b-256 465dc366183ab75df1f32c65e5f7d0a5d6f0f92d92a328736ab1924bb04d2267

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e815332475271d7928f05d61ee15175b8bde1c4b3750612058273797c0cfffd
MD5 16416f2cff3d961f847b190d2f422870
BLAKE2b-256 6ceb8de437dd98b3295272d6d4222830aa0f8dab1cb1377291c78a57fe6e4504

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6801a5c23a3196d649142a96a794d339f55ddcb0d922bd964921f884cfb12cf
MD5 4d671c4e54f06552f55f2fdb9aa32b6c
BLAKE2b-256 b598cb5dcf100f1f258e3931589ac84eef20a69f26e4746dbef11263e18d6983

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81131239810c38810c1c53c01779a8b4c38274fe21457a06cf5df4ecdbd4473e
MD5 50ee30fd003e5df07180c64a015162ee
BLAKE2b-256 b59c7bad2ff3349d26dcf79024562d5eed3e0c1e053e37196e812b7a1dc94c53

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 104b5a3f69ea49d8a97059f7c6555f69a442a741a1c87cb94c2fd6c8cce6ef8e
MD5 867d44ac0f87451aaff5d12eed635ab3
BLAKE2b-256 32a1b9d0a650c22efc44742788abaee4dc46f9fd87e8c8ef92899526523002cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0adc6e6d732b4fddeb93bbf31ba893f6acc62c02630d77b46e2f03e937938719
MD5 1d427acedfde127d2a9534cead44b71f
BLAKE2b-256 99ed9c195aff6f453b0ddbd9dfded2633780187fd6c0331233a8b4edccf13e58

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84a582b350d08155b54689cea8b72cdbdfcdf1e6f404d699a44aa276e5261d9b
MD5 f3cdaf8773dbd49ee8cb75d700b7678f
BLAKE2b-256 7e01eef0917cd0c1fb966ee3caee6ae465fef61801942481559d2803fc069daf

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

File details

Details for the file lightningparse-0.4.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lightningparse-0.4.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c6e3a09a9f5227a3f5e4c92bbf1b9309c74eeca9aafe9007adaacc110af04515
MD5 6d081fea11238ffe0e53fb9583bb7016
BLAKE2b-256 1d8370d447f36163e453f5b457093ffb1267ad0e6336338832851bd542a9ee07

See more details on using hashes here.

Provenance

The following attestation bundles were made for lightningparse-0.4.0-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: CI.yml on ShivamMalge/LightningParse

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

Release history Release notifications | RSS feed

3.1.0

1 file

0.5.0

28 files

0.4.1

28 files

This release

0.4.0 This release

28 files

0.3.0

1 file

0.2.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page