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_links=True,            # Render [text](url) links in markdown output
    preserve_very_small_text=False, # Keep tiny text
    password=None,                 # Password for protected documents
    quiet=False,                   # Suppress progress output
    num_workers=4,                 # Concurrent OCR workers
)

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.) — requires ImageMagick
  • And more!

CLI

The Python package includes the lit CLI:

lit parse document.pdf
lit parse document.pdf --format json -o output.json
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.5.0.tar.gz (333.6 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.5.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (9.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

liteparse-2.5.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

liteparse-2.5.0-cp315-cp315t-manylinux_2_28_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

liteparse-2.5.0-cp315-cp315t-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

liteparse-2.5.0-cp315-cp315-manylinux_2_28_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

liteparse-2.5.0-cp315-cp315-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

liteparse-2.5.0-cp314-cp314t-manylinux_2_28_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

liteparse-2.5.0-cp314-cp314t-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

liteparse-2.5.0-cp314-cp314-win_arm64.whl (7.8 MB view details)

Uploaded CPython 3.14Windows ARM64

liteparse-2.5.0-cp314-cp314-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.14Windows x86-64

liteparse-2.5.0-cp314-cp314-manylinux_2_28_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

liteparse-2.5.0-cp314-cp314-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

liteparse-2.5.0-cp314-cp314-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

liteparse-2.5.0-cp314-cp314-macosx_10_12_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

liteparse-2.5.0-cp313-cp313-win_arm64.whl (7.8 MB view details)

Uploaded CPython 3.13Windows ARM64

liteparse-2.5.0-cp313-cp313-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.13Windows x86-64

liteparse-2.5.0-cp313-cp313-manylinux_2_28_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

liteparse-2.5.0-cp313-cp313-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

liteparse-2.5.0-cp313-cp313-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

liteparse-2.5.0-cp313-cp313-macosx_10_12_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

liteparse-2.5.0-cp312-cp312-win_arm64.whl (7.8 MB view details)

Uploaded CPython 3.12Windows ARM64

liteparse-2.5.0-cp312-cp312-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.12Windows x86-64

liteparse-2.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

liteparse-2.5.0-cp312-cp312-manylinux_2_28_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

liteparse-2.5.0-cp312-cp312-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

liteparse-2.5.0-cp312-cp312-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

liteparse-2.5.0-cp312-cp312-macosx_10_12_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

liteparse-2.5.0-cp311-cp311-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.11Windows x86-64

liteparse-2.5.0-cp311-cp311-manylinux_2_28_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

liteparse-2.5.0-cp311-cp311-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

liteparse-2.5.0-cp311-cp311-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

liteparse-2.5.0-cp311-cp311-macosx_10_12_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

liteparse-2.5.0-cp310-cp310-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.10Windows x86-64

liteparse-2.5.0-cp310-cp310-manylinux_2_28_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

liteparse-2.5.0-cp310-cp310-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.5.0.tar.gz
Algorithm Hash digest
SHA256 8a95a6e51c5e390430d88ccdeee7e10d97cee65f3473b308a227513eaf61128d
MD5 1a032071707e5e9db85dc0fb258a2448
BLAKE2b-256 52a355da41efee13596ad24a6fee2d8d7a3558c938860f619bcd71c3c13b8478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 94edf5b987c7dc102f84f46325418070da7b1018bf80e45ef37ef60c07bc460d
MD5 29e13648be4f2d9b1a89548a5e43723a
BLAKE2b-256 1cebd95d045794deef5f40ed580bd73e9cb76428cb1845b02b706662f73a6f8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0dfe55aeb81b2a336fe5771d61f5c7a887e83c6fa298aae5573f2ed2bc0dbf52
MD5 a14d5844d25a73c371968632d3e3ee6f
BLAKE2b-256 b62199bc1d36cd171323e33c84019daaece8bd14b07e2b73fef11e0c7d90bf40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c80c2d00177d48e77556ab5f056c9b754c05c478cc0e424c31d4f0a5d88cef6
MD5 23e6a35bc1ca86d9013a3aeb5797df22
BLAKE2b-256 7ed2d66e7bc6d0bfcb7924a7d1bad0f185f02e8aca272c57153bdf9daf51cf9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 846afaef5faf39459a1ec98b3effc6c5ed08194059489da98c465d9b9e887a35
MD5 8181a6c0cc4316a94519578b2c29651b
BLAKE2b-256 6de429c5c1b2278fbddc371a4d84091141d64638ff116bd287fd2ae24a4798de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9373d53b15ced18f863225f77ecf0207aca85c6c36231de283002893d22cd3c8
MD5 b8fdb48433368a1283be2b5e2d090003
BLAKE2b-256 dd4d449e5c5cd22d992d703e84185fdd47abc06aee1f707b79fd11eef3b558c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 207bf706db761091bb621f3506e24c29bca9774f1df57ca60653394f36167cd3
MD5 2b6d5b1c3b3b850c30c147bcec37a9e7
BLAKE2b-256 de0754b85e407978d5ad0048f517f89bd22fe22a389773f0072b49456b7f9762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9002aae0b7a85a948ad4ce4e9bbf9589976c0ef55460aa1f133069d3358f1e50
MD5 2ffbec02bd51e6d3538dbb000a362475
BLAKE2b-256 73fabb21f39abd85d5330d968abdeef7fc7865d36811498fc6378b3b9dbbf74b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 132f31eb80ab2e941276deecb1eb8db8992de475cc085957fed827a081dc48b1
MD5 024c34b05a66119ca229c0838c775d1d
BLAKE2b-256 a085bcda0b48d623aaa3f24ecf7716ad7f5452eb8bf678936196bf4c41efb6cd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.5.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 211f86546a220165ee226679df224ad96786c10541dc2e136a5846a72df96811
MD5 88f9c0fa6828451296f3c840c3b3b028
BLAKE2b-256 7a941da0fa2c9e7cf42f8a9a245a5f40d9580f88a1f7682e31ba6c4525c011b7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e40c7d5c7aa7ebff7fbb451500d116726be8a842031bdd25cbca23efdb049f87
MD5 2f92f7638f9850957328937c39d21675
BLAKE2b-256 66b60a515924407e9eabcfb10c50389c0c037405515c3f92bc269bf2e1e5cfd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70f8743e73a6a7d9b64563e2941894f8e8f27f59ce578be65da10725cc629e5c
MD5 da9aaa21e7314d204979095d14548c92
BLAKE2b-256 eade5f5323efabab9c1f0b10049ee3fd649108d44e2cc9b610684058674e1fe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 89b70caaafcf2a947e70d5c98f7a6485daf0947db9c769c28b7435b5f00d94ee
MD5 daf68169674e8f5a6170dcbd38dc31dd
BLAKE2b-256 53a070533f9565b34a3e4cfce4a512b65eb66ed266f996a585257a4fcd68e4ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f2a39cf845783b0b930b11f0f9b8227de6b5fd715ad5d298b3789f3a194b6a8
MD5 ac5575cd397e6c54eb20c4e91f9abc56
BLAKE2b-256 5244b66589fd975ff67fb774d1914e2d567c9a833da86237b0a4a9151f0a6e44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 37e36f07916c3700fac242d75fe3485e17a4b8a540adf56ea4764f4b14fdfa66
MD5 8af210d4452e37042a44c1b7196f3cfb
BLAKE2b-256 db45c552a119d54b64a88e703c0b84f63115b65299ac8704a84dc231123e9d33

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.5.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3d9887648df9226c42cfee570200bc2fcea38170b82566161a46409b21b51598
MD5 6d0a2a59504e8fc169eae3730656969a
BLAKE2b-256 4704d6aca1739b3b192d3d945e9dafa0e60fb9c1cd90154dfbd3ceb18a8dea80

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c9e6d8a693e20274898485e74ed305e727bad9edf018729d0af564bee0b548e2
MD5 d7db933d5b0aaf0b8a6c64793d4d7f23
BLAKE2b-256 517360a55f869fc26f4606fdc3ef2f446309a20cceff4d1bd0c24a7984a706fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 10d4d6c3a9a806927d68d965e100e56397e6b1e28ce88679d50bc822aab7ddf7
MD5 a3ec6923061b44aa00ec2b828513d21f
BLAKE2b-256 ba1c3e0a0a90ce1c528dec1e9665e407246eeeabd420e826bef33686ec20a9bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ac115000da5c4577d3fdbc9bd16874f9af27089258b540bd431948fdfe1b9e3
MD5 26abab73058d2f945fe5811ed8aa44d6
BLAKE2b-256 8fdf529d15d49aa513316ea811ca46946e2c70094dfd62083651a67e4475be42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fa48c0453d95f65029eb4105b790bbb534d6e275aa123904d6c5bfc927ff40b
MD5 9a8ce090a98b906b0fa844bc10ecfd60
BLAKE2b-256 f0e28f720c21b9da55f6e1e9335db1c99c8721569169954c1a25e76af322d411

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 98d879315e94d41f8252701b7dc56f3693004ab99d733a783fba292539d389f0
MD5 fc88928e52b4d409d74355e71d4785ef
BLAKE2b-256 823e46ee4d3a1679d7b70fa1f4707545e5cf602d4c0561779e64ca69d856ff04

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.5.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3df044d79e005c85402f7ac60561ad8322e74c850c589b20689db8b984fa049d
MD5 99ed87e314e4c360978a8431880f8599
BLAKE2b-256 3979d3f0e1991f853d4f484987c317e4b61906cff622707b437536b7e0521328

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 32adc145345a5c741602ff69f8b283edb1b254cc358a56f4ed6307b6e5ed87a9
MD5 36d1e348a8416efdfeb2d7eed9fda4a5
BLAKE2b-256 2012aaa97fe1e165c973b80cf64126bc5b85313b13048c98b73623d7610c6268

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c29f7864804e74223d983876805d964369f541c9298db01d70c04dfd3c192d3d
MD5 2ed1ea30836eae3ea497750f46adaa25
BLAKE2b-256 b49c9de381df29335cf039cb6ddf4bb0c0d1b5362c09ea668407e79b32a6b407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 116e60f206fa4d74739286b4c648cbda7ebb28bed11ff65f05ce0587053a4e67
MD5 6f593ff6b95a0651900bc2228f9baba8
BLAKE2b-256 efa85834cb0c3e25d73f783025a0baac3cfbad958c8f981d4b8dc2a4171fb59d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a52f0c2902fe07d4f8185458774f5163d9c791cb09f12e5b39a4ad7d35e82303
MD5 11c0579409bc7475c0c710dc1c844437
BLAKE2b-256 848d1625f5792be9dab782104747cd51e1a2ef9dfc0fad948540325511b076a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b2bf32f254552e86e2c7ef556ac7d0dba6043a1d98adc177cace49e24f47a8d
MD5 933aeb16a299bf430c857a3cfd6b7e62
BLAKE2b-256 a797371052c5072795c4d8157e8134837daec259b3e5c7ce77b06acd702f706a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 891ab9ea267a23b64a0f806d62b5c3242755033ef2bf0d9170d2b7d1557bb6f5
MD5 bd918cda60cf088595b91f97b58aa6d9
BLAKE2b-256 c9db48246afc2e66afd6b5828ba0a39ce4a29d7349d5d0ed887d2be92ac9b6e6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0018e6ba433b801df0a4f7f96e71cce98917d46fb1413cfe54fab9a6cd377bfc
MD5 23858c3c7e1bc88407ba85c4ccc32179
BLAKE2b-256 d14c7098677cfdb3db55feb73dc2acb88fdb79c90724649a4a9d660027a7ef85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 191938d9b79404a64aa0f4465a8957a2f9e2ce1e4f32d191f40133498b5c6a79
MD5 efea3f742a5b9c6bc6f1737306e0f1cc
BLAKE2b-256 ab489c7c6078937da411f1dba9048814a9811df6204c055a23bc4334a5aab4a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a4237fa38fd5266c46d093ae346ac5dd883b7ee4bf38bd37c49385c08cfca335
MD5 c36e2a40b572390665dfd7f75ecfd439
BLAKE2b-256 622d70270d44eb53211ccdfeda0535712b379dc7d37fe6a58b9542415287c7b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ff0c8a1e1203cab91ffcb53133e943a865dcbbc8ba6a1155f7d35ef80f466db
MD5 0cf9c7593c6632f46168936732e6ed0c
BLAKE2b-256 e225534472a7fbb84effbfe9de3c3a30209e726dd11d387a65b8fc788b35b032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b560faef9813b3b33ca63bb11327fb8fe73873c84fb1fe221f1a5fcbf8db1385
MD5 9979f498db5e1af6e0cc76fd30772c0b
BLAKE2b-256 21baf288cbafcc4137994b25dd578be176005976ad1434c9fb359fb82a49ddd6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9592f96fd2147f49ad849e83d0387193fe80dde58db38c6dd9337778f974b376
MD5 4832b0ea6a6db16bc9e4fdbafc59c9dd
BLAKE2b-256 ae2848e1b4334fd028d801097a9b8c52d7b254c14cbf13f2f7d948d96e9ed86c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ddb50c88316147f7ea45eea293f8886268503769e692aa90200647ff77b43e92
MD5 6a4d4120e9fc23903ae44f8ee99d4b93
BLAKE2b-256 a80fb48deba4737b8c2d99927f1cb40a6ce282066b5a7f5b782eb243bb356f5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ad5f392fb8c6ec0b6c0ac93415c0322815cd56b8d01368aa65e9c3a48afab29
MD5 bebbc26474d8b88ab9b0443c71fffdd6
BLAKE2b-256 4a6ba045b9ba137d42cdb0aba054c44012812cdca15304c954f68e8e431989c4

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