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.4.1.tar.gz (330.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.4.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (9.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

liteparse-2.4.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.4.1-cp312-cp312-manylinux_2_28_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

liteparse-2.4.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.4.1.tar.gz.

File metadata

  • Download URL: liteparse-2.4.1.tar.gz
  • Upload date:
  • Size: 330.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.4.1.tar.gz
Algorithm Hash digest
SHA256 56910e6364c44d1d0d2ed88cdbd31ee7d5c3cf452a8785bcea515d7409090672
MD5 9fdfbb3ed2bea9773ace10cfb83ea301
BLAKE2b-256 aea23a352c2e70a57e6154285a232b8cfcdc62cd4e08bd6aedb69c16e7463b86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f9b31a21d1919e5e34b2a8e9aeef8eed8b90ba62bb53dd2b4588c7156cbe0338
MD5 a49947b3148cdbaf4c600cf9e021ecfb
BLAKE2b-256 3f6d659ccaf52f451a254755bfc6e8880fbdae5ffb9b8a8e37872eb97337dddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 811b93609007089bcdf7753f1fa5077aa6d2dc4e96481a671384e5da43228676
MD5 8fd48a057a6d90a66e8781693588dbc7
BLAKE2b-256 086e3b565a80d11e358e4d211559045adf6d909ac112d84c54f07e4520e6ee3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3408b6b254194e8f1b4e80014c7738439d3e371ab7324afd9111183a7c2717d0
MD5 97604ed476c4b6fddacd06fac15e7a97
BLAKE2b-256 d33b20f41c357307cdd7cd8010dd96ec3af00b7f766650297938baeb1c957021

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f8201a33dee0effabf0a1d3514dd4cd465e2db18e4a535c91ffd018674c23b7
MD5 72a593ab368b6e4358ffe8cec082fa0c
BLAKE2b-256 ac124ec1f046ce08896b6613d346d7957aa2b3de85c596272dad4cdf2d6e345f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5549a7e74c76014b6a288ca2bc7371c468fb5c07fe4e205cb0d4675cce86371c
MD5 9d0d1b907c6a2095a2928b9785937cbc
BLAKE2b-256 df2782bf0163d806483d0b797734207ea3e4d8fda73fffcdf3b0a1a55e43d2bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3b06dec3b0bd1d1db5d7b276ada3f140d1092ec60960d8c073829e64ebe74a3f
MD5 93906da77ee7712e3d719d16d4431d0a
BLAKE2b-256 9e9af2dc37cae805c33fa1b84d504cfaaa011b4d95c6e24d59d83645a8f1fac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf9025d51db915f1c0c8870cd92e1c11e7b3aadbeee75d4188484154cf9085e2
MD5 b4a8bae20ac22b2025ec1a188136e29b
BLAKE2b-256 ed963875cfb5a1f27bf8aff2d071d685ae3129ecc273bcc5248b131abfb6ca4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4bd9ddc870d66dc0bff7cdfdda4a5f7c73104cb729688c04f7ce33fdc25eee86
MD5 3e7f6bbd943b5f603541f3ff53dd97fc
BLAKE2b-256 338cb60d6621beb8c67e7ce02a82610e689e0bcb177bfd122b379bcc34e72abb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.4.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.4.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2399b010d61215eb2aaa23d0d62a941252b0c905322618b318574f627f1d3c0a
MD5 3dbd510259731871df71bc0a53c2a5db
BLAKE2b-256 c96a7cf7385b9bfe8769c0c04b22c6a71b5e332640495e25076736e690997c5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.4.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.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 efdbcb5f115e1a1fefa71e4bc0d8d2bb38e88e5552828d434223e93730ca1883
MD5 81d511742f941517d8e0d1b6fe8d5351
BLAKE2b-256 5ac524ac2ec03b56b36ab458a91b3de559c7d7c1f53e176ed34c4f6446423dfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5643e423f951e11982382440505038aba82560e3c86c327ec283bec056632cd3
MD5 073e0595aef9fb22bc6240ac6f5ef26b
BLAKE2b-256 fc97b7c4ef5b3081f8315b872b1087c368785c37a476bba714ac0e858c3a4ba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3965092e781e26e1bdfa3f76bf4dd2ddbbca9452d39a8c77af9a5606ebd90c1f
MD5 3af1f02e19c1443ae695bcfad1cbe27a
BLAKE2b-256 398288033dab4c29331e521bcb50891c1309e79c98078c1fee41d631180aabd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5000d08ec969cd98fac4dc732da9dde5811d2818fd98cd6ac387869d820e0fb
MD5 907602a284cf7f5609d743268a3f4a6e
BLAKE2b-256 aadf9bbb8d319a6ce6d2c791236effbe9645dab0708f7afb12e854daffe5a88e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d8e99d5bcd33562712af80f66a2a907f572859a591c6faaa48de097054fc358b
MD5 e4ca766e5f9328cba9bc3bcb51b34417
BLAKE2b-256 e36628c2bcd4106eb6eba7d32fa0ecc240945f5165df550802b6b889ee27a5f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.4.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.4.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 fe593a3bb0f554c67565063fdaecc7ed3f6df131b11391e85c1d9e675b2c3751
MD5 1755eea83e9738da43c93c7e901c2037
BLAKE2b-256 c01df1e3621b67466d9bebba2750e45386e5028fdeddf5458adeddf261097bf7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.4.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.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 baeca565687cdca1eecd96fccadacfea727878c7833808de67e928bcc48d83d6
MD5 b3332964b61502b900d6cd8477b3b150
BLAKE2b-256 19c767ec5b457e5ddb48cad92498cbac2c332e95ffa868f5042b315eb5ebe437

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d22caf80011e5ba85601838fd3a60eed0cd5176ccb0febdaf5cf37f107fb2af4
MD5 57b11e5724421e4e68472f300afbb989
BLAKE2b-256 a556b059a2ac1d86a65c5f25b6d805e8c94b6282a6451c049dd09f989805f70f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e2fba5fcaee599faca48b875f0530bf5e754764d0787f5e967fe6788b934fb5f
MD5 58f47b85912ed3b6de92076910e3d67d
BLAKE2b-256 32a297416f9a752ced01891ab9c29635a34f2e43502a3fb6e540dc7decd1b88f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d7709b90c4b03d1d70ee9d2e56dccc25b62bd9107ba98fe44e04624d6c56c21
MD5 be16edce22f35c4d83a8e380941d67a6
BLAKE2b-256 aeda0f3a8fb058d47078549c6774e581fa377ce711a47f885f7ecacec256dc5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2295df82ecf4c108d2a157a3fcfaf0f8c6b8c3eb644cc5807cb19f245fa2af61
MD5 b342931198e70a56eabcd54eb1108246
BLAKE2b-256 680d7390625b638cb183467c9e40713c7996b3fcb743666390a23fafc3a06ff0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.4.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.4.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cc6f1c2b3204c11c515383c47ed91f162635529ec78e31f1fab1dbaf85ad24e7
MD5 7d87da2386b1c5d052aca9cb5f6a49d3
BLAKE2b-256 d5951a0b7dc583b0e17082c27a21218c7cc792d24d9845b92de887035213db7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.4.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.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 13758970de052720b70856ddb89fc77ce8b23656a6b48d96d11aa46bf04915e6
MD5 9905c132f0608987bd4efb44b49ed953
BLAKE2b-256 13ae50eb20bad842a2fcc5e3062adfac903efc46d69030e207edacaa7f5906e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0df58420f3d50a2d418c0d79ed8df477f880278acb4943b90078d09e7e57d74
MD5 3422a21d8877a83fd30269d90f0e7972
BLAKE2b-256 4155825345264c639b507dd28cbd998b07626c6a182951561164e2225180106c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ab8cf08c27987b0f66bd7c126fecfaa5ac76305470cbcb31fcd47f90f5abb89
MD5 75a9c9909464324212a987b78d0c43a9
BLAKE2b-256 2eb69e36d38f4b8f800c3afd0efbf69d30d618eb07ff049469bd4b23caf57761

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 205c4b01ee9a0bf4a993dc8b154ff7a05a887934c982140c2759cd7d1ed6ca7f
MD5 daed94f0caebd3fe1b19b434978870c3
BLAKE2b-256 64d121ca2a7a944135c38f1ae5e7cdba41b406a830ff94c5501dd2d6d28a0876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb48bcd678367d227234a912f18a9ae730ad9e6ea1af1085ab030350d215ead9
MD5 671dc29c2a126aa31fcc3c593192a447
BLAKE2b-256 fb50f5394cd58fcaa3b51214c67d0e60eea286f15066fb12aead3b6d6cab1119

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5dc5c06de3acbf2182c7884bc74fc37eaaa6d208165b7e39f1b302e764250478
MD5 29487380e58c05787dd8a2aa7082087f
BLAKE2b-256 b7638615306c924ae029b0c02bf55ceef63f2ac5babe56d1eba30df2c9d6f818

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.4.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.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 496d64287ec43e5eba47b19183ae0847ed145c484c38f8b9a441ec1a7324c720
MD5 4fe5c9cdd896a4d31a4bb260f89e724d
BLAKE2b-256 1346840574e0877442c5fff2f6061f6b5778df627c47be3a05de56ffa439c374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 59507c2b8c37b5fd04310911e387d8d8debf93a99556a67783f6995fc2f6a5f1
MD5 7656d0c0f58eb9772e8192b0e0610f7d
BLAKE2b-256 143e6781befbec0faf2fbed1c7c8fc0cba8dd621ea1eb7e810a75d98bc7a72c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ddb30d6aab3845a04821c9f0644a022e4855994a03a6e234feb0c3da790c775e
MD5 88df978dcbc3fb047ac7660967ddd5ae
BLAKE2b-256 fe66c4eb21012fefee4d7e0c6074fa0ea2f774c120fddbeeadd65e4e16345a32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 632d01de5a1aca0ee94a3a5ec4d87f80ec59831324f2826180b48d4e817018b8
MD5 58baf68d610c910fa7062a8c5fd42c5e
BLAKE2b-256 9694442d684a7df062b44c280ede01ecc00865ed4bd4a56c7e60cd2a6e8c8a9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c131500d9439e6b6cddd0a65ed77a824725676d2ba8736a9c066180221674439
MD5 c6f74397054a5ddb83b638865f3996bb
BLAKE2b-256 e967dd0099bb28876803a8ca18a2a98627e85e765de48973127a0ecb797f0711

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.4.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.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c2fc5126b9f5a84b744afea0819e303030616b9fb50881713232f11ee048d065
MD5 25f14f72ad4bfc763ab2087b708896a0
BLAKE2b-256 2e0cca69629e7d109ddc01541d8f761ec852f730084f3964d5e60975779af9e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90426d8f8c68196e8ba22b0f57de19f898929949e88dce13740dcf7c0870ad9d
MD5 e8d420f465988dc073ef581697307da6
BLAKE2b-256 7e9b5696d4bc3df49eeff8670f03f4419c081fb59efadfa7f2b4254744e07e6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16e8b383d567d67a78dba812b8a7b9ff2a3af2c2e9246b1a0f680306750dfabf
MD5 af87feafde0b57d9f707e51473ff7ccb
BLAKE2b-256 bf47afac870c3eaf9da1a82edc37810aa30fa806d6e698954c9ee7cabd507d31

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