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.8.0.tar.gz (364.9 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.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (13.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

liteparse-2.8.0-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.0-cp315-cp315t-manylinux_2_28_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

liteparse-2.8.0-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.0-cp315-cp315-manylinux_2_28_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

liteparse-2.8.0-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.0-cp314-cp314t-manylinux_2_28_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

liteparse-2.8.0-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.0-cp314-cp314-manylinux_2_28_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

liteparse-2.8.0-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.0-cp313-cp313-manylinux_2_28_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

liteparse-2.8.0-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.0-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.0-cp312-cp312-manylinux_2_28_aarch64.whl (12.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

liteparse-2.8.0-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.0-cp311-cp311-manylinux_2_28_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

liteparse-2.8.0-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.0-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.0.tar.gz.

File metadata

  • Download URL: liteparse-2.8.0.tar.gz
  • Upload date:
  • Size: 364.9 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.0.tar.gz
Algorithm Hash digest
SHA256 237f4eeffe0532fefb1ff3dee40b0031166f72c3d493d4a00a1ecba2c64967de
MD5 6f09d8e3c00fff24bc6ffc8aa9f5e5a1
BLAKE2b-256 c8421a826c46acd8d9e81ed9609fcc33580a2264a8143bbec703d1573ebf93d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3755d359daae31f2ee6b39e8c29850735eadcc5f25ea70f70bc6fcd1ca66130a
MD5 4e610ef0b5bd98c2de5aed5b35f483de
BLAKE2b-256 d727fbcd1245bca1843d33f6071438eb11dd620315cfece159cb8f8638c105a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b9968e1d3245e83dfe5c1e433a7df88decffb1701d1cc2ffbb661898781ca49
MD5 75f7a1acdb611dbb93626f8f934256bb
BLAKE2b-256 ee8dd9df0de6dbf07e8b3b5ab5384c9d7a25d4e57b18c096fb8462cabddd13cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 01144c948ff137929cd82f3fb9f6901e70c5788111423f7307766d3748772f93
MD5 e81fe01cc8c126f4fd84771ef021bd05
BLAKE2b-256 81a32fa05606acc03fab4da108103abcc95c2964153d2d343ddcbd788cf55a07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d7beba85429071da727865d367860dd5753ba796dce4b93c729152b6bf815d9
MD5 b32ffa4648348b72a81f6744f1487e38
BLAKE2b-256 ca404224cd4b504ceb7137d1efee2ffcf41bd320ab619dcf0f451f5cdcd01c73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 096be1bd705f4c76450b8669fa74b5977ede9245c218f798fac720113fc83736
MD5 76f2762b61c22859d2e7e65e6a4fd7aa
BLAKE2b-256 eecf703fbc0c2bc137bb58db68203a8d494f2bc6aa75b090e5126c5ced27e850

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e9fe4bb80be884e81e1a7c2795853c2c66f85e08c53a741087af208b0c4da42
MD5 0565b24ee2df3c1166fd1e73f501b246
BLAKE2b-256 9d1e0617000c71a2caaf206328ffe44b254655ae358240c2fcb9ca3980e1a25f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 065d96cc8136254d062da200236caef99b27b46da66ccb8e244775054f538abc
MD5 658b3dc5966c207bc21730add568e8c8
BLAKE2b-256 1fcc6a9a72e155a6f297269a1fcc90dea97f1206b3beb8a1c6d19c4e2a94f91f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf0b80f22e95a970cefab40996a10e7e6fc8294b1d825ce682cf25f046f5f8aa
MD5 26f2c1ecafab24f17ee170ab46343040
BLAKE2b-256 8262b0e5705397426f548f9874295b491a6d52a84d773c07abcb52438206f4d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.8.0-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.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e29381a87065b7ce5b0bdff74bc95a61eedd4e219157785f04717c014cf30e90
MD5 069ee6746914533c32f0fba2606e570a
BLAKE2b-256 7976ac9fb70fba841986d88c902ba245b51b8b715375aa679cd09e9df0c70d68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.8.0-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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d7e16d41a09bba2d3572304dcbc99803361ad33c132af462f3f346b608f6e019
MD5 594367fe23475b71238f70844eb1d295
BLAKE2b-256 c446f1129bdfd04deafec6ca4e27297e35c8fdb1a13963fede1659f40194da0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2bc7e8dcc62cf3719fbe4bf6f202033b06052b269589ae7bb311a68381a9b92c
MD5 bb2e3251b5c33d1fb37a2d1b61599807
BLAKE2b-256 68fb5e1dc5a65d8590bd67b6ee3b5025481dc619f209164b386cba2e96d7eec4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc66514417b6d20a54a09830439939a8698a0c271833f3e6f93bab2cc505dd4f
MD5 d46909710f21b131e1a168758c334073
BLAKE2b-256 86b1107b6e41fc5e3138f32d747ba2da24539b9f454e021ce4aae8cdae0f5257

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3e5f567903e0ebe95d5775cf885087c5ce8fc8561822d7ada92046b7092dc0d
MD5 7ba235a1cc712ef9f5c97fa5553286c6
BLAKE2b-256 ff4f8407a38b9241ffab0664c599dacf0f3c914e4c964140f334128b66679956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 40662628e76939c80d4b8e397e6b6b445c60a9b69148b08e153e8fd41e10a353
MD5 7d32e364f1737383cdfe0fa8e251939f
BLAKE2b-256 c58e78ce4dc5f4af90dcc2f65e24a51e0ae8b53e92767000af957e6c7340c5e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.8.0-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.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 51083d4f4452ae1c7c82df046bc4791d3ec5da290f1b47d2ff7e3228a7156bfa
MD5 44d320f79bb958320fecf39d1dd20fc0
BLAKE2b-256 cafd450152ac39b1ba830695e07e71004b1865bfb6d04cb1a2832460af63be6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.8.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 642b1ca08d8755aa9809f8a6312fa2c6ca2065326afcaa0b88872ff2b09a30e7
MD5 1a395ea3d11a75752e3ffae660f0cdd3
BLAKE2b-256 899605930cfd48449a2f687fa9cc9646423ef1bf314bf7808292ee50a4981ef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff6fd03ca800ed63273dcc64c7abc2316e83ce1293e07ce41153b544eed57504
MD5 2b7f12770a87934551270c37ff31e62b
BLAKE2b-256 654ca03be89a4c47995abf50557f3e040e385970dcb77fc306f9ef7ae72d3b68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62b0a15cd1048c01fa11c0ca41463163fbccc88097a151a3cf4c4e78bb229925
MD5 67b9391711f0da209cc424f4442e64cf
BLAKE2b-256 36fbe184b17d9d50f67254bbd0405575f0be101fe9bc294e759fb1a83475db67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c744035d124c79fc89179de2364f26016db8a727c5c0ef47e1a787bac10c84e
MD5 1febafada150dd37d507a874a24ca429
BLAKE2b-256 84bd9fcf777b78b25c2af98780ab88191ab3e7f4aa54deaccbbdc734c0d4cf3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d82b632839de6fd4e79c7964a709114f843f06696b96fb9d584b182f6cd118b1
MD5 be2aa22eb9c0203db4f4ce0f9b1d8dc3
BLAKE2b-256 c3c2717d37c207c3cdc833228c3de8267fa080a611af9e7ae5d1f4aabefd3d76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.8.0-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.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 75a5d488f3caa0bba354cbdbf2ed8e6e4c69b377110cd3c73fb1359a8ef3e39d
MD5 1418076d505c35e3226f193caa07ec29
BLAKE2b-256 11f223b9cff80973862fe9a5f1fc7149f61926aaa03572397c22ff427f8bf907

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.8.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5509aaddcd9196f8e2bff57f68f27f0c45deab146b0a14c29a5e04a817cff49c
MD5 d72120e17f8304ab434d73d4c922bd5a
BLAKE2b-256 e179b6ab3a9d376128c7c20df1ea24d6731f1056415d85acecfa017476dc82de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d1706c0a3b5bb7f78c925134ee45f1c77a4604daccc8b28722a5c7ac96f9ec3
MD5 c872167c7f102355ba195d3a8a3656f1
BLAKE2b-256 3ba2a1d0f8a92cc9b78252235805825b2b6cf75c83462f2ef539de7d857ee69e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b83398762217062fed5620bbca458f79cdf3712aa203ca8410db031806b3ff5d
MD5 502d731394f0a15d12c8195e15a33cbd
BLAKE2b-256 5ed25a008e707263f2d9583cf19384b20c414bc7d7c6e4296b15f8085bdf111e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7badad0115b723bc9b4cfee7d1274c0d9bb2b393402f75247f0507101ae72e0
MD5 0332020411310b5f66bb6e2bc461b178
BLAKE2b-256 d51be8eb659ac595394d1f17082624479a885f9de2f8de997e3584d12d33d399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7dd965956b6b3258b7b34b4b803c6e7393fe360f8a09f165f0c45a474b899685
MD5 25218e62bbfeee000495aeee9ec35121
BLAKE2b-256 a564e16ad6346e46bfe8a81aadf014d18b69af9f8d83d36339b770e7ca01291c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 78fab06d87509f8fc11959d7b465044cc7311a1df7841d3608cb006c113fb2ab
MD5 81d44d6bedf423424b642f1230b674b8
BLAKE2b-256 744d2ab0726dba483a6a467e55b8f8fa5d374b4637099cf5dd4a0461d3d42030

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.8.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8ee4278c15759f4ce713515b891954db1a0d7afde85970f37fe772936f687b1a
MD5 caae6802ab7cd613b8567cca2234e63c
BLAKE2b-256 7273c322a926798444178606dfd3c9c288cf714904cbf62c02f4a0b3b4d95fa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f30d7257d930b1ca2d35fe134d8be35188cb29a864903709273195f6fa96ecd7
MD5 b8306223f38a660544b8fb8b1b996f46
BLAKE2b-256 a26e6a6ed82d9114d2354a9434ec666f6af3a1a643b25b59d93d896dc4ca46c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad943c2454719941d9816874e2bc0b0a23a104fd711301c5fe3abfe76102d0ab
MD5 223c0519bdd7a0fbf0e47795ee8ae17f
BLAKE2b-256 955ec1b66168947d8ccc3d5aec6cae9b3d3f8cb03be605b5848f7b65f61e90b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fc73209d158aadb41b119b49b87c3f6e08bb36a34b36f79de597ff9662b5493
MD5 1abc20511f5c3f6d318e1319cb8ba634
BLAKE2b-256 5e779b261278923c53a1f08457827345b57d6c5fab327280a6132a2cff9ea580

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 80818149ff57bb8905635dd9bd590a9a1a1f732566f8e87f5188d096bb1a4387
MD5 d7cf803e9b56640e0db5332c6403c225
BLAKE2b-256 0b711f022462311d70467481d04c522aafb1bc3a435fb0a64e09276676457d85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.8.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9ff6f141ba4521e6e717325a9fc2e03aa5280a778faf65ac90a5212ef626d8c1
MD5 6ac68f114d833766a19e386bfa5293d9
BLAKE2b-256 bca3de27f58c01444dcb714184d54a9819290531fbc52328aebf776934a9768e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2adfcc67658cd91213936086aa21c03a4c71c7711cbc7962644300b5a9c57489
MD5 aae4323e64bcb728446b8125adc75517
BLAKE2b-256 99afb3d6a68331a605b932afa084773b93f8bc8558d25119b7804fec9b8ce516

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.8.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b63f3dcf3eb87224f1bb1e3d3f3b04ca6cbab320268d26a25350e85c765fd958
MD5 08b46f89d2dc9a41c291ee96b02da746
BLAKE2b-256 896c72ad735a09a4d16287e956d82056131b9e3fc89efb9ad21fd1dcd5ae063d

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