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_images=True,           # Extract image bytes + metadata (default: False)
    image_output_dir="./images",   # Write images and return name/path metadata (optional)
    extract_links=True,            # Render [text](url) links in markdown output
    extract_vector_graphics=False, # Opt-in shapes + merged H/V lines per page
    extract_annotations=False,     # Include page annotations in structured output
    extract_form_fields=False,      # Include AcroForm widget fields and values
    extract_structure_tree=False,   # Include tagged-PDF logical structure
    preserve_very_small_text=False, # Keep tiny text
    extract_text_metadata=False,    # Opt in to MCID, font metrics, colors, char codes, and trailing_space_generated
    password=None,                 # Password for protected documents
    quiet=False,                   # Suppress progress output
    num_workers=4,                 # Concurrent OCR workers
)

When extract_images=True, image extraction is enabled. image_output_dir requires that explicit opt-in and writes the extracted bytes to disk. Each result.images entry includes its page bbox, intrinsic pixel dimensions, rotation, format, name, and path. Valid source JPEGs are preserved, exact duplicates reuse one file, and JSON CLI output contains metadata only (no base64 image data). image_mode controls Markdown presentation only and does not imply extraction. With extract_images=False, lightweight Markdown placement refs are still collected and result.images stays empty.

When extract_annotations is enabled, each parsed page has an annotations list containing the subtype, contents, author/title, PDF date strings, viewport-space rectangle and quadpoint rectangles, and URI for external link annotations. It is independent of extract_links, which controls Markdown link rendering. The field is None when extraction is disabled.

When extract_structure_tree=True, each page has a structure_tree containing all tagged-PDF roots and recursive elements with type, ID, actual/alternate text, title, typed attributes, MCIDs, children, and referenced link annotations. Untagged pages have an empty roots list; the field is None when disabled.

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.)
  • And more!

CLI

The Python package includes the lit CLI:

