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.

Every result also carries creator/producer from the PDF /Info dictionary. With extract_document_metadata=True, result.doc_meta adds a provenance object with dates, PDF version/security, signature state, incremental-save markers, trailer ID comparison, the catalog's XMP packet (capped at 64 KiB; skipped for sources over 16 MiB), and source size. It is off by default because it streams the whole source file, and it is None for inputs converted from a non-PDF format. These document fields are API-only and do not alter default CLI JSON.

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", "vector-text", or "annotation-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.11.0.tar.gz (445.2 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.11.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (13.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

liteparse-2.11.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (13.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

liteparse-2.11.0-cp315-cp315t-manylinux_2_28_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

liteparse-2.11.0-cp315-cp315t-manylinux_2_28_aarch64.whl (13.4 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

liteparse-2.11.0-cp315-cp315-manylinux_2_28_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

liteparse-2.11.0-cp315-cp315-manylinux_2_28_aarch64.whl (13.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

liteparse-2.11.0-cp314-cp314t-manylinux_2_28_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

liteparse-2.11.0-cp314-cp314t-manylinux_2_28_aarch64.whl (13.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows ARM64

liteparse-2.11.0-cp314-cp314-win_amd64.whl (11.9 MB view details)

Uploaded CPython 3.14Windows x86-64

liteparse-2.11.0-cp314-cp314-manylinux_2_28_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

liteparse-2.11.0-cp314-cp314-manylinux_2_28_aarch64.whl (13.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

liteparse-2.11.0-cp314-cp314-macosx_11_0_arm64.whl (11.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

liteparse-2.11.0-cp314-cp314-macosx_10_12_x86_64.whl (12.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

liteparse-2.11.0-cp313-cp313-win_amd64.whl (11.9 MB view details)

Uploaded CPython 3.13Windows x86-64

liteparse-2.11.0-cp313-cp313-manylinux_2_28_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

liteparse-2.11.0-cp313-cp313-manylinux_2_28_aarch64.whl (13.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

liteparse-2.11.0-cp313-cp313-macosx_11_0_arm64.whl (11.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

liteparse-2.11.0-cp313-cp313-macosx_10_12_x86_64.whl (12.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

liteparse-2.11.0-cp312-cp312-win_amd64.whl (11.9 MB view details)

Uploaded CPython 3.12Windows x86-64

liteparse-2.11.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.11.0-cp312-cp312-manylinux_2_28_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

liteparse-2.11.0-cp312-cp312-manylinux_2_28_aarch64.whl (13.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

liteparse-2.11.0-cp312-cp312-macosx_11_0_arm64.whl (11.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

liteparse-2.11.0-cp312-cp312-macosx_10_12_x86_64.whl (12.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

liteparse-2.11.0-cp311-cp311-win_amd64.whl (11.9 MB view details)

Uploaded CPython 3.11Windows x86-64

liteparse-2.11.0-cp311-cp311-manylinux_2_28_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

liteparse-2.11.0-cp311-cp311-manylinux_2_28_aarch64.whl (13.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

liteparse-2.11.0-cp311-cp311-macosx_11_0_arm64.whl (11.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

liteparse-2.11.0-cp311-cp311-macosx_10_12_x86_64.whl (12.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

liteparse-2.11.0-cp310-cp310-win_amd64.whl (11.9 MB view details)

Uploaded CPython 3.10Windows x86-64

liteparse-2.11.0-cp310-cp310-manylinux_2_28_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

liteparse-2.11.0-cp310-cp310-manylinux_2_28_aarch64.whl (13.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.11.0.tar.gz
Algorithm Hash digest
SHA256 1aa322ff472dbc011ed31e31c04eb506bd093fcd041cfb3f9ea419409923d413
MD5 9f011b1cf0c759df29a4df14e96d6ff1
BLAKE2b-256 baa6a1f6988c56ea5350255d805698d4af64ba7608bbb6ab8d21b951cc94b42e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0c55336ce6b9225e9eb142714e71e54ad1d059375cf425ce0cf61225d9f5527a
MD5 38585b596064c47dc8a87bce39a750a9
BLAKE2b-256 b24f08a1449aa03e7d9ca00792709baa17df0924d6817a5fb914d63d9d020c9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c724e00d31e6af3d17ef77ed0cead7aadf417f4c372bc509114c74a8dfe3e4e8
MD5 ba0f2d912fb418edd8c7570c4cbbfff9
BLAKE2b-256 16530c2354df49721ab85df8cb22393a94da11ff45c9cf3c76e0d6fb1333e1e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5da8f0073f0fc94b86766cd5c1dd4c32f2167213ac0f17cdf822ded9f3a0d3a6
MD5 1280a347a39d499faa586769d8967257
BLAKE2b-256 97ef6091a9eca9e0a74fd7b90c81198efa83b6e9c4c135aa9daeb4f13b3a4283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e992845a9789b9202b96c0fcae5c8bd3eea0c5923649ad524b0b46d938e26184
MD5 241c144a833d39d5dd0871747c251359
BLAKE2b-256 f5a37e08bd4ff0f7cffa9ca234ceebe14d88977884cd3ad9ebf50be237092851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 833fe8530503616c3817152114f314515b15a288538aeaa7de4a6c3ef8eb8625
MD5 2e97ba5d0e38ba46422236ceb1aff3ce
BLAKE2b-256 48217cdb7a24d2107977fcd3cfb2e047da23effb43d75e123e279479ef38d9c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e55124aa4e7966dc2fa03a68b296fee1e56f22078e861954457f68354fbf408
MD5 39959441a159cea3b802bd00a3a33465
BLAKE2b-256 c8e247c3f1c7a861bfeb23088156725726841241a895668155ca1dbaed3399bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8dc79ca85bc16d0ba8ddba32116ba61d418d60f2cd08c2f1d9002cf4dd0b862
MD5 1cdefb2e0fc8bf8210197bd419c8afc1
BLAKE2b-256 9f26c3387a7620d08c6d1181cf40631471c95bc34496d1653380dbf240349aa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5f6ca87f5d050e609214e8afe895f17e3dfbbc5b889a0049a9514f4c150b222
MD5 fb8ee2475a4fac860ecfda78a135fc62
BLAKE2b-256 f61fc328dfcb5186a93412134aac97667b20d703d6fbfdda3b74c726d2d6e153

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.11.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/7.0.0 CPython/3.13.14

File hashes

Hashes for liteparse-2.11.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e5c90721a6519366aee73fe5ae3f38690adbd5fe6fda3802a2676c650be8cd0f
MD5 ae0b64a2575ba1aeb52a9d213765ad19
BLAKE2b-256 4c378026642e7fd01fdcb5aeb5806dd6e8e531f171252f8694319ecef12acb6f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.11.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 29821e54d182c2a8ed878fc039b24692f0352e47dd28656af3ca557b9411b131
MD5 63dd73297c71dc80729fe6344f049ae3
BLAKE2b-256 c239373a90a23455bb85d75ac219d51d99c5f9f018ca50675eb4028b2a87d97f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f5b4c2d92769b08013870773b721bd085412d380af5b360d17d7a09dbd7b49a
MD5 417026cd6b65d25886dad894cf70fb8e
BLAKE2b-256 e984dadfc4ad15f830a076c4b4a1a9597348433d5796c62433d70122a38ce6a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f3eacc774c46b0528cb05877cda7b90cb0cb7a36dac6d90ee64f9a68b052b02
MD5 b0fe98a3725126fc353c3af5a735ee6a
BLAKE2b-256 515a4d82ee910e19c5b0fe8002a4ecf2f495cea7392c2d058db769d00ebd8cf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d469567fb5df376e590094492d92a94f08b590688c2426a8e7f1f4ea3350d75
MD5 79df511e4ebec460d7a4e9c77b2cd52a
BLAKE2b-256 f038c6dbcf89365c246606337dd996554fc8024645747f953eaa6fbd75cf4a86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 131fb4f4040292ef84b62f476a6e1f3ce4d79c1e657a078e543ef4e6c523b721
MD5 8b97f9ced390aecd3edb558acb330cfd
BLAKE2b-256 fe3d83a4ec6b5d7ce326500925c8913404f0e21c72765e50f1eb9a2783a7fb4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.11.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/7.0.0 CPython/3.13.14

File hashes

Hashes for liteparse-2.11.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1612cafcfbd696188cdb7b998778b12f1df8f1f14a58643ab14a644c057ac78c
MD5 2bba5aa216ea9383edab156a1292c692
BLAKE2b-256 efa846b77778a4f9e7c415615fe4f43100ce53359833b16dee4126a4283c5fcb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ed55bfbcc62c1574587d304ec9c7bf3a479b38e30a0f8695f47877e90a5212d0
MD5 f72a264a112bcd95a4b35afa6c4d73ba
BLAKE2b-256 13574531906ba3f7b01cd30777c08c97f7afa3aafe905bebabd10efdf6837206

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c006316292ce11d673362aad153bf305035076607ab8b0686ab6dd1b4060d99
MD5 5496ac5edd0b21e09929bf3022535863
BLAKE2b-256 c24c03946304d61a5279ad00686597b6ce53ad4eda3eb143cc0bd32f608096f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06887557a64e039447c21a5a6b57c87b6d52546bb0c1f90d3e22ca880ee8bcb2
MD5 bf82479244b407066b0fc6d436e01d96
BLAKE2b-256 e67ac62f65205f6f5fcbfd7be148bbca38572de6ad907ece4274ec81fe819525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd645499fcc423f55347e1878048252d993f082fbd365e9bd2f5a5e72cd0e8bd
MD5 c980f60cc06a220cae4ee120474f68bc
BLAKE2b-256 f40fcc26085876317b893e30bc3a5917876c557087480958a52fdc9e9e838950

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 485bfeca6eb00743cd90191b31375272e87dbcd40198749a3f2b12816186cea1
MD5 a37c58b931eb70bc42ba633674d73f0b
BLAKE2b-256 2cfcadaee3f0edd7845478395c98da82f4af1e1bce875cef046adbe36cc0e41b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.11.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/7.0.0 CPython/3.13.14

File hashes

Hashes for liteparse-2.11.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 75337d3907333deacade4efffb0a2c18ba7029b6590292917fb660d145efacc9
MD5 a5d5ae7b6195d3c28ff1ee3be5f83095
BLAKE2b-256 092d05051662c6bc8f44347e88c4050b45825ab43e95358dd8ba4551bde49e55

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e0d04e96bb58478a5fff91307a20af402b0e879f3bd001099223b0ce30d7bfa6
MD5 69ee2c65fd573bdc1b6710fd6383e34c
BLAKE2b-256 3672e0238f1c1c795384b93fcbb1a7595fbe687edb95c2cc178a579b7a8560b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bb51cfab4a74b48757fc794498c3689cba7ce1da99f3fa7091c46d33d1f5ca2
MD5 e39c06e697c9437a8242171076400de5
BLAKE2b-256 ccd5aee3e0b4efa6cc393970e9613d028efda4e33221e390f0147ccbc199f306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 610881b496c389a21a08760e28f5ca1c1eca7f37a504119935e87cc4c4369c8c
MD5 93143f3114bd5df5cbc3536ae0721de8
BLAKE2b-256 063584aa671aaa2b7f747313956c18defa4fd4f4a6bdfee9df1d341062057102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 256273463aff17fcd92015d2d2e139ee2fa93a159dc9c267652e2c2bf9129438
MD5 6e66dcb8333e415271796861dde24846
BLAKE2b-256 ce76bba45fc27366464b76c723b216a85255228e7ecb3adab5b8b4bc08897989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed6269f529ec5080261bdceaa212117c376744b7baec2ef2095ef293c69a0764
MD5 d53cbdf49965601a491b36fc28bb78bf
BLAKE2b-256 7a7a00f4711808f7d2a81c6ba80a97d84ba32fc2ca83d0688dd75770f539d346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 056d261f1c77d4aeceb0ff0fb2e771a478d0c6e81b2f848964405d36f3c8e95f
MD5 6f282dcf4906d3dc3acd06d2224ecab1
BLAKE2b-256 b9c2cf55a7081c9c24b3a20f1567b177ea375ebce329222a09969ca07cc3aacf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0c2b9dff4ed4d6b845fafc40ca869d357dd32c4b76029c9594305dd4ad4c5be4
MD5 139744598b77c43e7290293d892e77fd
BLAKE2b-256 fb25303cdf057b3e42bba892d29eb74ba64fe544f270557d3e928c0162212e4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3822bf8592fe5b05c5ed8813aa85a034185e0381b3e32a021d9b7ffc1125de20
MD5 5bb482f81c99926c0d212ffe14d8ecd9
BLAKE2b-256 4b92a427e6c60313b54604f20f19e233ef2b885bba611c346a148b2290a7e0f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 525211f7e32f012d4ec7830986e60e1f437ffce4dbfcd9bf5a604885fdad2c1e
MD5 6dcb2a8ca8908a3105e772b950f98792
BLAKE2b-256 19d7ed95c1eb92b338712e65922722dac46d46fc37d6c7e1ad4e5bf8cc0af041

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d59d286d1a4e2bb2a47a45d0fa9620666e00054c11bda89be66f7169ed4fa0a
MD5 0361e1d60f3a0c042cdc52a1d48e2888
BLAKE2b-256 25dbdf24c50f49faa88af9d9e7e96a006c0a41abc28712909bf134aa6261b8ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 13e54fa491d4ed250e8dd0702a936b470915a2662fe3d529a3e745655a4148fc
MD5 eb059cec79808f8f04adbcafc123487c
BLAKE2b-256 0c29751b6a08655c66b09623050eac59c1e890185774401108dc3da51439fea7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4a8d61fc130ddba455c026bc4f842f77f669e1db939163dd6101058afe0dbeb9
MD5 9b5c834b56c6b047c9b6ea6eeae607dd
BLAKE2b-256 0b34191689495a27caa4b7cf6e1fe5093c4274299fc8d6167610e013b31e9961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23f31305546db21ca80b823c2b560a2e344b504023aa9c80e8cd7e950834a837
MD5 8206271641271a83599c691febdad411
BLAKE2b-256 a5502fe2d9b3026cc5db428915c6c368e579b9aa2e16fa2b5de8b94c4bb71f01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.11.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 457b2208b81fc8cbfe226104a20c87f17f850bc53429ec6d0811e0eb4ae999cc
MD5 b1c326d37865243a8ef38f2d015c4e9f
BLAKE2b-256 20c202d7f6d355fe1b8bee91dc12873ea4770fd8644ba4e35331e14fae761031

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