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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

liteparse-2.7.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (9.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

liteparse-2.7.0-cp314-cp314-macosx_10_12_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

liteparse-2.7.0-cp313-cp313-macosx_10_12_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

liteparse-2.7.0-cp312-cp312-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

liteparse-2.7.0-cp312-cp312-macosx_10_12_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

liteparse-2.7.0-cp311-cp311-manylinux_2_28_aarch64.whl (9.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

liteparse-2.7.0-cp311-cp311-macosx_10_12_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

liteparse-2.7.0-cp310-cp310-manylinux_2_28_aarch64.whl (9.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

File details

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

File metadata

  • Download URL: liteparse-2.7.0.tar.gz
  • Upload date:
  • Size: 352.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.7.0.tar.gz
Algorithm Hash digest
SHA256 6f27705d3a115327268c2945780fff94a3d6f28a214ad3bda1326f4f9d6aa28a
MD5 c216f35c480cb836fa135c890171e129
BLAKE2b-256 5e022bc8e160faf6ea3017b8e5c073507215865692b2b811ac8afc49de42be1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 af4d8f78dc3b5c122a3293011ed48362b459e3e3b389dcd43482ec15d9049623
MD5 5e68366dbdcf5652425d007042e0bdd3
BLAKE2b-256 1d3b21716ca22ed53f93383366accca8868ec09864bb929a3edec618ab8dd969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbf8e58f1e462fcd02ac0201718aa0e26dc09fb520af5004abbdf5079b05f98f
MD5 7da7a075664c0baa0e699cbef5d42819
BLAKE2b-256 1bf84a336f84dffd1b8824f50eea5324ed1d3bef3d85611598928f04466e3cdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02d52a0d7af959e0eea8b498b979b73ae21697b2fdea97b0aaf7f6d135e64486
MD5 1908a53eb9bd0972b890c61ca29c0b2a
BLAKE2b-256 edcff768550903a1bf318bcb8a99c331248c3cf837673800a18420331b0b4f2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 406b365d2916d9db08409067076d65a3ea92e0a85b56119019b5418e6d9d96aa
MD5 4a5615139afa305cdb5af1c290985451
BLAKE2b-256 0b2b738366fd1d8ed34d784a2b43e362783deedccb324f6d22ce0f33612f01e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64b638b9870e5f3e8c81fe1dd965d8f7e97660c1ec5b2fcf2dbf7e65928f1806
MD5 3a7c612a375b0965939ad63a61385da7
BLAKE2b-256 282c64c277eceeee574ca89d8f4509a405a111becba5c30b5503ca8c2d4046c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 417f19ff76235c4094b0f147266b9161dc798f66705fcea215c7dd07873b17c6
MD5 6ab96682eb1016f9738e62a9927f4728
BLAKE2b-256 3d8f02e4be538cfbd10ac5503222098ca9489b75e7273ae550abd1d713c8338a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 54176d6c09fd631406f04b26dbac3b225e55e49807703904e904b885cf9992b6
MD5 70ff6a55f6d0c9bbd1677e1dc8aeee3a
BLAKE2b-256 0d267c06ad164b908edf67d331e68f82168d578f055f3712beb8720be342d2b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e9019697bc804da2f8ccf82d01c84389d51fd2b11c2257da87438fdca69aea7
MD5 fd281483fca1f1cef109c05312c6bf9b
BLAKE2b-256 c4d0405d4ac893b32fce53783015e25c9af48a6d7ef64ee9b708e51f3268d755

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.7.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 590b98a54b51188c9c441c5760784a8d08debd0e13f16d4d77f0087b8dc75089
MD5 9d19dee49c301624289096ab8fd0a3c1
BLAKE2b-256 ca3142f31deb6dff55812ea0afd47926c11778674ca1f1466ad92c1828afc103

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b1a56264cf00da92cebc54364cc3c469bfb7a35fae67b36be539f12428ea0b01
MD5 6682d872ae8ae3a27341fe5876be5ee3
BLAKE2b-256 8e8ae727def36dc5c339bd19d094330706aff1627389e9bb95fdcfc940e47993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a7f9b8d38b59d07ee6b901dd0d0a56ffdbdee3b8373a09d6edb69cd893e564d
MD5 331aebd3f1ba57b3465d366d779e134a
BLAKE2b-256 97005a6ff819299b40915e8b071dbb038c78535404f58328f4a479721d372554

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2aafbeac624813ec047ca3e37838bf792811a9edd1e721806d7ab34e47662fa5
MD5 3f6da81b0dbfe095b1a5ecd626a85542
BLAKE2b-256 054585848d3b5fb66019390a4bfc802e2b244a1b61a45350a2a547d98774c40b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e41389b14b7de0e3d8cae85415053f76a6846397db42e6b6793844744da386d3
MD5 d6b1e0353e85f42e63a50b597bd6c60e
BLAKE2b-256 d1c3118fe1190c8d2a6f7a964f2d1f352f2eccf90aaddd66fb9d2b3587da2c1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5dfc0f0b9f209c08ca31a288b44890098ecef2af34577d08ec2ffc87d66b52e2
MD5 762fe01bfcfb0a67af2d08fa8657616e
BLAKE2b-256 61d489d026e450f89159210e4e7df45800727f8205f874033b85604b92ba3517

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.7.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5ac584c61c58cc494d0ded2da27dd7b4e36f34fa4106f410732237a4378ebbdb
MD5 82a55b3214f9fbf2ef438fb8d8c34b99
BLAKE2b-256 d86bb75a5c032c085d5dce9276bc1151195f7ec25c757a7089ed175bc2479f33

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3325dfec309a53d660736f4b358de4ed3bda9b6b1524b0221ca6e8f1abab261e
MD5 fdae7cbc5be8b2b796842663f993705f
BLAKE2b-256 efb689fe342439fbae274b4ce17865dd2f56f21b2e1e1974d8d15f0e7a2975f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 49d153c706e08ea255f41d3de37ccb0d9dc73593d2cb4df9b5758dd1bdd7bf0c
MD5 863f0d0b178c186e08f3f9889ae3b54d
BLAKE2b-256 cbf13855725204706984abe6b3f5afb0d7ba4ab6c8d64922c189ff16c0d6d3b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f96907b41c641c49f6a478edec640a9713aba43da3ef665f1290050dd5082b9
MD5 8ca279b92175aae0a41cd24b4c30d861
BLAKE2b-256 28ee3ee8d703a3d0145a1eea06dfbee973259698ed6115338ac9f2723b96e7b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 095e00b4ae59594364f200425b409432f6341a6d5764175e35f486e1c18ea706
MD5 58c854bc1698edc587ac297cef435e03
BLAKE2b-256 8d928e8f74772ec22b390dbdc9ed54e9044a0c86475cbe47147f1af4542e7bdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6f3b700186608a7d7b32f848720216ee81ae78150987d89f0ba42a5c58b4131d
MD5 3c8a2198ae10ca868e1a039f043f666d
BLAKE2b-256 d678211d79356c1e84818638b6bfdc005f6feb30bf28f10660eae0a4ada323ae

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.7.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 562240fb899157e30403917dbda3de7954668d2148832bf0f1dca38d21b6d741
MD5 72a93e60cf3458672bb5c6a2d51ef126
BLAKE2b-256 0822c5111f546acd4c0fc410a92dace7575c5c6f549b87f03ad42de72db55b27

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 73cc76f47f6eed0c654d63a7455fdac4a21a8e4b06e36df66a3e892da87bae2a
MD5 7fc2940d1934da3d7c9902da07ad54fa
BLAKE2b-256 9ca0c82f2e7ad6e44d64db0214d8b3d8175d9a93d2fbe23c22371494db5163b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39c66b70e3a0e9453e62e8cc43f29373da3eb32d68e64ad721769efb2ffee6f6
MD5 9611aecdde81fb23e43cc9ed04d8902d
BLAKE2b-256 db5e2baabfa3014636c3ff01299168953f22a311bedc96488f18fac6b10e328c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0d65fb8a43086bdfcaf935c87eb928d019bca68b364df638b89abd98550b5378
MD5 22dde959707ead980e279c901d4d0bf4
BLAKE2b-256 265bf10687bb31970b2f01d725e82dcb7152b0c8b5963c91574a634d963108b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26a6fdc465201e68e6895f85455aa6e9dafde71d66d1f06537f890a62ffcb050
MD5 7a5a6ce9d8699d7da55ae390aec45628
BLAKE2b-256 a4b0c03045223e12884c670f44f2211e3e853d11e591d197b68ac61571ae57c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2614e291f9eec6e3410b7b247f0294f0d18be542dd4780a64c20db7cdf479a53
MD5 0d39faae642c0eafcf0b604a228ec9c7
BLAKE2b-256 2bf1a94db9ad46af840576eba8715ac7dbcaf6b7a03fcb0d8fa9ee8c24a0d302

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a412ad05001c8b0c2a3e13c4c29625d3e774ff99cb00bfce71a8b486fb789a0b
MD5 718c21ff608830d0bc01a88bc92ed714
BLAKE2b-256 9f4037c27dc007787e42e6d898393cdb6e3e58f3521c3a4305ba4f35de14e2da

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7de5fc4b7fd6ac215fd032345a70f35f09476ad725fa960afa38cd1b255d8711
MD5 d4c97132d94bfaca29676c23ff9680d5
BLAKE2b-256 7b35497b5e840aef1866eab3dfd62d3e17098019c833891f647ce74cf72f14d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 abb2f36f744f18af2bb14da591c66361acea5331f433f45a065b6e690258886a
MD5 33e2f30bd8eb3b7e66ba3d4ab7c44ab7
BLAKE2b-256 f4480fbe0570829f243f1c32d7e55a6d349d1c73a170d5d72b4e1303bb4edec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15c48950075a7496f74856092a38e02409c1c4b99da98f9160cade4f28751764
MD5 e2ede9ec4e31e4f5852cd249039f5929
BLAKE2b-256 7d96b0e005303e7635da4ab9b00919568bb3c42f3c77bd847cd32e061534ea4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0e8c1addfa2e1ad46c6ab9b19c0613dcba5bf3cc5cb02e4a1b20acdaf4fed93
MD5 e93abc10101086fc0401954a7d4d2dc2
BLAKE2b-256 8e648ff4d0c40e14c970fe4df8cae39c3fb9a06b22a4e181fada180796f3e02e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cdc6233dc66b89b7d8b93d7bd1a4c2c970f052b30767235eedbd906f788c7b0f
MD5 f48ccf5b9425fee2c7e8ab7f47bcf6c2
BLAKE2b-256 9d5ef7713e7e38a4b6c3d66b2099c3c45dc218b4eab85f4ecead96f39ad6a457

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1f2e67f16dca195a12e6d626c0106a773a948f1c75424c2e546dbbfb5620bb1a
MD5 06d6c48179746fd97183c43980959cf2
BLAKE2b-256 db5fefb7aba567605ea47766ad06156dd5d0ded77129f89843ef09a5e7fbfa26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a16cb866df717a783dc214654e63666a53b92eec2e6b2b5478caebb2e38ec0fa
MD5 e175ac5a8b81c3cd34f4f76a41f23e7b
BLAKE2b-256 88b6c55e4ef4e46c3681eb4e222652651614e242f243201d04c059054f4d689e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.7.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8faf5c17a25e509e94db0c453114c9c21912bc49dc3d3e705b0797545e9302ca
MD5 036cf3aabf669b76797bf4b46480dbd2
BLAKE2b-256 685b9a8d8917d2bc57c7cf9d939f26d694380a831c8e13fedc5a1cd6f4830200

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