Skip to main content

Python bindings for LiteParse - fast, lightweight PDF and document parsing

Project description

LiteParse Python

Python bindings for LiteParse — fast, lightweight PDF and document parsing with spatial text extraction.

Installation

pip install liteparse

This also installs the lit CLI command.

Quick Start

from liteparse import LiteParse

parser = LiteParse()
result = parser.parse("document.pdf")
print(result.text)

# Access structured data
for page in result.pages:
    print(f"Page {page.page_num}: {len(page.text_items)} text items")

Markdown Output

LiteParse can render documents directly to Markdown including headings, tables, lists, images, and links reconstructed from the spatial layout. Great for feeding LLMs and RAG pipelines. The rendered Markdown is returned on result.text:

parser = LiteParse(
    output_format="markdown",   # "json" | "text" | "markdown"
    image_mode="placeholder",   # "placeholder" | "off" | "embed"
    extract_links=True,         # render [text](url) link syntax (default: True)
)
result = parser.parse("document.pdf")
print(result.text)  # rendered Markdown

Reconstruction quality varies with document complexity.

Configuration

All options are passed to the constructor:

parser = LiteParse(
    ocr_enabled=True,              # Enable OCR (default: True)
    ocr_language="eng",            # Tesseract language code
    ocr_server_url=None,           # HTTP OCR server URL (optional)
    tessdata_path=None,            # Path to tessdata directory (optional)
    max_pages=1000,                # Max pages to parse
    target_pages="1-5,10",         # Specific pages (optional)
    dpi=150,                       # Rendering DPI
    output_format="json",          # "json" | "text" | "markdown"
    image_mode="placeholder",      # Markdown image handling: "placeholder" | "off" | "embed"
    extract_images=True,           # Extract image bytes + metadata (default: False)
    image_output_dir="./images",   # Write images and return name/path metadata (optional)
    extract_links=True,            # Render [text](url) links in markdown output
    keep_headers_footers=False,    # Keep running headers/footers in markdown output
    extract_vector_graphics=False, # Opt-in shapes + merged H/V lines per page
    extract_annotations=False,     # Include page annotations in structured output
    extract_form_fields=False,      # Include AcroForm widget fields and values
    extract_structure_tree=False,   # Include tagged-PDF logical structure
    preserve_very_small_text=False, # Keep tiny text
    extract_text_metadata=False,    # Opt in to MCID, font metrics, colors, char codes, and trailing_space_generated
    password=None,                 # Password for protected documents
    quiet=False,                   # Suppress progress output
    num_workers=4,                 # Concurrent OCR workers
)

When extract_images=True, image extraction is enabled. image_output_dir requires that explicit opt-in and writes the extracted bytes to disk. Each result.images entry includes its page bbox, intrinsic pixel dimensions, rotation, format, name, and path. Valid source JPEGs are preserved, exact duplicates reuse one file, and JSON CLI output contains metadata only (no base64 image data). image_mode controls Markdown presentation only and does not imply extraction. With extract_images=False, lightweight Markdown placement refs are still collected and result.images stays empty.

When extract_annotations is enabled, each parsed page has an annotations list containing the subtype, contents, author/title, PDF date strings, viewport-space rectangle and quadpoint rectangles, and URI for external link annotations. It is independent of extract_links, which controls Markdown link rendering. The field is None when extraction is disabled.

When extract_structure_tree=True, each page has a structure_tree containing all tagged-PDF roots and recursive elements with type, ID, actual/alternate text, title, typed attributes, MCIDs, children, and referenced link annotations. Untagged pages have an empty roots list; the field is None when disabled.

Parsing from Bytes

Pass raw PDF bytes directly — useful for web uploads or downloaded files:

with open("document.pdf", "rb") as f:
    result = parser.parse(f.read())
print(result.text)

Screenshots

Generate PNG screenshots of document pages:

screenshots = parser.screenshot("document.pdf", page_numbers=[1, 2, 3])
for s in screenshots:
    print(f"Page {s.page_num}: {s.width}x{s.height}")
    with open(f"page_{s.page_num}.png", "wb") as f:
        f.write(s.image_bytes)

