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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

liteparse-2.2.1-cp315-cp315t-manylinux_2_28_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

liteparse-2.2.1-cp315-cp315-manylinux_2_28_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

liteparse-2.2.1-cp314-cp314t-manylinux_2_28_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

liteparse-2.2.1-cp314-cp314-win_arm64.whl (7.7 MB view details)

Uploaded CPython 3.14Windows ARM64

liteparse-2.2.1-cp314-cp314-win_amd64.whl (8.1 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

liteparse-2.2.1-cp314-cp314-manylinux_2_28_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

liteparse-2.2.1-cp313-cp313-win_arm64.whl (7.7 MB view details)

Uploaded CPython 3.13Windows ARM64

liteparse-2.2.1-cp313-cp313-win_amd64.whl (8.1 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

liteparse-2.2.1-cp313-cp313-manylinux_2_28_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

liteparse-2.2.1-cp312-cp312-win_arm64.whl (7.7 MB view details)

Uploaded CPython 3.12Windows ARM64

liteparse-2.2.1-cp312-cp312-win_amd64.whl (8.1 MB view details)

Uploaded CPython 3.12Windows x86-64

liteparse-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (12.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

liteparse-2.2.1-cp312-cp312-manylinux_2_28_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

liteparse-2.2.1-cp311-cp311-win_amd64.whl (8.1 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

liteparse-2.2.1-cp311-cp311-manylinux_2_28_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

liteparse-2.2.1-cp310-cp310-win_amd64.whl (8.1 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

liteparse-2.2.1-cp310-cp310-manylinux_2_28_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.2.1.tar.gz
Algorithm Hash digest
SHA256 db2585197517416c127b16626c4f1174891df47bf5ab560d139a3b3d4346aefc
MD5 6734ef41f92d077534b9929b7ce64c15
BLAKE2b-256 80686fc84a12135761a43d93ea11ecd8e40c4ac092903a94b73d4d6f9a39e802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92c23a894353335d7fd4feeec1143cefbbca2ffc5ec0fac0003ae28d28316545
MD5 488f73965b0da4efbe4b2527e35ecb2a
BLAKE2b-256 413a4c237c6ec4cfb07030a8f09baa314780be77c6c6afb4d7637853df15097e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 10364e47aa7c9d87b0a200628fad0cd0d93b1b92f8762d2687a947796d433976
MD5 6fad1a35058fd9721049ab252bad8951
BLAKE2b-256 d355958117fbd25c93295c392a5b751e7e6cabede81ea274777dc7438b987df6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e1d4b36056a7a99b9a3f01bc040dd1993b7fb317f12d2f2bd0575842208e9f1e
MD5 51facc717387d73c1cb38cb47d63b9e4
BLAKE2b-256 07be26a4966123d073543f52643d8f4ee38deaf3bc7233d12308c4c77684f19d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4fb2fa6937fa9f6441f96b04aa8406ba1616dc72057a6d36589dc78899794f9a
MD5 6cdc051b368427709b2381ca0b2516fd
BLAKE2b-256 822166f36c1686841c3959173d839686474b1c7e20b14eaaec4cfd00eaf0124c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8d0d3c0c652c0df78be09e18bf576c2948b2772cb1dd4ae281820b4df19211e
MD5 3ea2f7888fbae007a3e2b7434086db7d
BLAKE2b-256 e96de5762e309974f3056c92593a72d744dc8cde60459a8a89eb27f456f4d809

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e7586a5a4d7c0d35c52ff70bef8fece09fcc8a4e99b24a1590dd9b4e527f75f
MD5 7b22ae09423d085edfdb6fb9359e3f4d
BLAKE2b-256 bc11e0db4740f23165264b9b0268c3b476fa2141973d17ba5d1f1d2fdbd18c5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e390da9f1c520a82dbcc30578e695cd796fb473af305f01bc824e826cb548779
MD5 42f7549f382078595ee5b43d2590019d
BLAKE2b-256 d53a96f63f917d1fbcf0cda94e4a1f4550d77adb5e8c08d6ba6f2b707cf46ee4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef4b75c9433fc34e59724d9378bad93374ee40b408621d0b7411d44115582bf0
MD5 d3cbea08fb70bd02341ea396945476b1
BLAKE2b-256 80911b5f69a0f296e94e9af7606ecae4740efe893ebe10372272443ada5f365c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.2.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 7.7 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.2.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 dd650df0b3fe9190172c34119a8b633f688d9b48b7ad52231ac871689b2a6fe7
MD5 cc16ebc1afa8d854f2dab8639333d3e6
BLAKE2b-256 ef52bdbc8097318cc6eb3cfccb3c058e0b8718c9d86b8db8b787c15fa4b692ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 8.1 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.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b029faaf3afb4fd66c9a3ff2f84c01d13d90eb433bb92f8edc2263df25a3b9d0
MD5 fb1c690429b93671013e216b1350db79
BLAKE2b-256 f02e3373010cb3849090df5e7175b37cee69cfdf984c621d28b8b5e7e841d15a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 16779cbf0cd926494f4ba48ddfa06b659efa84621af59359280cbf5058f1bad0
MD5 4ad5ec8dc795f3bfe33009af57da8c56
BLAKE2b-256 9ea5f85f4979a87add483e0b41d9ef8c7bee4dca602614d6d929313b180a3a9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d65a09e20f372311ecb2999d622bb344fc5d73727352c24e0628114e3b6affec
MD5 4d003cc9648b17b653c4053416db1a78
BLAKE2b-256 38b6823f4bac37cdf61309b93e208a6b0f7bacf813a83cdecd7f7ec75d26d057

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ef9b2a4e9a883f78576cb03036054385735f69b34433bd2a30236ec96b696b5
MD5 3ad8ad58a342bcbcae5fd4eeda855226
BLAKE2b-256 f2a908ec6abbee80fdaea07794293de3fb34d849c89125210ebea87d2d35fe49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a9dca333b26d27d7526e718920e6f1ce918b9550b913581c996eaad87d87be4
MD5 2fad48e896082955c40f88231f583eea
BLAKE2b-256 72be4aadb466753f0d2a76273f03b40327cdf849a0b0e6e0b0cdc33bbb43f794

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.2.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 7.7 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.2.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 89399417a0d4ef05604b2411c2f6f0f859e9bc8be0116988e67210e4d412c777
MD5 60b7cb54a97dc773e0ba1744e7cb1ea2
BLAKE2b-256 cb44b40ed27648cb57952fc61a77f7f4a019b91dec09b1b75aa34104fae0f267

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 8.1 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.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 146f28f978f0a9c9148b92587b3fc9d4266baa61a525ebccf3818f0751978c4f
MD5 59dd2b0aa786c0a620d0be0616dad4cd
BLAKE2b-256 5f6da194c324117fa21d42f5e92d8175c353d15e4a6387d321aca4075e1f03e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 07c49e2e3f3b51017f84392f2b36e278ebcf773dccf0d19d76153a87b5a7c1c8
MD5 20dc9f3831a5c9b3f404f4a52cc97210
BLAKE2b-256 f08d009bf3513edacc8c8dc1bfd351fb094c17796c1a6ddc6b14728f5bb100b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ab6f32f188a92209e91413fe8f61486ed899b7b9545912b1abb2403efe4d9b6
MD5 39ac2495e3c0150ddc61184abcd46017
BLAKE2b-256 ea2977b3a5a0589ad7cf276ede5c6af5bca81e0f59400a798226dd3fea2a7307

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a481d32be5e3fa6d1b1a5c1f725b83dd03d2ddb658671b8e8eec083ba38e226f
MD5 38d7bca7c21e66927606aee704cdea79
BLAKE2b-256 49145a91e7c839ffad0b9b8e365263356363e6637c750d456309bdf96b4ce362

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5592215ffcfd2d8e65de56533a00d31da3d93d3c32b113f5fa156d4019bd83eb
MD5 46a8194e25b985c7c1f77515f646986d
BLAKE2b-256 435e25c381782f528bd44c589561d5537010f364074cd0f55bf877b8c196f50e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.2.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 7.7 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.2.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a4bb48bf187e0d28c2e3d19fde089497c558e45f66f48429ca5762183f51d5fd
MD5 821ebee4b1886dfbd53f404990a7906d
BLAKE2b-256 b3f9374802940d8012c331de46d74f1ba26c3a881de050f5ef1d013f35a452cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 8.1 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.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3b4a20120af28b6cfccf18c7d8d820b1b8bf8cf8e637f87a86625d57409f4370
MD5 7727de94108f441a44b047860e9e4156
BLAKE2b-256 34f497775c1af0b5e873daf647f511f267a5308129bd4e4e2cbb918d2e3bffb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61ce71bb35d5832033b25442ea9698f055157628b1ad44d2b849f9bfc28a1901
MD5 e0aa0abcb34f56723f4e8fe4198ef4fc
BLAKE2b-256 91792f8b856f6c725cdff6a7bf5730feab1080e3190b33bacdc312b49254a328

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dadcdf87df8a711214fd25f3c17b0dc3c3f0caf01738417e10d02b01f0953cc5
MD5 bbc7c2507ee96f31e2cc9890e90952d4
BLAKE2b-256 a217fcc5b685745932ff0c9d24ad05178341f0c1503a878e2811047a0fe252a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d4f68dc9002c66efd82bfa836cb7072e84445a23acdf0c4421c7378bf2d140d0
MD5 33d1fe7192e3c3d5e36f0a346adc5caa
BLAKE2b-256 f4e6bbe51ff7ec1dac02badf0f48059f2ebc6f555b4536aa58e028256d72db3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 830f9e7569b769cd24a209b687ddacab8bf91c9ec6af89fbe7776f0fb2dac585
MD5 5b14c5140135eccbdaa7982c98b5d086
BLAKE2b-256 ab1a78e4ab9c03d0f419cf788a17d30286645dcc5f74ee8e96f0b1c9c9e967d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f55eb99141484e9e8b57f24cbb5241b4ef9b4fc6e1e189f73ac19d070eae5c9
MD5 77aae09ce67afaf8e84f72b5c078f146
BLAKE2b-256 97790b136a677223fcf3f324b56f4686b9111be6b98d0102075cb4128af7818b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 8.1 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.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ca4a9d91414c0071d0845f3ae4ad3c0fb059d0c9af2a5a9b2d1ccd88cb7808da
MD5 77fa0581abe53a105ff999ebee144b17
BLAKE2b-256 9ba548c5f4eec5cb2838d9f21a93850410242b90a198e182bcfce4e0e8f63a4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b4abdedc61376aee4a3fc3ea6cef37f8a5a4a273d2f7d8e30617855e9ed6ffee
MD5 7b734c023a1148f042530de43f9ee940
BLAKE2b-256 b2f0612fee5dfda1e16c2e0bafbebca3faf65e3783aedbe3e8ed1595947ed811

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb868ee30ddfbc4912b8f98ad9a5081aac81ad740e3b18ef2d5bd69d109271c6
MD5 70ab11d5f621020b8e7f8849426650f2
BLAKE2b-256 307770b77732a144836c38d777d65cb79290a6a51d04012800b5ee3c1094c01e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2bb146dfa1e5aadb219f03db58d0d50962bb2d2cdf96c54143e1643a81e0b722
MD5 8631cce3a55eb911d6510f3709210103
BLAKE2b-256 f1ecdc0e377510e46ab3ae32d575296ba2e3efbb11f16dece6cd241bad87b662

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a11064c60ea8769d5b0bd817351c188360b21bc334dc7a835f3e083d6c274475
MD5 560a8ca83098682e7331dff801a1f299
BLAKE2b-256 c32e3f78bda92691207a469777da14812e58e35e18e1061f42a208e67664d053

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 8.1 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.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d45314e3e06f8b113a7e01b65b87e8cd12fe73e12d227d75e8d5e41d95b4b48d
MD5 4177e824af6050fc3594bae784d43c52
BLAKE2b-256 b9a08787aab22adc35fb3584503a802cd2e3bedfb4ca47dea0e09b7e0729758b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82dc99c8abb55f6c1ac9504e235a023865f508c42cc24db7f16d281db83b07ea
MD5 b985ced67c665c839fccd5e49d949546
BLAKE2b-256 e7af0ee34e02a531103e1fb7d963903c93d21b6559e607c0518fbabd3c9f6cc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9acaa1cc71d6b73d27959c7f5343957054d53055370e2319e27c75d957ce2a71
MD5 7a6d2d474b3fb0bb7c782ec15cac971c
BLAKE2b-256 c8f32ad03225d22cffdda17bdb2d9be004a9b54cdeda4826f126a201b3ff2357

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