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", "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.10.1.tar.gz (413.7 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.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

liteparse-2.10.1-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.1-cp315-cp315t-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

liteparse-2.10.1-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.1-cp315-cp315-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

liteparse-2.10.1-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.1-cp314-cp314t-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

liteparse-2.10.1-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.1-cp314-cp314-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

liteparse-2.10.1-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.1-cp313-cp313-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

liteparse-2.10.1-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.1-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.1-cp312-cp312-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

liteparse-2.10.1-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.1-cp311-cp311-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

liteparse-2.10.1-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.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for liteparse-2.10.1.tar.gz
Algorithm Hash digest
SHA256 2516e8887dfaaf4705795f19fa29f45f8298e0d611774687b9a40133beaf96f7
MD5 b8250c9af7158005aa02587e43ff2047
BLAKE2b-256 dd8736fd93083e4f65d27c6e256ac32ec3d9ea33cb09530d92cc484f2b71cfbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c6bf300e5a1fd8956da9e6defe49bdf7292345411cf4a0d8e2d2ba1b841d8ac5
MD5 f309120ce63d4a84e4bfe85b751e6e33
BLAKE2b-256 05c2abb6989d55f9e6c3804826e1f8d0fde7636bb095ed91027382ca84d70a45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7948394a9f2ef03ba5e253497e0e1e52ef17340f059516058e42d26b2309bedd
MD5 7094d5767ae26f80ad8d72917a431d42
BLAKE2b-256 4452bfd350a1005bf8d6ba5b1f2a899f75fa024281d7e76a3c00450f1b0a27f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 af4bb2804655fde7a3ddd053156c7aa34bc5ab1203172f53f87f5fd34a60e2fb
MD5 cd51328d9c86dc9bdf795bb3b89f02d9
BLAKE2b-256 05b8cb060d9d398262cc45ba202135d46c569bcdcf5d4de4322f71d3e8d19f09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2b135253075759e931caa37588238df2c454347df26953e7b5ddb439f5013751
MD5 c2e144a9b2b632d09a246232c7c0ce66
BLAKE2b-256 85349eeb306474b11b93b52c9f481bd735ae2a52e8c4d2b76066556eefe12775

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d7743cc6cea6e68d6c488815f3874c21c3683bcfe9dedc649e2bc91f4cc9023
MD5 81a5d63c6a26355e33002fd5577262be
BLAKE2b-256 38736674fb76f3f197382d56b5235ab57f10566bb5447f7e2eedb7a62fee5458

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28848db4ff86df450a54c94a2344a41f7390ddf353235f674d8e0af413a6ff72
MD5 0ed49c78e984a4e879492b6ac5d390a7
BLAKE2b-256 ee6687a8d4e3626021e2c73a761a907ca0d268dd13ef52c9fb3af4c5df2dc478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8e56353ce6c999395a25556bb6b980ab6e639a4be7ce36c04882146064425e5
MD5 b604895384664dcab38346282b3ba3fa
BLAKE2b-256 15627d802b335221bfe0f923ff078182c12bb42a85871dea3b56fdded462f54a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f1c2a73451e15e1033d5c36182764e6c266a346733e3c7a46d0c0c354a810eb
MD5 0881fbbf08be98b1000f577f814327bd
BLAKE2b-256 bd9303bb1b7b096171fce8801fe2e552e0a00c82a9c290be87e651710a195728

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.10.1-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.10.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e6856eda333726cebcc75c92237493f1f833b382b58112d670e4beb04eb40ea2
MD5 96af05e33cd2a5a99aa0027d59c805e5
BLAKE2b-256 2b7630f8ac4e467f4fad3425ffb68325aa7b633f0196253cc3378fbf4410caca

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.10.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b9bcabe6a1991f4ae2399a9f8c9b02bed842a33ad6bf366aebc4694d1bd702ef
MD5 fdfd1715392d623ee34173e338ec82f4
BLAKE2b-256 3fed17801f51ab394852097bfe056872bcadcc008e7ac90c26e8afec55ba0d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f161724a34d1efebd0926ccea53b7c1fd05bcc7121373cc3c058b4f49904c970
MD5 e0b18de54ba2a59effaed6a97d939a76
BLAKE2b-256 b1660f05c8e5b0e2ca34a541267b77d0a43b200732717eabf70d25a1fcbe7db6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4c3db00059ee1d00efea2453ca85ff20d9ab08a02e8bdc928b30736e1ec24d9
MD5 d39ef3043586591c0553292de15d34aa
BLAKE2b-256 250da05175327bf47e8f2f6cdc043afe83182d585d78ee5cbeaa8646a4a11c97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e923a8d51bd22dbf35d7ee55c60f65c3c329bd0af1bc87764797867b59b57aa3
MD5 d8d27177ddd2ccf15fe7ff9eafe71b72
BLAKE2b-256 edda54832e80039e7d8793e571b5692bd46773a96e4908d6ec5b6088f0e0f9d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f7da35aadb40540ff0091ad13e4d5f09690be32d6c4d9397d415544681fe045
MD5 b8518942ea0397fbd66b3cdfdf0f5442
BLAKE2b-256 f57996a66cb37b1ea0c7f1582758df7479d4cef491b764c745a76cb51f7bf65f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.10.1-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.10.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7bc5d027883aa73db8de92dd15696e94cd62d29631e2d6de5e345380e3196793
MD5 318c4a26d294780a2321b0aadc0c2586
BLAKE2b-256 64cccf5ed87e84c702726d50cb6f7ce327c49165c3258b289765d44b2f3b4de5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.10.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2a354afa009c074f46771101b9abe371eedc3f01a432c19a4932e1a81818dcab
MD5 6aa089515f0f86db830194a7ce71a5d9
BLAKE2b-256 d9ed0eb728e3b326bade1001bfda4b662604160654dcdcf630f86555570baafb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 75ae82840b24debcfa09431e94eaf06447c885b2ab1494d97ca8b0075f57bf0c
MD5 de89ebba14cff281ccbce6cb25af4922
BLAKE2b-256 f4e6534d778fd4e03bdce2eed5cb26c2dd86becc2ec67ebfcac0114bb144a553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f5d40b99370a7e241bd574205bea54805c308215c48e85a29958438f26c8af7e
MD5 a3e2544890f6f805748ec0ae8c6bd809
BLAKE2b-256 5fad65345c2ab7a20597829c8644665b68a43981e7a4c6fe99b8c0a15fab876b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be0b66643ce4524285dcd30aa4c936923657b938ccac8e633bf2ffd64658f3c9
MD5 45cead41bd164dea427518cd537609fb
BLAKE2b-256 914d4b2f37dcb310ceb438ef354effd454ac5689a80881ac22a954893cd6ca1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f604acd92de32cc25cbbbd956378fa4e58fdd4cb9ce4c7e322835b1ca6aa51d
MD5 3f5f1fe1e1aa0419ee87da95c0e3234a
BLAKE2b-256 d287e975fd1554f87f0795a9f760016aaab10b9ec39c046f41e429f9c9324535

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.10.1-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.10.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 edf1099e971229169e6c7baca944d5760ffd031513e9b6bafce6131ab4faa144
MD5 1c5f3e0bc18f40565e9f346f157099eb
BLAKE2b-256 a6a82f120a8628096efb53c84fcc87e07c6203afdefe974bd69b91afcba64ad3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.10.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7b975aed7345575a1de81e59d2b7e1677f8f1e47744d51feac1f047057d52389
MD5 eae7baceca2fbbba7e32b2e865fa99e9
BLAKE2b-256 2ae40b555a7ee1fdc100c36300d57cb707834e481cc302954eacdbbe808de86b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92916d85fe087b541b704e912b6587b6a49cb9532bc895ff80639d1679d484a0
MD5 2d277e283628c21be62fcf90aff4c44a
BLAKE2b-256 826d3c56c73e759061ae84053d87a3fc3bc0519714e763ceff79d0a93650350d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d81b147a392d87005f35e6b8b393f548d70986941ca293e16ba04d6a842a7480
MD5 a9a7656bdca4a5885ef04abb67664bf2
BLAKE2b-256 f0eb9d15ef15a05e48e136dc08f47d39169716c0cd172367afa540e137eef4ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 79280bb1b4ba51323e130a9ecee4cce6e94fff392b84ddfb219cafb6f30a5730
MD5 626516281792542664402de0555aad86
BLAKE2b-256 2cbadd72338784ccfb4ba4e511a6d5b0d427f5f50295557f136338f718ca9a1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95bd34366f27f84e37f5f204ad2473b8edf55be00437db99035ebc105c322066
MD5 2ddb7cd33724fb9282ebc8013a92f335
BLAKE2b-256 abe387caa2c995e31e260667e22ff77f9a6590af3e07f274a1e14c169046a846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d8b7560e214e8884a6f66579db7a254a9d8a897e5c957d9dad44fccc5f48f5a0
MD5 d0689ba1a682576f625af3f65b08e6b3
BLAKE2b-256 3c9c3b5fe7b35f494a04949f2c422c61cc8af2b398eea3ffa00d3e38c5231c4a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.10.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6f0b98f4310be9076640dd26363e85a0eb7857eb959a225bbd5745b98d3c64c8
MD5 b5341fe9c726a48d0f84040cbb3fa3f1
BLAKE2b-256 792158bcefd1a98a302b87f8962432c5a9f801bac1c8cabdfe4dc97ee3ac58a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c905559452e1bc9003cd3f3beebe71bf733faa89f53f3835c023514ae21d0f35
MD5 4a8b2e472857fbcbf5100ee721f86fc0
BLAKE2b-256 558c01561060d7b1fe23c2cc7ad7aa17f8c27b618add9455b079ccfc1ee6ddc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03886fc6000a0115f3d4970f179e90ed0a12bec342450af67dfaa1bef18671ce
MD5 77cd27d198736ca152527c65b18d8c5e
BLAKE2b-256 0bbc0b3b0f6cc9a1295e2eacfadba28d2d600521c42ed56b672210d13cfbe987

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a5b90ead0e37aa839b4534e6703aa1cc50772f3c5f29e240256b4201dd2e6fe
MD5 e100b00d53febf1d4d6dcf933c7e97d1
BLAKE2b-256 b4bf04f4021a467af9425dd13770b67413141972a09717443c8a7fed7d427724

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e8d17aa7c1317c44244e367bbd0f66c284d97282786eaef08f8e15f6d669d269
MD5 f064831adc0dab5ec8ec8909c2de3c4d
BLAKE2b-256 e16ae84c8d233e49c6b673333aec30da70e4a93e5a0a451547b33a7aaba8fde9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.10.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1ced25b3205ef6d69ec8a5df35f4b52b21c87dd91975cc9579522f4a7cf892d0
MD5 11a211c454b2724fc23e4537d574fbfb
BLAKE2b-256 0d77c8c60e05e32a42c21546be052cadf211c6920463fe78979ce7fbcf82ae25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c01cbca16aa5b7d28537ecf7871c878ac0596aaf45a3dcd4693ce532b9eec6a8
MD5 3d89a3b60dfa5de4bfe005169d20e79c
BLAKE2b-256 daa8e75b2977668127d044c2490506877418c9dc4dd41098cf88317752b13a3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.10.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2df532c3ca8d1d50907247a53b1b750c3be6150f2d2845680b3484027359e6a2
MD5 d5ac884e567b957d6615a586d2520579
BLAKE2b-256 f86b8fd109e6fd7b3c4e7bf899238fbb3f5bf4c0cbcc76419c3687034284dfc6

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