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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

liteparse-2.3.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.3.0-cp315-cp315-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

liteparse-2.3.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.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

liteparse-2.3.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.3.0-cp314-cp314-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

liteparse-2.3.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.3.0-cp313-cp313-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

liteparse-2.3.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.3.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.3.0-cp312-cp312-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

liteparse-2.3.0-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.3.0.tar.gz.

File metadata

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

File hashes

Hashes for liteparse-2.3.0.tar.gz
Algorithm Hash digest
SHA256 330caf6edbe4032594e6e7ea9fd980b14bc2f0f79d36be62c940390ff9a4aa34
MD5 47edec4f8ffff5907338b10bb04b4c6d
BLAKE2b-256 54bfc047fec67565479ea2138a351b980ab4006a6f417ac65f38220145426706

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f80e9efa9876a21a723d8cbb9467b41c21b9a563fadc15e5efc5258f45d6404e
MD5 f484dd1f4e8e4f2cebfa1cfeb2f911ee
BLAKE2b-256 f30e152354828da07dc4d49cea97a04ddb90bf45f183e9c6870124f7b4727421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04a8e20ca4b99d12f42ef02412345d2647095b59c7c06da4a179755e473fdbf7
MD5 e01baf565293949364bbba30e78467ce
BLAKE2b-256 6dada2f03273f54298b3265732dada657a8593346376ac398f760171e9e93002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9a237be3c25e37b9f7b80db5b40659f18674bff8a2636479bcaa2cfce5f8618
MD5 07672822f360c7ce7b4521e56e4359aa
BLAKE2b-256 a06a50b2e20c6c1e12a9da5dd8b6f9bdbff8738469b0d5412a18e31780794157

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b66e39886c968ddc03d631b2c953b9eb2a4fb7ad006cd277c7281ddc290aec8
MD5 005d618619749a82a9063e632725f6aa
BLAKE2b-256 0e687d03f89c91d1433f9795030350fb820135b45ea26e3e3ded90b505d21672

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a45f264a935deb9593af9abad2ac6318987cac709da14092515b231f07273a3
MD5 77b0022c71d0b5ad7bf56b847c24b5f5
BLAKE2b-256 237a966ac46abfba2d1777ec3003d870f845eb49441f5148191687bab5377f8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3547d257b153f2d9b79b0dd417d236ea17bdbecb2a5fe4852ea7cfd732ba8b3
MD5 1463f0a66ce432a4016f3c18d1d9a86a
BLAKE2b-256 f4f4d27ec2cedf6bbcbe20e3e63c2de5d9bb47c0446a8f0246bd2653918608bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a31432821197105d3ac9302b1b6cb55617a8db9ea5ae5c07598f8937764e42ab
MD5 2afab46c060946fe9d365004e59d58e5
BLAKE2b-256 7b74f061006476c8b1942d446cf87e8e25b9701f388516614236d94059bf44ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a77d3c6460f3f08ae8e98324c0ad5ab01ab4f3760987fc1997264eded805effd
MD5 c01f4d920438bb64d26aee9841146d90
BLAKE2b-256 04d099601e99840604cc7a634676382a3f9548b51aceb0ad047a784795e75892

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.3.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.12

File hashes