lit parse document.pdf
lit parse document.pdf --format json -o output.json
lit parse document.pdf --format json --extract-annotations
lit parse document.pdf --format json --extract-form-fields
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.9.0.tar.gz (409.3 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.9.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

liteparse-2.9.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

liteparse-2.9.0-cp315-cp315t-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

liteparse-2.9.0-cp315-cp315t-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

liteparse-2.9.0-cp315-cp315-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

liteparse-2.9.0-cp315-cp315-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

liteparse-2.9.0-cp314-cp314t-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

liteparse-2.9.0-cp314-cp314t-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

liteparse-2.9.0-cp314-cp314-win_arm64.whl (11.2 MB view details)

Uploaded CPython 3.14Windows ARM64

liteparse-2.9.0-cp314-cp314-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.14Windows x86-64

liteparse-2.9.0-cp314-cp314-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

liteparse-2.9.0-cp314-cp314-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

liteparse-2.9.0-cp314-cp314-macosx_11_0_arm64.whl (11.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

liteparse-2.9.0-cp314-cp314-macosx_10_12_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

liteparse-2.9.0-cp313-cp313-win_arm64.whl (11.2 MB view details)

Uploaded CPython 3.13Windows ARM64

liteparse-2.9.0-cp313-cp313-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.13Windows x86-64

liteparse-2.9.0-cp313-cp313-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

liteparse-2.9.0-cp313-cp313-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

liteparse-2.9.0-cp313-cp313-macosx_11_0_arm64.whl (11.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

liteparse-2.9.0-cp313-cp313-macosx_10_12_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

liteparse-2.9.0-cp312-cp312-win_arm64.whl (11.2 MB view details)

Uploaded CPython 3.12Windows ARM64

liteparse-2.9.0-cp312-cp312-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.12Windows x86-64

liteparse-2.9.0-cp312-cp312-musllinux_1_2_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

liteparse-2.9.0-cp312-cp312-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

liteparse-2.9.0-cp312-cp312-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

liteparse-2.9.0-cp312-cp312-macosx_11_0_arm64.whl (11.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

liteparse-2.9.0-cp312-cp312-macosx_10_12_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

liteparse-2.9.0-cp311-cp311-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.11Windows x86-64

liteparse-2.9.0-cp311-cp311-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

liteparse-2.9.0-cp311-cp311-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

liteparse-2.9.0-cp311-cp311-macosx_11_0_arm64.whl (11.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

liteparse-2.9.0-cp311-cp311-macosx_10_12_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

liteparse-2.9.0-cp310-cp310-win_amd64.whl (11.8 MB view details)

Uploaded CPython 3.10Windows x86-64

liteparse-2.9.0-cp310-cp310-manylinux_2_28_x86_64.whl (13.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

liteparse-2.9.0-cp310-cp310-manylinux_2_28_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

File details

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

File metadata

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

File hashes

Hashes for liteparse-2.9.0.tar.gz
Algorithm Hash digest
SHA256 f8f1091e78ecd0d195a127a23ddd6aa7ad8894c7d6b9858fa01a9b1e3a880f3c
MD5 cb6e8e41d0a25bba58cfba05de86de7f
BLAKE2b-256 b3a7433bd46d617ec4da506227d31a0680a0242d3e1905f38b439202d8f2cb41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 806e629490bcfdb913ef611bbb25efcceee0a028c560923a0868bad28b2f2dc2
MD5 f269c925ace2de27aba64e1c696f0c95
BLAKE2b-256 991edca51bd1469cb68a6c6542e4b719af5bda86d5430302ed7456d5a5ba5503

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3762e79bd371d28f428efdc22330e475a294a3db47d592811ea347d459724eca
MD5 4cfc2b96ab8ed0e76e2ef4a22db8d40d
BLAKE2b-256 1347c2b7d61e146645e730ac077e55e62b5913a49d6aacd61956f91463a7f593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25c4e4def43b276c24d86d2c1e458b7cd2ab06d143ca35f8865954d0ebf4896a
MD5 1f74192eaac500ff80ba5eaec0981cb3
BLAKE2b-256 03be63244af0a2e34470d618b51a87573641252e988fcb6510bbcd6913ca0b61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f2226b4168a09399f2e69b3b9a460dc89f6d67877c1a82bd854fee7717244ca2
MD5 d7eb3933d1c966f2def01b6d5495160d
BLAKE2b-256 c9e3483e275522f238b9b6bde1b28a4ae6e0d3695be501efd3f97e80bc65e184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 320961892d51f97f0f0fe444047ccf014fd3d06aabd9f0a74d4e6484c1d06d13
MD5 773db9289e65b77541a682c9b4824a69
BLAKE2b-256 d9727d2c60eeed555c73552a002dadb57b969e0d44a3b4773be61a6af14471ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 270a561b1e652a7f8e9867d0f8e5fada55ab17d3f5ec35d15975b81ed3aabfe6
MD5 fb757a595462289fce6475fa608c009c
BLAKE2b-256 70c22f42dfab34e1da038dec079e8cae1006e668b13270752d3430bfcc294bc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9aeb684b7b270f3947d077cc4e1e1b8333370184b50fef6cdb84d2e1db09bd9f
MD5 e9439a7e55e82e3212f54a772d1ba3f3
BLAKE2b-256 13f76375b71ddac1df9de79e2bb3f9a1f16434f7ba533b7afdb7e6a2d53a1669

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0ef921d79f55e899babb7cf161754e18752c28cc1a710c09388d4c6dfa05dfc4
MD5 5dce8797e34d2d8f322ce10ff59dafb7
BLAKE2b-256 4039ec104a510919ba6e327dcf9fc31cabf169cb54fc423c2695ea93d8805925

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.9.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 11.2 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.9.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7973416a2ca6ce1bfc955ae182bd325953f162675729ef3fea92355a7898bab9
MD5 a458fe9250d8a7c67819bb780f89bd9e
BLAKE2b-256 84be8d74a39926e3d5153b1e36fb5afde8b1e8293185a16df4ba3c8f294bec00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.9.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 11.8 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.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9a6737e1c60da8a290a5a1fee33b3211e2f8266235c6e8b9e7201e05fb5f30bc
MD5 4d91189431c99c15c6b54c29e9682be3
BLAKE2b-256 af88c7948c4f3061531bef958c0db1187fa9fb139da164603ef8e01d19777d70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7b061e808a867e82f3a82b8877f05db74a82c3669a84801e53576c1c7e786ff4
MD5 b9eba1b6c5f3988b06b49174c365ebf0
BLAKE2b-256 bf25d38c9601d9141e3c637e4354fe30424016465a252af2136815bb970d2f9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b29002898d921f0175fd8fc99fc6a065d94954043c00b7ab6d276bac0c654956
MD5 bdb81c2d8e158e032e920f5e78cfa0fc
BLAKE2b-256 a9285947c3c6dbe44bcb9ffc7e37da07f6f44d7c594ddca6b27ff9cd1df498de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f57fdf2202d184cd4fdf26664614dbd3a845e3a59b6ea60c981f22dede6a018
MD5 fec08ef344718962fabe1b2244d11713
BLAKE2b-256 7d3b11fe23fa6f2e7ef06d38951511487a842171b05282dd23f91de1a4779933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f5ccd496231002293f339e511011db6bcba11c8cd2f9d45cf12794a0252f8a6
MD5 fac28b06728e1fc5611c0a257e279a55
BLAKE2b-256 d1a71ce7d35f120ce74acb78e637b9f3e19fc028c6d6f77120f30e2953450961

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.9.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 11.2 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.9.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c7733c1fb9988348ab7048a1d6fd6e2cbbc48d75cd3dad86539270daced758ca
MD5 1ce38a1e5de5526a924c91a1b21e362e
BLAKE2b-256 17a6f7c42b882d48d9239a100f59390bcfe1590df70e59328144641c2840ef59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.9.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 11.8 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.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 06ccb3d2d883846c02f534992c37450276b79e43571e5321bfc0ac8a7b88e9ee
MD5 ccbb966800db7c686766c535d200a34b
BLAKE2b-256 2bd016f66657ac7bad115b512217a960f3b7dae580318be4f72f8ccb749419ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a3889169b965d01def863b056599d86cb044befac4dfdc439616cb88891c285a
MD5 c1e0d9afe6f8a6065bfceb97330db8b7
BLAKE2b-256 54d27ce830a22682f48fe9dbb2ff5879a15053bf793195132743b68071963f7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 69f590f871df03cd2ad38093b4eb7d52041d29231fc1ec1a2bcc68bd5443f1fb
MD5 fa48bc0910b864243f129ed7cad8656d
BLAKE2b-256 67b50b92a84265c509a7eaf3952a6c75a23965a0ecd81f278993cafacae81320

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9be1cd3f7510987723a4843a995cd7ae994c30959b037a0f4d8ad8dd3404114
MD5 39b7d9388f3f2acf72d701f71fab2611
BLAKE2b-256 f5b08a7d64a2dcc46177c74857db66bbf50a22bfceb9715fb7b62753e5d1d10a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d8226e3bb54aa0eefa9a2879e70e405b0661f89bf20ccdd389aaad9b9480bd2b
MD5 319e216dfd94f33b5fa1bedb2a55598a
BLAKE2b-256 14f5ae28c586a7d1363b193793f518b250924a9ef1cf7e908c534a564e12c193

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.9.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 11.2 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.9.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 357f0b20f69511430ebf28b756eddda91d995d75dab6a711aa251ab0ea653277
MD5 20d36900968217bb0ff19000622a2653
BLAKE2b-256 6aa433759d4c4249100792617bfa1b310c7a3ebdeeb861af9fe94a0164cf4e41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.9.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 11.8 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.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 55e473c8db461086037960c5c093798e6384d3b232d5addcd911d65af7a5b2ea
MD5 b59bf2b95821c6531aa28b90be534bbb
BLAKE2b-256 3f5c0cd00dbdec8857f749f92a67899f1173b6451e5e20aa602e24f6b3b2f905

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13e86072cf61336b53638a6ea12a92844d2e4164e4ed767f928719fd9454edc3
MD5 4e01d328d68e90e3e1f84e34ca512811
BLAKE2b-256 abcfe89061d8f80aa496d5447e16c951a8d32a87e4fc21a635e4e1b38b69a619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba2247a57984f40a474cd25d6f74907b828357449a86b39b64ddbc546d7d1886
MD5 77cc2c01bdea1edb993fea73640755ef
BLAKE2b-256 095cb36d5bea19c617fb4793c6f7f0a72db80af414d8534684cfd374fa2ced0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5bf26ecaae464bf655f4b91def232c874aec55c558abc89876787715d964cf4d
MD5 a4659892a66eda161b90f8cc1fd4d4d1
BLAKE2b-256 ac6bcb2181e749b6725eb935baba95bd44b698dfe06ac3d5e32a6a2cf9a49b82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0337a3bceb2d27b4af15c46bc824e00f5733be8acdc215bc44092dcf64dc55d6
MD5 8cf45a2ee3ca9ebd41f1ecf014ad0ccb
BLAKE2b-256 a7fe82816342332ba70d92951b3cf9328a9e50135a1d88039277c825992ac0fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 10a153202db79e26e9a23ce2279fcfa778b8bb3aae189300c6014e5364ffb1d8
MD5 3a0cd8bb726a830afce2bbde42059307
BLAKE2b-256 13f0654b31aa847d4fb4befbeb8ccb2709ccf9bad14df5fc43fa0d5e020ab778

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.9.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 11.8 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.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7abe6f31458c25e115afe547e6b18698d0d47796b67c17986a24b97ca397f40e
MD5 9253ec0171ee24495a82cb6570ef3ed5
BLAKE2b-256 47e404d74bde183fb596bd25300c774d294c23593fa82e81e22563b6fc4d74d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8775ee5d67be9e6f64cc00d9e6aa147773c888b81f7fe85836d51e38b02147d0
MD5 243b94506c958de234480f97c6af5990
BLAKE2b-256 a56832a294d593f567cecc853231a0453d0b919037c251f3f1ecc58033fc80ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 689f145d85f497cd15510495bcab16e8f428a5e67eb946bd9f72c298ded73393
MD5 13f2b3af60ee85b7dc940a8a5e089ab6
BLAKE2b-256 6f3388a6b1b271e72209904324d8777796d61de98b1675c6467c5a19dce36f67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 787686ba4ce88efe374547da8a2c1df9eaac7097e8c9a737fffda398754cd580
MD5 28b8241f3fec660c5decfbd57f403aa2
BLAKE2b-256 0e7013d273c7a6faec02d6f2bc1e74cdda303de8f3a466aedd0561b415489757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9e09c27b76230ccc3707dbe294dd8914ff50c76586d399dcf167a33fa9204e1
MD5 3339bb9b99b2615d4c25af38631a367a
BLAKE2b-256 38e3abb16fb1fc3edc0f6e8f39ad4f996a6c0da076b069b5e719bf851d2fc851

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.9.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.8 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.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f8af8eccc71c59dc75ccab6e54fd36b5915dc278b7c8995ea09ca2ef379d6af6
MD5 dc84d4cc8410fb42e7b28064e928c8f5
BLAKE2b-256 66fa14a137d45b8b0125015f5867d8416b8877a61173472b02bb172920ee572d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0899147904426782ad6bcdddba63df4ba97385d0fde7343237c74b44af831422
MD5 7cca8d3108c95c051d61c8e97cbe6bd8
BLAKE2b-256 bbbd90afd743d660c7aeec3609eb331465c9826ccd0c4e72f410a96608c1f3ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.9.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a1d6b23033c9a439a3c1dbac01dd48553fbf09043951cf993a5edd0d0a3199f
MD5 cca84606391efab9a964fdeb6ee9a877
BLAKE2b-256 a0f7610308e50cbb42f1b6ec8875063594de4e391c1efcc21d3795b9d297e26d

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