Document Complexity

Before committing to a full parse, check whether a document needs OCR or heavier processing. is_complex is a cheap, text-layer-only pass that returns one entry per page with a needs_ocr verdict and the signals behind it — useful for routing documents to different pipelines, rejecting ones you can't handle, or estimating cost.

parser = LiteParse()
pages = parser.is_complex("document.pdf")

if any(p.needs_ocr for p in pages):
    # Route to the OCR-enabled pipeline
    result = parser.parse("document.pdf")
else:
    # Cheap path — skip OCR entirely
    result = LiteParse(ocr_enabled=False).parse("document.pdf")

# Inspect why specific pages were flagged
for page in pages:
    if page.needs_ocr:
        print(f"Page {page.page_number}: {', '.join(page.reasons)}")

reasons is one of "scanned", "no-text", "sparse-text", "embedded-images", "garbled", or "vector-text". Raw bytes work here too.

Supported Formats

  • PDF (.pdf)
  • Microsoft Office (.docx, .xlsx, .pptx, etc.) — requires LibreOffice
  • OpenDocument (.odt, .ods, .odp) — requires LibreOffice
  • Images (.png, .jpg, .tiff, etc.)
  • And more!

CLI

The Python package includes the lit CLI:

lit parse document.pdf
lit parse document.pdf --format json -o output.json
lit parse document.pdf --format json --extract-annotations
lit parse document.pdf --format json --extract-form-fields
lit screenshot document.pdf -o ./screenshots
lit batch-parse ./input ./output
lit is-complex document.pdf

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

liteparse-2.10.0.tar.gz (411.4 kB view details)

Uploaded Source

Built Distributions

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

liteparse-2.10.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

liteparse-2.10.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

liteparse-2.10.0-cp315-cp315t-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

liteparse-2.10.0-cp315-cp315t-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

liteparse-2.10.0-cp315-cp315-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

liteparse-2.10.0-cp315-cp315-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

liteparse-2.10.0-cp314-cp314t-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

liteparse-2.10.0-cp314-cp314t-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

liteparse-2.10.0-cp314-cp314-win_arm64.whl (11.2 MB view details)

Uploaded CPython 3.14Windows ARM64

liteparse-2.10.0-cp314-cp314-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.14Windows x86-64

liteparse-2.10.0-cp314-cp314-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

liteparse-2.10.0-cp314-cp314-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