Hashes for liteparse-2.3.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d783a5157ee925ecd789944f22fad2b135cb141f7651d282bd54614b062d2fa6
MD5 78a108c3fad28e54f7486ab34c68604c
BLAKE2b-256 458eb6014948d5664dee7a8043f659a087ca807e2ac571f43e514b347180d060

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.3.0-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.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7541b7b4ec22606b8473ae8dba707d25a83e7a301d60541af7eba823effc0fb6
MD5 bba35ecea3d36902b5acfd592e0781d8
BLAKE2b-256 05df58a410dd602d25d976828cb95a27a904c97be5d7693e0fc07fbbb8c7a5f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 84b916a6b99c71192a7644eedd12de7fb8bfa245c465e3d3b35ae4a95538e9e1
MD5 7f5a0a1f5bcfc6d42df87b24cffc1d9f
BLAKE2b-256 9b6e228c25e984f10ff7764a80877feb8842c0a4fb0e55a7011ee08f78fb4950

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2021c52548df0dd96ab06628ee1580606ec495091071ca3739716b77643a4c7
MD5 809c7ca253b96f8597dc5f6d333aa9cd
BLAKE2b-256 34cb10321f13377fa5def77e7a50a068a09d49966cc0ccbcd7643dc436502427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b469bf2026da14df28a6640b21dc0514ffcbed8ef2b5690cbfdb67712ddd250e
MD5 268c005a476d2bfe30c2f51eeebcadec
BLAKE2b-256 ffc3643e17531db9da6c2dab975f2c2180ea5c0c632ae3a37dc30ef5f8c85964

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 356c3b138ea6f4d3b2f036191dfcc9893a8ddd1bf97d99fd2fd8b861378d8149
MD5 bb393c2c2a26c6e0a24edd77c88791cc
BLAKE2b-256 67b72471dee14e7902b71e4a11bc5802f863ea5c4b0c1e728300d2759e1bdab1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.3.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.12

File hashes

Hashes for liteparse-2.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f048b8dbc1db00027a971848a3807fd79dae5e5c7343ab40e3c6663dc482b354
MD5 1cf4415da492b3797e13d4f0b6f81778
BLAKE2b-256 a9973aaa1a43c86912febf335477c32d75b907c0601382d61605101195eca75f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.3.0-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.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e900a01278b449f65a09dcd3b3b7d4bc2ed7693ae9e99058acc466f9f13820bb
MD5 dc11f37b292bb62c02ee7e8fbbab804f
BLAKE2b-256 34de86c6a4a9c3fc20f55918ec609fbbfac4f101f8a1d49b9a4c165fcce975d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e3120f467d367b0728632220ca25561120785b9068aa419ea17f732795501776
MD5 bed7fa43fb51764f8fc77725963d7d24
BLAKE2b-256 c68e7c460732993b426269b2437994d3650b72e6d3b3fccf2c8f050bc2a46279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a366aac781e22c5ce580818e6a833de4a9597f7f2fe3d37a9099e079a85a80f
MD5 e77078898d5b2e5ccd5c8d00e707e5ed
BLAKE2b-256 cff5da7f52b8c0c4d8ee8f0b8a000712947d0633c92c0280a7cca65358abaf43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a138de4b83e9f3ff3869513faa8c029821601a4d78f3ee5cef55459bf70a1efc
MD5 5e9321d74d5b583cc17fa4fbc9074a6b
BLAKE2b-256 81753c0fd8cd80af4ebe5fa57afd78712abb05116f1cb04316dc023c893f1fb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 44b0cbdcae23d5535a22f8bb153e509eebe4c6582c45c2c390047681f184efa1
MD5 1e9d8f0b9a2e63e275594b3d1f00dc35
BLAKE2b-256 f564f873b5a37fbd7ab9078a963ec04f7511cc0416dc3454c1f8b278b1c6455a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.3.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.12

File hashes

