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.)
  • 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.8.1.tar.gz (365.0 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.8.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (13.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

liteparse-2.8.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (12.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

liteparse-2.8.1-cp315-cp315t-manylinux_2_28_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

liteparse-2.8.1-cp315-cp315t-manylinux_2_28_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

liteparse-2.8.1-cp315-cp315-manylinux_2_28_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

liteparse-2.8.1-cp315-cp315-manylinux_2_28_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

liteparse-2.8.1-cp314-cp314t-manylinux_2_28_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

liteparse-2.8.1-cp314-cp314t-manylinux_2_28_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

liteparse-2.8.1-cp314-cp314-win_arm64.whl (10.8 MB view details)

Uploaded CPython 3.14Windows ARM64

liteparse-2.8.1-cp314-cp314-win_amd64.whl (11.4 MB view details)

Uploaded CPython 3.14Windows x86-64

liteparse-2.8.1-cp314-cp314-manylinux_2_28_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

liteparse-2.8.1-cp314-cp314-manylinux_2_28_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

liteparse-2.8.1-cp314-cp314-macosx_11_0_arm64.whl (11.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

liteparse-2.8.1-cp314-cp314-macosx_10_12_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

liteparse-2.8.1-cp313-cp313-win_arm64.whl (10.8 MB view details)

Uploaded CPython 3.13Windows ARM64

liteparse-2.8.1-cp313-cp313-win_amd64.whl (11.4 MB view details)

Uploaded CPython 3.13Windows x86-64

liteparse-2.8.1-cp313-cp313-manylinux_2_28_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

liteparse-2.8.1-cp313-cp313-manylinux_2_28_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

liteparse-2.8.1-cp313-cp313-macosx_11_0_arm64.whl (11.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

liteparse-2.8.1-cp313-cp313-macosx_10_12_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

liteparse-2.8.1-cp312-cp312-win_arm64.whl (10.8 MB view details)

Uploaded CPython 3.12Windows ARM64

liteparse-2.8.1-cp312-cp312-win_amd64.whl (11.4 MB view details)

Uploaded CPython 3.12Windows x86-64

liteparse-2.8.1-cp312-cp312-musllinux_1_2_x86_64.whl (16.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

liteparse-2.8.1-cp312-cp312-manylinux_2_28_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

liteparse-2.8.1-cp312-cp312-manylinux_2_28_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

liteparse-2.8.1-cp312-cp312-macosx_11_0_arm64.whl (11.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

liteparse-2.8.1-cp312-cp312-macosx_10_12_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

liteparse-2.8.1-cp311-cp311-win_amd64.whl (11.4 MB view details)

Uploaded CPython 3.11Windows x86-64

liteparse-2.8.1-cp311-cp311-manylinux_2_28_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

liteparse-2.8.1-cp311-cp311-manylinux_2_28_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

liteparse-2.8.1-cp311-cp311-macosx_11_0_arm64.whl (11.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

liteparse-2.8.1-cp311-cp311-macosx_10_12_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

liteparse-2.8.1-cp310-cp310-win_amd64.whl (11.4 MB view details)

Uploaded CPython 3.10Windows x86-64

liteparse-2.8.1-cp310-cp310-manylinux_2_28_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

liteparse-2.8.1-cp310-cp310-manylinux_2_28_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.8.1.tar.gz
Algorithm Hash digest
SHA256 d31705c2c4fa2d37495d8bd4eba50f4a7a22f098b94d365f06d387ddf2e73651
MD5 06cd44325bef7e4652e7b8e4bd29b5a4
BLAKE2b-256 7cf20617fbb2dda80e63d39b177d3a56220cda21ad19de86802cc3b8c9b09c99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cbbf1704ed3ab7441ccceda16bfec142707779f602281715501aaad7a5dae355
MD5 f81f37c765133201f95ba958b0e9fa63
BLAKE2b-256 5d90f5b27b89009417271c3aea29d9897cff1c4e91b18b30bc51241aea85cfda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7ce7cb4eb779e7febff68e78c8e8465496e1cb09ad36bcf99e31d2637921a16
MD5 30db40dbf4735d1cf5491b4086568901
BLAKE2b-256 1f697c5d7ad49a0c25dce8ddc4bad4e0fd562838df44f4b5132f4338677f7035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c0b400f27d9f5a4340bea142141128fe02b719ceb883d2835179671c14fce04
MD5 8b3cfb5a71970d086afbdf3d7b8b9ecb
BLAKE2b-256 d225174efc79071a41851a22e82d2dad787ea8c7c9ffd56988a28ff371aacdac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 034fa57d8614db483b60888072327482b70485adcdaac41c42f0046212a10921
MD5 6e4b4bf999be7d709db783f932a7749d
BLAKE2b-256 139b224684b197f33226a07bd2902dd50122762035d881ee35b85eaa9ed322b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 944fad6463bb19dca44cc9785a3530bf8c029f18b943de6a693093fde6ec7104
MD5 670c4e71c7b30ea42c40ff062fe2e07b
BLAKE2b-256 ea855222cfb11e10bf2e7ad9a1313702add36b99ae0a38bdfc9138c9e91f4c78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5be40967f0977f21a75108308f00cc1b51a2e37a8a83cf0e340d20631c2c25e2
MD5 945b42c01b830833be873a8c3f072da3
BLAKE2b-256 3568f774d1890755187662cc242584fe50f9b2f88a8ed56a6ec47c1499e0cf17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9aef39abd9ea63b11c1aa5e50eb2fdd704834211be5691c106b88aa03ae65672
MD5 4f16c4af79a8f98353385f85caed7a91
BLAKE2b-256 a20dfed49cbf363fd3d203f46c8ddb5340550e32d2fddc3bf8d9a4f70cd85fbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 feb13c49e23c3d9389b6edb78a916453065ce61d9e6462c506c74555e4334f34
MD5 ad0628dedf82b1f4f328732708e3a667
BLAKE2b-256 1420e9135dc70e96be6cca28bc2d1ba8ecc2cd2021818811438238a18818ac41

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.8.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 495bca6905c7301ba17b5d80c60d77c335d2aef844b5d47f23eebe45a4da9d15
MD5 174ca367f31ec555840928bb40550cc0
BLAKE2b-256 7e7f488aac0e642cbaee60b5cd3c9db68bd34a29c98037f8b678ce95f0dd8bbe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.8.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 413f532bfcceee9fe61768848046d0419851b35083db72bcd181dbfba8d30a9a
MD5 d68d40e172ec66ce4d0381b1a7a96a7a
BLAKE2b-256 023d8f6e50c85743e50c0a3be1334731021cb7c0877c13047ef5e03d8670c62d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c93f046aa3ce2422129e7a54b87bc801a5f7796a2864e4668d63cbb5cf935c9
MD5 e89ea5357092067130282841b4f71857
BLAKE2b-256 978ac05de7ff90906b74f05360eda4e79f0e0d6557a8f0aecf0dd066f445dd00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7742d47f173af4ce827dd4da1daade9717ea5c0eb66588f27db640c2319a98d8
MD5 e6782e48122372dd550c7abeab01eb3f
BLAKE2b-256 9ca4fe6ca0f2b64960fc6176af8a772246aba86c06f0089299d6c23bb8eee711

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50e91be6b60a81723881e3c827d05797abaed14118bafdf05ab5e8320e8bc5ca
MD5 40abe389243298e32b614b23622726ef
BLAKE2b-256 43660b9e920a48deb9abde456804cb751df1471acc683ce48bd3a098e23f6bdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2ec355809d31ea1d90c2d53a41927f565bad85a51125c8a8ca7710ecd882308a
MD5 c897557bf7972c6fccc3ceac218f5bc7
BLAKE2b-256 7fca737cefc74d0e3f55ff79aa7ca2b6cd481d52d63a162ebba5d790a5d5adf5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.8.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ea9e95adc5112fa3ff6914a2a4faa298c6379314fe2707b0fd0c0ce72af28841
MD5 967dc97b5d96dc9990d411acc93dd0d9
BLAKE2b-256 113508d843f013cee7bdec89164c72ff4fe9f184338107bb21e02c2ba8a49bb0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.8.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d16df064533b4a61a4808035342878a22673132e9cd9d42450f6fd0f606c43e5
MD5 aba508781bd77a56be26eb2401137472
BLAKE2b-256 d6a251c9ea2339e561b9da4f864c98ffdb810b655db8ba7ce8004f5450fe4978

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f604ba682df37bc5dfc13cd6ff21a31b6977035503d8ba29c4609a74d441057
MD5 6657034f8309c3de42538f1fab4bc277
BLAKE2b-256 a71a73b62dc827f6671556be9f176890271202caea11c38e51836cdff3373472

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3347959ae83ff4bf7f5399b7ef2ad79d6419e67a6d1a7077a57481e625ba45ef
MD5 6cbde192636abae707c70d329410bb11
BLAKE2b-256 ae31ea1dd25bfe887a67d626e114e9e3d2de4a808d8844791c6b54647c901d0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d9d32740663d14f9942fa7366427bee26042c3b88dabd11cc4e7d1731ed80c8
MD5 75c892e24178d46313c652f242304928
BLAKE2b-256 7674898c502e1e1b4fee10d1c00a72d071636564c38baaa106c6bd0fda927a26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 02c68851a534b0b0e86ae682304c71e70d4b23540833cbf7681452a50bc5c2ef
MD5 7fe30d25c3ed99d2b5d559604db94210
BLAKE2b-256 34b5b8133e845d792cc8386e177254933dab5d0feea4bbe6529727b6a41d324a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.8.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c8a4343c9771322f84a9fc3685e5086dc1dee4c0e9ed6beb7ecacdd7007dd05f
MD5 229da07c1aef9744bf6f93685bd82ade
BLAKE2b-256 0f7c01187d1aa417b2a3c0052c25f973c29a605fcf37aba5d45c0af61d95a84e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.8.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4cfe63922af0193012502ddb3962cf9ca86265472da99c7884df0620216f1049
MD5 86918369e9cba15c3bae5e644d264c7a
BLAKE2b-256 28727b9fb2b6fe1d2d53e151ae4919c46bbe6f57c79a1aeadf812a8aee214b59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8634ea03d95187e4b1a81177f331bf54947d8b4fd21cdc0e6dd8c842d33ef5e1
MD5 78fac36930b44fa337689ab36de60f71
BLAKE2b-256 ef88d734789c2e41b80e3e3ab81aeb979bb957ff7c57d4646c0d35b6506a4e95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 377cb82bbc558ec504fbf417d6138068082abf217d07e34fda5619b6546592bf
MD5 517ffebb0ff2a5d6121b4017cc9db0e8
BLAKE2b-256 84722811f88b993fb2f57018271dc5b83245232559d29048eb2a330bc672e681

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c5764b3ac60fe83a58de79e0616212db0d3841576c83860afbbaf09f0667997
MD5 cb2be389240c9b59d25daa5d30f42ead
BLAKE2b-256 0ff44d9050f30311b3263cb23ec3f79bcdce6237345000508469c940d3558534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efc148a8e326e9c439ff0078ac0f140a8634537bd2b8ffd4d7efce34ce46b9c6
MD5 15ca14ffe68695d44bbbe55103e59f10
BLAKE2b-256 05917fcb0b32a5e2e28e6e561cd685a112b3f28943dde702cba515bf861d83bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b121d09eb87228cb0414f73bff9a7ac3bcdaca4d93e98903183fa0cd799f4ec7
MD5 31fc448e7e9cddade68ebcf6262454cf
BLAKE2b-256 2fc29c8e6c8d2870c52909fff8d6c22d95982e40050ea1238c948f78c517c614

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.8.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3e2318025fc0a42b8d71972c797b1bdccc085727f058ea1e470da7153571ea01
MD5 45f4f262ab7b2cfce831f6fd8f014f7f
BLAKE2b-256 d9402fedf403d9ef94e7953499a1b91aaa3b54592001c957c8acf04b6bd6af50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e3d9b98105427a6c3b0d6ef436f40dd12470f32bcfe8de8ca675e6665182d3f
MD5 a9cf41374545f7077951362200d2de3e
BLAKE2b-256 0190a925a33def1fa111d49f7d465233cb67d4c09fde150b75f3c0f578ec2e72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d34a3d5f0061580619874a786acd5b31514e3838dd28473ff65d7a4368f2ddba
MD5 3d7fe0bad56b5e74d3446f44c6a2bbe5
BLAKE2b-256 42ff466f11bf54ef8c66be1af5eb47850c5e01e42ad758035eb7113302aeb5ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c28a8ff8073f6e01dba73b44e04f98d75ca1cfb948ac600459ebbc0e207f212
MD5 4002cc8e5060ca401e0896e67e3db4fa
BLAKE2b-256 534cb2bf643d3079634ad2950daafd9ed10af681d84e55268b470b9014a86bf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f93adfc9d66c62ba475b32d52129bc6ed718a162f837ea08479ad924d52c0f60
MD5 629aec243c9e7698831d637919c762cb
BLAKE2b-256 aa15dacc87f09bd0cd56706644851c10e93950625f51260d4f48db56a31a4492

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.8.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 29f8530213ee4ba92f2d233f977f1c812b20ec57e55a72a61c2392ae2876e68f
MD5 fe00a95919fb0f4295d4d47fe2184430
BLAKE2b-256 3556d3c30926fb7699902ed07d51d33f88ceafca88433d8b6183c251b28a5a7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4eb55bb7a08a1383242ad4eecbaa3efea21e02597e7c9d7959cefef4ac63a664
MD5 447c6d912ba23a481b194641b9035e4d
BLAKE2b-256 7e1ca3359fc71add26263363c76ac3dbd51fa7c748d08b40798158d81000bc3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b41af65094956fbafff8489d9c20c992d02d354dc125290c3fb65ab2bd3eb29b
MD5 f22ca3c88b0b625475b307d0d47eebdd
BLAKE2b-256 d9194ea9364e98bbd2bfe17721a1f0651f30315d3aff944ebc9b1dd45581d8a7

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