liteparse-2.10.0-cp314-cp314-macosx_11_0_arm64.whl (11.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

liteparse-2.10.0-cp314-cp314-macosx_10_12_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

liteparse-2.10.0-cp313-cp313-win_arm64.whl (11.2 MB view details)

Uploaded CPython 3.13Windows ARM64

liteparse-2.10.0-cp313-cp313-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.13Windows x86-64

liteparse-2.10.0-cp313-cp313-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

liteparse-2.10.0-cp313-cp313-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

liteparse-2.10.0-cp313-cp313-macosx_11_0_arm64.whl (11.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

liteparse-2.10.0-cp313-cp313-macosx_10_12_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

liteparse-2.10.0-cp312-cp312-win_arm64.whl (11.2 MB view details)

Uploaded CPython 3.12Windows ARM64

liteparse-2.10.0-cp312-cp312-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.12Windows x86-64

liteparse-2.10.0-cp312-cp312-musllinux_1_2_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

liteparse-2.10.0-cp312-cp312-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

liteparse-2.10.0-cp312-cp312-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

liteparse-2.10.0-cp312-cp312-macosx_11_0_arm64.whl (11.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

liteparse-2.10.0-cp312-cp312-macosx_10_12_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

liteparse-2.10.0-cp311-cp311-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.11Windows x86-64

liteparse-2.10.0-cp311-cp311-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

liteparse-2.10.0-cp311-cp311-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

liteparse-2.10.0-cp311-cp311-macosx_11_0_arm64.whl (11.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

liteparse-2.10.0-cp311-cp311-macosx_10_12_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

liteparse-2.10.0-cp310-cp310-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.10Windows x86-64

liteparse-2.10.0-cp310-cp310-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

liteparse-2.10.0-cp310-cp310-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

File details

Details for the file liteparse-2.10.0.tar.gz.

File metadata

  • Download URL: liteparse-2.10.0.tar.gz
  • Upload date:
  • Size: 411.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for liteparse-2.10.0.tar.gz
Algorithm Hash digest
SHA256 1c8e761593fe4fbc5d75de657cfe4fe0cd87566cac3e472c7b768c0dd92aded0
MD5 27bac20c3519856795171227f0075096
BLAKE2b-256 f9bb9ac3e4ce20e7fc3ba208f21726c5fa4e65e68ac8c78d41fbfee9a626f52c

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dffb19b70e63abf455d171aec23ea539d7ae5c52a24ff2dbcebc8381ed92477f
MD5 2adbdab506ee2e753f7c6c6bd83bf7a3
BLAKE2b-256 535f39dda633402d04b0eb264a74be3a2f817c3467b2bd9b5d70ff571e3f99a0

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f221f0a415818c3f25988bbbbe9b7da6ab3a39fa05a590b86ba5024b32a540c8
MD5 6a55d1c6f793975911c610771f737072
BLAKE2b-256 944125a4765a090a774ee8cedef20b9553c4c2443ce7b647e6e5503e7c1771a9

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef6d2a6bafe8f16408b63998b5d0448175ac891a9871b4c1738ca897edc4c9e3
MD5 d2b44f42acced3e9ec3e2b132d5a6e46
BLAKE2b-256 1c6ac9f748340d4eceb15daddb9c1f0a486d95bcc0e1e44b4f6dfc620f6f0f61

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp315-cp315t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0d5b2e00f8b07e7baad8b4b29eaf08efb83bdc716708541d19fbfa75b1030229
MD5 cd71695969d43fd82165c143d6b1c65c
BLAKE2b-256 19799c5477ba913c349db15c81ed0a5739ad44b53e0dd28ad1df1440bcb0e224

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 945f87cce066902228f9de50d0ee925ac6a926c54d305fe3901ba1795c96a574
MD5 dd5b86a503bcfbc9142b2998b923d9b6
BLAKE2b-256 29c2c4b5d4d9dded88e138f989254c98137f474b8e3fbaf3ef129afbbe29798e

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp315-cp315-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0da548754352d5cae27086b36650f49f056da35bbbb672641f4af17d4272907b
MD5 155b65b11153f72ba8e9a05311d7f5fc
BLAKE2b-256 6f4ebd7e0b94cf879b2ebf0166d0894795c540593f85db22a17f7b86de9d238a

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4a21869c484041324ad60748dcf2287392dfe8f34e4992af8199173796857f8b
MD5 d81459762b82b36b72068314f468ae6e
BLAKE2b-256 10b9db36d0e43ddd0952950c614495ea8dec0990e4f03dd15f2c83caf6795267

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03d2ff550de60842682dd1749d49bd3f5b3b277a4f6252a270f20973c12e6c3a
MD5 ec2ab203f47021ccbe7df1d0f9c78964
BLAKE2b-256 a91a1d2333b2e5c3b6c45e813d5696a2bdeefa9ba0d7b5b26c2dcfcbed300a83

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: liteparse-2.10.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 11.2 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for liteparse-2.10.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 6e812e7bb5d43a51869dc5b93a04783646d8acb34e7f11be6cc1bc66d5948f15
MD5 b76d7fe9a19bc6b4ad09c16ef372663d
BLAKE2b-256 18f7abb1c78124e7949fe23242332e6c147313bc777383b11d65fa131d6423ad

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: liteparse-2.10.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 11.8 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for liteparse-2.10.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1008c4cdfe763e55998569e96ace1a15a214be489b0ff248c08da347110b2632
MD5 c1fa17a143af85f9c7f33dbf5ed2bae5
BLAKE2b-256 6b42ce0588e98c3d0c736cefc8a54eaf8a0a89b1d26b917a1489af2605e135fc

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba32018581d4df086afc22a9f9fb5fe5165a4a360661aeae2a9af2bf081fb8ed
MD5 1974db87c61ddc3b6fc2fb0fa795243b
BLAKE2b-256 235ced32ad50df760a02a19d7acf3cfc637bd167afe4fb355202d56172f03d2f

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 82bed7903c50b52dd6da7deb33b8637e596a6d7ad415186d44e29d624892a036
MD5 41ea2da2cefd5db5998e92edf291226e
BLAKE2b-256 722ee376f05f61a70e3a61ea32a1d83955e78b8e841946134db9fbb21907c194

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccc432b8621e18531973713b74efbf979909a2a075768db862ce2a5fbaa53816
MD5 d73ffad21a0a36acd8cc9405e70a1053
BLAKE2b-256 d7fd5712eae04a1e1a990ab3de6976b24f80df2c17ae0c53cfd05f61550294d4

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 be367e5c0d7d800c97b1afbadcad1892f2ee301078ce4fa211a30810c10a0675
MD5 53554c8af1732da35c2d526e50485f11
BLAKE2b-256 00ab76a4c3eed2c59bedf9ff5abde5310d3546156bf8e939f2c5d617ec957d81

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: liteparse-2.10.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 11.2 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for liteparse-2.10.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d754f9f8397ef2c94cdac26af45222ad6da1072521ceb0fc9f547b96daca25af
MD5 c69a25ec104ee9d27bc76a29528fc699
BLAKE2b-256 9a269d846247d292ba9bcefba399ca1dcb855f3e92c5a410686bef9bc926caa3

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: liteparse-2.10.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 11.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for liteparse-2.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8ef6f2be5967da8d1afd3384bef5a46f8f59112920035b19641d44a93f3f212b
MD5 b8dbaee40a67c7d732299e3decf7917d
BLAKE2b-256 61472a789e0eeecbc11e01f2119cd7d87e7b42221fad4c40a88be3038c4786fd

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e1645a0c3dfa75c47f018db4920fdbb1c80600916b51b2b42aadc02ff46fa8eb
MD5 9234c649cd370e55ea3090ba1c4a2843
BLAKE2b-256 e4c599ab6666b6ce5290b9edcab57121baaded55ab651233ac6971493b12a41b

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02db2f9afaf404b0e9a43595dabc9df41d8bb8eb6506d314f9f118631026da76
MD5 4c5cd8431fc4df77f2e35b56e6d820e0
BLAKE2b-256 4beb22daadfc074a77a62c3ff51fce7ced4988fd0e3604748448ea140a8c2fb6

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba2a2fa776709842f31dbd4ca257807a0fb3104ec36c61cb158fa4e62700cb86
MD5 8fb2b063e0687b8c37c41ad5f58c270d
BLAKE2b-256 f906703adbbeafb2cd50c7670042314f4f61eded2225b869f331d9cdd17f3a35

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 95f23334a2de3d4be5f18d9d3e8c1cba2f1803114d7cc9e45c19909a960a885e
MD5 5f3bef6587e17b267b3fb2c58952923e
BLAKE2b-256 decafcab6d4e24b246c723cd347e133db97c61065de9182a625be19b1638e1c2

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: liteparse-2.10.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 11.2 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for liteparse-2.10.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 07c5513dcbe278d99bd2f099a2569631427daf5999cf8a94f730b4b5d4fe5213
MD5 a627018154e8c8883d837b8dc5f767a1
BLAKE2b-256 1d41e0b148b4ba09651ef8f5882c9f6911e2895d80b14debb9f6010a035320b0

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: liteparse-2.10.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 11.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for liteparse-2.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0f82935c1e9a8bd5474b191f07c880d2b98ccef25ec7213d32402bdbbf5a922f
MD5 13c0d675d9517668919f94c23104994b
BLAKE2b-256 62419e1081d68aa7fb9f0a40db3f906162205e1574057303d2d215133b3a7157

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1957e8f92adab8c49fd8ad4ffd226ec97531b1c29d98edbeba9cc46865482d3
MD5 c93d51e005b0276d44d9309e840fe4e7
BLAKE2b-256 92c70621a95d8030cff8cf621f2cff96f5b99a99ee2069c181c013337279f0fd

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 52e70c51b1f00a2732c5ef834ce6291f1169279661142f1d27b8dfc686d87e1c
MD5 0abbe60540f5d1826e6aeee20c29c7d5
BLAKE2b-256 dd6d715263324e3db65df3547b8ae151256a08b894a3be85aad5b874ffc1e110

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 33448dd8dae457503095c129db443be652dfaf44c3c35799d05ab026939cb585
MD5 95aa9c1793dafd4fb3f7d7f6858c049a
BLAKE2b-256 26d885f91cdcc23c946455b4f1cb58278e471deaf0e7e8f4ec25201d69a0b95d

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e5e4fc5028eeb559e550cf362a5227653be512af4e2e9ae136355ee392b862f
MD5 d2ac6877c41ddde55e726d5df680dcc3
BLAKE2b-256 8cefbe91f84e1e9212c8cac7c04aba9db6bc018be6af48cd19b8b848cb442836

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4523768656ec97b438ef0cf8f555f4399af163ba877d14b512d178ef51bd0b6e
MD5 3dc4d084241815bb4639fcae396b04a7
BLAKE2b-256 d484e1187e9375ee4dfd010919c0d1945997b9e217b14239baae1c317883c56d

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: liteparse-2.10.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 11.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for liteparse-2.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0ee15b7b9b25e10eeb1f86edcf0c6dd28c042d82df074aa7ce62603c1c6f1f09
MD5 b1935df333302135fd636c676cffd547
BLAKE2b-256 d57c946edeb43f93d1ec42bf6ddbca6e2d6c9325e3dc8a700094a26b6b59007b

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 18ae31b3acb0b390f947d0617582d1d2a8d37d69d2605bbfc49cb108b1330bf3
MD5 e1b19a6c38ab7470861283b64b492c81
BLAKE2b-256 b72cd3ba04f33b5fb0cbccabfc4ffe27206672737bd8639e0872a37acfc007e8

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa4bad40ddf7c44b47a921e48ddb5392281ed9b71f8f4e9164b338ba8377c1d6
MD5 74766fc07fe94a2a930a274fcdc2a3b5
BLAKE2b-256 95384e8e48b2de804e50d9f8ace0935cd654e7abce2aff0e511f1fac7eb4bbd3

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3c129c1f85fc1dfd8a66c83f6eb871d846829ba03b6d3f81e43eca634f27506
MD5 1758815c879065d3200183d17d1b2104
BLAKE2b-256 c0fbbcbe2d296c79dbc8c33855df69bfca5a0a8d73f34eda738061afa906de13

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a9d683c80129392345688f18bb8f244cc1e1d8335aade2136a6cbb54e03d8922
MD5 d7fb5c7ba5cf01417c2512c120d253f5
BLAKE2b-256 823c076bc5533959c11be8079efd19236766d71fb6ed33c66902c091d36d9f6c

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: liteparse-2.10.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for liteparse-2.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6e8033e5ed5f327c750472321bc9b0a4639af5deffddfda534fb2d2d5f890129
MD5 246e1942cad742361c3e2c48a75dab4c
BLAKE2b-256 625b95787ea3073a4b88f12747575436a477cde31b7adb71bbbab6c31511c722

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b6bbc81b93661a3b9e53fc4da68b7cc10779c9efbed0e61c6f64932635c09b37
MD5 d1697319e1206d1ad27b78b9aee36f4b
BLAKE2b-256 cfab7dec320401098d3a4890349eebd83944b83b89bb94bd1fb86260fcdd5a3d

See more details on using hashes here.

File details

Details for the file liteparse-2.10.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for liteparse-2.10.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6516b1326e8d7ea5f0239be1ad0a19449080f92985afb70c8ec2487cdcd8d4ac
MD5 3dba453b3e3d7c827dc085621aca7dea
BLAKE2b-256 b4ce251ff3cd46884f1e1e8157e0238a22d3849cf6eff49432c30ad123d139ea

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