Hashes for liteparse-2.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a84b49b3aa4bf23d9ec21df4683dcbab7ad233847c9d2d66321c8537a6a97837
MD5 6798d1a0fac49279c18f42a33850f0d4
BLAKE2b-256 8abc266e9d99370b785ed7629aa6a6eb33e0bbed5b21f4f5284dbbe04c6027b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.3.0-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.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4ad00803dc0858428f3370348d1b77cb5981fe1b17cac5460dffe203fbaafacb
MD5 e40f4b979755157d416a8f6ea3361897
BLAKE2b-256 01f4e213177055c4bc9e2c075ee3e15c0882a4e8a881b3a5023fd420e6082c8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f2116a105f1fb6c50c3acb4506e43734fe351ecf516f412be680cd633ac362e
MD5 5c1251fa5b477353db056478b30f08b2
BLAKE2b-256 85e0ce8db18d94a5e275f949be7e97390764c41733cf1d67d98d7700eeb14a6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 771d30a116657749bc631d4bc3f06076214dd0d5ab2a81aad9c6475a258ef101
MD5 8017ef048ac659f82e0510a3f9e19540
BLAKE2b-256 100a27600e240bf0409b18fed57845d949adc4bd05d1f8be129a1b5276a16a93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 34e075aff3069233919492ee17284c47dc6d8c5b869a4d1717b52b4ca67882b1
MD5 d2422e5baeee1f6ae99840c6f005401f
BLAKE2b-256 d62d6cf9c174246671d98dba55e90a64bda659f34bb0d81766e3efb0ebe2bebc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02652c0619a8ea9ee7d76ba4f385c8ef22de44d6af06b64810861b6b12e1e32f
MD5 6c1e88aeaea106871ebaaf39a295a80e
BLAKE2b-256 9b1c93ead55196c23717c9673dc0b0e33db7588c53289d6c1d3d85470616b4a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 08adecee29305cc0d7dfefa0785d24635316f8c040914e1a888156f88a3d5e6b
MD5 4ed6fe18d41c633fce12cc40e6be3fd9
BLAKE2b-256 55089211e891f85ace3977d812a1904211f3e4f345ee67e03105c4d72a493e23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.3.0-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.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5fa727294ecce7dcd292a1c8f5fae5218b9d8bfb9227cb596932641c49065d63
MD5 455950d1ab9eadcda09cc263bafcc8f8
BLAKE2b-256 2f2e26406e59dada3305b9c454e742284ab23732e587b72053d3b93978f63c06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f619455760109f33876cc9c5a2e94c599dd76c8e4ef572171bb0d0fdc0870fbe
MD5 c93addb7af0f72fe016d33da4392accc
BLAKE2b-256 ddc5488a69fbb7a734702cb40e4383aed7f6bc929cbc16129fbf892d5ff3cfb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab6c4d2b591ff2776dbebc5349912025b35bbd4c067d61d74f58c7f913b24b8f
MD5 173141fa18c9c0bc5dab66581b922688
BLAKE2b-256 43a21fcb401e2322359433b11fee3825f2145e377562cc930d3bf39716db3ce9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c19d6e9b77cae217f74d89642e30a49bfd954c64f736b044268bc02d0412ef1
MD5 d5d47ecd35578794853fb8278b68be17
BLAKE2b-256 4a8acd07878cc402eac85a17789cf0286c52a5e0d49a7ca6938c724ad3bf1437

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4bccdcf35249d9cadb57a7da983352a5b64389d071a3159fa1beafe7452699cf
MD5 10c564c0bf7541b1609705e15654db20
BLAKE2b-256 e8b326e85f7bae11c195cd26fe171747ffbc47db7dda6dffc5326012d4e8249b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.3.0-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.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9ca1e54706df9e4631f83df8e930fafecacc40151899a6938977f4a2bb2c744f
MD5 97dc0e00fb631e729c509f1962fd01f1
BLAKE2b-256 8f8d152a381efa7b4869a79a6b760058b7d0c824921262af0c9dbb27905906c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5c0ef87fef708aa1b4c6ffd0b75c55ca258671398d76f0d6995284a892013289
MD5 5d806d597866e30ed6ee27f0baa37f63
BLAKE2b-256 52513a13e3754717b757d17eec138f6c4d5f62123ac87da443fc545deecbd95f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.3.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1d752a98653badfac00d1d4a03ee8cd955636708d543cc15d4c01dfca3864f57
MD5 784ec0d264ed1446444a2be93218188b
BLAKE2b-256 82496273979c4ca1c1486afb815392ff596d60e6ab20645c1ee307887638b7b2

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