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.1.tar.gz (336.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.5.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

liteparse-2.5.1-cp315-cp315t-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

liteparse-2.5.1-cp315-cp315-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

liteparse-2.5.1-cp314-cp314t-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

liteparse-2.5.1-cp314-cp314-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

liteparse-2.5.1-cp313-cp313-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

liteparse-2.5.1-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.1-cp312-cp312-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

liteparse-2.5.1-cp311-cp311-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

liteparse-2.5.1-cp310-cp310-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

File metadata

  • Download URL: liteparse-2.5.1.tar.gz
  • Upload date:
  • Size: 336.4 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.1.tar.gz
Algorithm Hash digest
SHA256 e6d27f135d048814ae8b265b616e2f65a1b93449a6e199a647e4a3753347471c
MD5 d1c641cc899bdeb4b63d40659708c894
BLAKE2b-256 c0d7cfa519097042d9dc36a8eb19680db8d02fa37d4b7bbef2bebb7a6bc7fb4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f282063b6b25fdcfc5e76cb47de5590374d37253c75fd10ddb5456594ab79b88
MD5 f0234789f0db2eb1a68655b3accd9d77
BLAKE2b-256 dc3804eac495d5a95e736decc97bc6e4b6a4df1836b337ff999b3284d7fe426f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b56d8899a25922a713d10cefaf37fc9bf10f8a6842861beab87048041db7fa6
MD5 8f3b3e0901836beaa3249c1243c3bbb0
BLAKE2b-256 121136f31df49d4c051f596052d83503245a652a93b30fe519b2eebc45cffc85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 877d0c900ac4e01b9ae81984aa5738eff1a5a2c1334fcd209958a7f3a32ca221
MD5 8a7190e49b41e9c517402f0648411470
BLAKE2b-256 2d4eeacb088305fc4ff1f77d751e0085313e4ab9b95dbca2760a6975fe8199e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8a7737ccc2aadc4259d0ea1bbe0cbb577591f30396ccf654678f76b1664e4d6b
MD5 edd5ea0ff19376d55ef0f3e3e716fe62
BLAKE2b-256 74f148cf38504a44258ef0d710d2fa79748051ba28285294559985376f74f820

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 adfa48d437d96cbef60e3e39a31de003b530439b7f37d4c736a50450cc625ad3
MD5 01be315ca77bf28f4707c969a0fbf781
BLAKE2b-256 b3d6af726e49a5c7fc11c1d1df8200e8c7c6f4e9c289cb9d0c5f382a902c5308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0a4027b8f2c5a9bad92a36614469cf67e8890358c63e3941fee6dd77c0645e84
MD5 af7f009bcb67aa7f9d656a02fa93cded
BLAKE2b-256 c70c266b0e077e2167a0d4812d9b7047216733f7c01179e4ae0dc019018e034f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0121e973568d00e8cb84694f878e1bbffae0c4f84645646e049d2ecd0d306b1d
MD5 249c8e81a0b286355e74193c60bdee25
BLAKE2b-256 4b617de44a8b501600c38f9193bb476c196ab2f2002d8982f435b751c3b0d550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c849029273b22326bbc0bf0c8d8373bcdebe9997838b455aa1f416aee32e7c2d
MD5 7873e0569327353e8eb8a9bbdd827056
BLAKE2b-256 c5365409a854d143e474eb69204918512ff78649c3e88ad4424419ee595c03df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.5.1-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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 da4f134e5afff027964a0cf6190df017fa8786be1f642ba4a9c978fd6a233b86
MD5 8f0a2aef628e5dad48b99a2d15750596
BLAKE2b-256 088995de081d4328dae7f4e78c566be1b1202b39b6c204ee25f7e1e0b6d6dd24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.5.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2d011b6f5f5328febcebf8fcc4a2a564ba6994aa1a64088daf9f7ffa5e10e487
MD5 969503ef9c1d700dde9647ed99339e51
BLAKE2b-256 30537841bd4ec39fd2dfe50fa5b988557da7b5e7b7a89ee3ee3334838086aa83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b932c5d5ecbd0cd9288283dae8ffc7240d0935c4e7691b014f126de8e0887a9b
MD5 7e61dc45c2436cc93d8ab5754e71c895
BLAKE2b-256 2146d62132126a1c335e6da133e0351069187f47169d6f27b3f17365085382b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe842ab5fd21b8fa7dc76e77a0b9a16da85e57fbe7f52591af5df3d8f92bdbb8
MD5 5dbd4b7753449b6fc154e46243761a71
BLAKE2b-256 6aa11de55c8807c13ed7e5842ef531bbd4f66757e374a2029a952c47dbc2cd36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fc1722b058b6db9f95edc921c60e1bb3272ff61397a2a8e226d83714674f90f
MD5 3d34458ebe9b1759d0747d95f479b53d
BLAKE2b-256 681ff81004ea779b1599e5fc89a38151a530963c7a371b7070c682d3aaa06101

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cdd391793a78f0555d60ccbc709404d470db4d5c5838c1b0c167a2bf2528535b
MD5 0711deff855db39ba8c2627f2636db8f
BLAKE2b-256 69ed119d4a892ebf84bc0abc9a1ba93f36d7229bd79dc0367c5f62aee8c809c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.5.1-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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 34aff1a9c5f30c1bce4d14a67aa7454abb745eda24a69f746759e85b2480b5b0
MD5 3c6c14171f7ffad4f70b453c215a9dee
BLAKE2b-256 94b98ccd400bb7324024e8b0dd5c87b27ebf35c7322c0311c61cbe7dbf040b92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.5.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 de2ade3fcc3790dca5bd9ef0e393e3149d161d8e3aa0d56b1dbed9c796822500
MD5 f19859f0ae930b89d78bb28610261aac
BLAKE2b-256 35a3783e8a7df7e9b9030f70b2d0144dc03c7fba10b3fda79d860dc6fb6d44d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 692653b2c83e8d34e94364c46f3743273f84b436f97ed6f5fe676f2cf2b0665e
MD5 b78e7ac9cda162c4daf12536c198b309
BLAKE2b-256 5b24a670b024b0327b560fe2c5708a3f483c67d0c29705bf2876024723b4f832

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ef53f95d493d81673bebe957007f7afb65b237e2f52681338b45cc2081de980
MD5 62e96f17ef5771e0cbb45682f8c5ba9b
BLAKE2b-256 6e5fdb02af2c9e89fe88d67055d4b31776bae17dabf089fce7635dd0acb939ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e793f3b5684b7db42a2b727ef00afc6510326b1f5b25603757cc71dcaf32788
MD5 ec564a28d805e10e190d3837607cfcd4
BLAKE2b-256 62bcf706d25850fb4c55dd99a35d2542006827a159dcb2c22488fd7ff66da1a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 953b1876128da9f0698a844c31345b913fa2e7b46b3e0a115ac908855df59781
MD5 f4b4605693ba13be24fe693d6fef77cb
BLAKE2b-256 81d60eb6b03bc923fa8f3786bd89022c3336b5afc5b61475c3539c6229a0812b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.5.1-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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ec6ef90cb08a233d0989a57e5483bae09f31fc715794215730c44c0af785eb93
MD5 6c74d185e98a3fc9574119c373aadb50
BLAKE2b-256 2dfc2bc56578fada92ea6849c5cdd0897168606416408ca39978e9143870270d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.5.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 38b1250818f8d958c2c1a7b3f8c2acfc31483a2fd41d99ba98cd59611fb3daf1
MD5 a9098acf8b1e1228d5f05f653a4b2b65
BLAKE2b-256 ff1b8b863f15dd166ed27567d49a0e84623ae247293a6a65974e128ff34fcc7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce477cdd4e5bf0c0efb4f52669016dda5109bce618b55dada627cec2a36db347
MD5 f44afe7714531b28115562814cbde6e3
BLAKE2b-256 b5e46ba53d76c14edcd892f51792c3c98ed8efdc5563645513bb2bd160c3b562

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1f989cf85fae2f84941190a933abe43542d92cdcea8138a57623c27a0715ade
MD5 6b84614c2ebe1b9c7e17e1bf403f3334
BLAKE2b-256 0c8ee86f7f39db4f3e17c0c739ea97f2e884b738f8701ed3c50b8ae8e227b1e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a693dba11306428cb71b446844f9ab011a71a4205d346ae5549a0ac31333145
MD5 0e0c1c5b0c0139792caf595661cc7ac7
BLAKE2b-256 0a5ca808a1776f343571b4cd29fabb730732610ad1f02e51483d691dccdd6cff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8f627af7a20eea4490d98616bbfa4795e1e5f0b863db2722ad1a671ec7ef046
MD5 76a68b477b3c8632add7035c7094e82a
BLAKE2b-256 2087bf9123f740a566cdc6d1ad136e33e30ef68d82245b0e8f2d07084c6eab18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 99722051af1076e95be11749b54c1d18f62ddc1a125f0826df8bbed55164f41e
MD5 9a7c4b58098834bebfa873bf086d3a3d
BLAKE2b-256 e3d6a2af871e28e51c0af84b81979199479c061f88369fb2979466f2acc31a64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.5.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 371749701d2db2c5e1389949a9aaaf6e9fd761fe3f124c4782a016f88e1ee6ac
MD5 400cf11c3c183e05550d74da930f0439
BLAKE2b-256 f03f91e9dfe4d94f27d4bdf53e9e368ce6096ab2ff1df05e4607ae8dc5d34e48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3c87df56ea0f2badebf850266b39b454f07f89fa7c0836d723f90419970ce1d8
MD5 fec4595b6077286dfb2cde1b8e408526
BLAKE2b-256 dec72e1bf6e1f9f8d37692e81b69930d4c610876582dd0413e3a7197b672340c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f740de652041c64e320e33e92296880ed25661cb8f4fdbf0ed8994e62403a49
MD5 29f07434e7fc6d1d9c1ba6fcbadca21b
BLAKE2b-256 99bf225f9332616d8becdfe1d5335ee4c31ca28d89ad11b624c52273d815359e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 356c29cccc4d42007678adbda68a6e61f4c88d3092cfdf0f879f679ddf2c01e5
MD5 34f55b3405c62b4af7d2798edae2373d
BLAKE2b-256 82792ee50cc4d3f908391adf47da73579d77d8c8b092e88fcbfb23d203945dc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a85d84e67583a9660672eccf00fc050c4767567db73151907302c0f35674c544
MD5 771f91b7fa473a5a7a85283dda9c898d
BLAKE2b-256 dd1c3de0b3e4242081375bf110a2487ab340976598a335967f6c520402cee76b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.5.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8da83cb71fd1f2e5640e4dd89fd45756bfcad7da3e77abf2e6695e9bd8d57673
MD5 9deb1d337dd1c93971ffc4dee26bd1e6
BLAKE2b-256 e3c413f6d0f32ee09bddd23302a9bf78e0464eca11f65f995769c9ad5a504da2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c19787f39993a85f1f721048231aef615b977d2eebb6ff89c27622d85337fd86
MD5 1df30c0a33138efe75f8820cc93a6f2f
BLAKE2b-256 c072eafdc09d16512e22f070e1ef58a3e7af29e37ad70a81935631053a2d4c99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.5.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b4836a7018f6be2b09adab2d52fa6f919e2bf9bacca5001370c7e160c4b4c88a
MD5 d77088c14ce0c32e031484a128820dc5
BLAKE2b-256 49c70821a1db6d00ca1cee809032f9d53ad39bad245e4408fbfb27304ef2b87e

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