Skip to main content

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)
print(f"Source document pages: {result.total_pages}")

# 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)
    extract_screenshots=False,      # Return parsed pages as PNG bytes
    continue_on_page_error=False,   # Skip broken pages and return page_errors
    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
    keep_headers_footers=False,    # Keep running headers/footers 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.

Every result also carries creator/producer from the PDF /Info dictionary. With extract_document_metadata=True, result.doc_meta adds a provenance object with dates, PDF version/security, signature state, incremental-save markers, trailer ID comparison, the catalog's XMP packet (capped at 64 KiB; skipped for sources over 16 MiB), and source size. It is off by default because it streams the whole source file, and it is None for inputs converted from a non-PDF format. These document fields are API-only and do not alter default CLI JSON.

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", "vector-text", or "annotation-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

Release files for liteparse 2.12.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for liteparse 2.12.0
File Size Uploaded
liteparse-2.12.0.tar.gz 463.0 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for liteparse 2.12.0
File
liteparse-2.12.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ x86-64 Details
liteparse-2.12.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ ARM64 Details
liteparse-2.12.0-cp315-cp315t-manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64 Details
liteparse-2.12.0-cp315-cp315t-manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ ARM64 Details
liteparse-2.12.0-cp315-cp315-manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ x86-64 Details
liteparse-2.12.0-cp315-cp315-manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ ARM64 Details
liteparse-2.12.0-cp314-cp314t-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 Details
liteparse-2.12.0-cp314-cp314t-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64 Details
liteparse-2.12.0-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
liteparse-2.12.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
liteparse-2.12.0-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
liteparse-2.12.0-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
liteparse-2.12.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
liteparse-2.12.0-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
liteparse-2.12.0-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
liteparse-2.12.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
liteparse-2.12.0-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
liteparse-2.12.0-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
liteparse-2.12.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
liteparse-2.12.0-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
liteparse-2.12.0-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
liteparse-2.12.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
liteparse-2.12.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
liteparse-2.12.0-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
liteparse-2.12.0-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
liteparse-2.12.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
liteparse-2.12.0-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
liteparse-2.12.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
liteparse-2.12.0-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
liteparse-2.12.0-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
liteparse-2.12.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
liteparse-2.12.0-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
liteparse-2.12.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
liteparse-2.12.0-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
liteparse-2.12.0-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details

Total release size: 452.9 MB

Release files / liteparse-2.12.0.tar.gz

Download URL liteparse-2.12.0.tar.gz
Size 463.0 kB
Tags Source
SHA-256 checksum
How to use checksums
c1d3615cf97ba0d74e992fe9f4cc005cbb157221e6cc1c28465bc99730e406f7
BLAKE2b-256 checksum
How to use checksums
7180f87b6a252479d91d6243feaa47e022fc4f251a29e94b8f3169fbe4603691
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl

Download URL liteparse-2.12.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Size 13.7 MB
Tags Linux glibc 2.28+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
9d417855a0e30a53df990de5942dbf5f6c4a230d3b70a651e1bdf54f2e95b7ff
BLAKE2b-256 checksum
How to use checksums
21a79356e9da3f9ef7301b6d7fe3ea135ce427d7b5f7edfe6ed800da8e5982ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl

Download URL liteparse-2.12.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Size 13.4 MB
Tags Linux glibc 2.28+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
a6e808889b1bc854e69b9b0bdb0bc8eed49b5ce12ae3469cd6f503a43f9d9db0
BLAKE2b-256 checksum
How to use checksums
546865d330d195dafcbf2ba1bd1cdf6f152cb3465278886c73e21203c2e2e286
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp315-cp315t-manylinux_2_28_x86_64.whl

Download URL liteparse-2.12.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Size 13.7 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c673741d4e71d7eaaf61ea763ee9b352c3f7237ccde68e087c19daf49ba77a47
BLAKE2b-256 checksum
How to use checksums
7919ce1c9bc5053dae48a70ab84d2b9d2f979d02705c170358aee67746b17b26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp315-cp315t-manylinux_2_28_aarch64.whl

Download URL liteparse-2.12.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Size 13.4 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
db109a966c7654e264e7356c36057b9b16e877a7af1ee5905e4d4568f9995d15
BLAKE2b-256 checksum
How to use checksums
d16d48239d468bcc5af5694df66e4b0dca37119057934e36730a7165bfff28a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp315-cp315-manylinux_2_28_x86_64.whl

Download URL liteparse-2.12.0-cp315-cp315-manylinux_2_28_x86_64.whl
Size 13.7 MB
Tags CPython 3.15 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f14d69d87ab63820158b5a705d955f7bbcd2916097b2e49d28f196039852925d
BLAKE2b-256 checksum
How to use checksums
77de5d86e0c6e37cf9f66fe0bc1dca10898ececca4b7f3d0a1229eaf8a029a4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp315-cp315-manylinux_2_28_aarch64.whl

Download URL liteparse-2.12.0-cp315-cp315-manylinux_2_28_aarch64.whl
Size 13.4 MB
Tags CPython 3.15 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
d5f334ede1e4580acef34c8eb6486033247b8b0b415c1fcb08c817433ae7fd09
BLAKE2b-256 checksum
How to use checksums
226407e9c3c3d93d970b4556144263b6e95d91da162f7cd953a93ea753b560be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp314-cp314t-manylinux_2_28_x86_64.whl

Download URL liteparse-2.12.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Size 13.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2bccec7b46afce33f72e96abe851cce0352ecd9d4c7741e9f0e9d6813fd75470
BLAKE2b-256 checksum
How to use checksums
58efb98f935849f3e09e3c5108ed9725c1228f1d6c0b234439de679fe911e5c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp314-cp314t-manylinux_2_28_aarch64.whl

Download URL liteparse-2.12.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Size 13.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
bdf7eeee8f9779d0d5b1828ba583ac228b1bd006e6dd09e60838baf3a5f6bc97
BLAKE2b-256 checksum
How to use checksums
7f8a5ab3de9c846f62fbeb7976baead5f17c772ea6d8373cbb59a4a38bf94fa0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp314-cp314-win_arm64.whl

Download URL liteparse-2.12.0-cp314-cp314-win_arm64.whl
Size 11.3 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
756af851b2820554afb9d364129efb0a1bccf2fe346d59e416aa44c5f63ffb11
BLAKE2b-256 checksum
How to use checksums
68a265dad54f627362a350547a486c935a5049f07ab5c281f1a53add79363e6e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp314-cp314-win_amd64.whl

Download URL liteparse-2.12.0-cp314-cp314-win_amd64.whl
Size 11.9 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
4ca71d8426885e5865dabcee49998bcaf11b47d1a6f8050518ed83c001f9812d
BLAKE2b-256 checksum
How to use checksums
2dab51e2d7c9419f749ecb1148e64dabb4ea72b86839126c89b24ee0d4920c8e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL liteparse-2.12.0-cp314-cp314-manylinux_2_28_x86_64.whl
Size 13.7 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c93afc0ec794aeb5c154545e4ff519348df17772bdc624299131559c2175964b
BLAKE2b-256 checksum
How to use checksums
3ecb4888a85844e7c56b0b86b8eec8ab160383554bc960cc8953e8be35efe599
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL liteparse-2.12.0-cp314-cp314-manylinux_2_28_aarch64.whl
Size 13.4 MB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a4d19b2dbb37cf7a83e9c30a55e0c24c518697095d3b96f51eb274538897dfe9
BLAKE2b-256 checksum
How to use checksums
5e96834750acc78bc55b0bef525e2044b484b3811aba72f66d0d2a0cbd5c4148
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL liteparse-2.12.0-cp314-cp314-macosx_11_0_arm64.whl
Size 11.9 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
90ec891ed0a565791154fe3d3aec69be68ff9b243263cb65d8173c81a35b5e44
BLAKE2b-256 checksum
How to use checksums
5ff9886d85c009a9dc9e8b7190ddaa9fd55a3268aecfb2d5ef6bceb5dea19db1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp314-cp314-macosx_10_12_x86_64.whl

Download URL liteparse-2.12.0-cp314-cp314-macosx_10_12_x86_64.whl
Size 12.5 MB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
61dc50c8050f38ac5fd61bbd0254d180c435319369cf509fbfc89f5dece0c73c
BLAKE2b-256 checksum
How to use checksums
f7924a4e4708d1617d5b1b75048f38c3ffdc1e69882b9e3992dad4dd42ffac68
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp313-cp313-win_arm64.whl

Download URL liteparse-2.12.0-cp313-cp313-win_arm64.whl
Size 11.3 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
29cef7651bd35ffbe4d3d77953186ac554dadf12cf0cc0aeab455aa0b7abb337
BLAKE2b-256 checksum
How to use checksums
9ab30792e765927dd23f8a07cb2deed3b2566698c9f69e14b7e80be8c2bcb383
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp313-cp313-win_amd64.whl

Download URL liteparse-2.12.0-cp313-cp313-win_amd64.whl
Size 11.9 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
53a3366deb4180faba85d5040bda8b054cc471cba104f64481f74cf9ae6d688a
BLAKE2b-256 checksum
How to use checksums
ea25762d5f8dc5da7b578fc475140411693b61b3bdb6fcc157854b13258b6618
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL liteparse-2.12.0-cp313-cp313-manylinux_2_28_x86_64.whl
Size 13.7 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2c287a618d8f35d8465702d264c0519d562c01fb895a1d0e90cff6b98b7ed037
BLAKE2b-256 checksum
How to use checksums
4b2b1842cc547bc2c67a06b00fe7bdeb217f9ac91c3350066004d869082627c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL liteparse-2.12.0-cp313-cp313-manylinux_2_28_aarch64.whl
Size 13.4 MB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
78e72bcf6c8933c5ac4e119db87c334c8873bcb81ba8b46ed025776e7425435c
BLAKE2b-256 checksum
How to use checksums
4c7ad1f9d22bbfc63c55c6ce7099e5ba2af8196d121bde3455a736b9796340a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL liteparse-2.12.0-cp313-cp313-macosx_11_0_arm64.whl
Size 11.9 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
570c1213ddb1f7e6233025f0adc7e6353eab813e45ea8d5bb68dc5f810ae050c
BLAKE2b-256 checksum
How to use checksums
1c670ce407f66ae043e54fa31613bfb26e857787f3910d62954821cbe6a6785b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp313-cp313-macosx_10_12_x86_64.whl

Download URL liteparse-2.12.0-cp313-cp313-macosx_10_12_x86_64.whl
Size 12.5 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
1216b0fdc9e98b8a90151db1d505c3f78fadcdc85178c4f994f7b138136adde4
BLAKE2b-256 checksum
How to use checksums
e0725bc81653a338889ed901c11a1512c76978817277cbd9b4d01c152c1d7e33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp312-cp312-win_arm64.whl

Download URL liteparse-2.12.0-cp312-cp312-win_arm64.whl
Size 11.3 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
4f6571aefea1df77fbed6d0e0dd272ae5cbd16a92c1d83efe32a57a810126b5b
BLAKE2b-256 checksum
How to use checksums
63dbf78a374b8ceb6316ac90234a5b9ebf542cc70cf48985bf21219a32511bf7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp312-cp312-win_amd64.whl

Download URL liteparse-2.12.0-cp312-cp312-win_amd64.whl
Size 11.9 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
3138bc2fdebe27285f76969846befa76b9f50941e217043a898d7724d8f031ca
BLAKE2b-256 checksum
How to use checksums
f55a1fd1f89015205a0990eb870e6c27eac4f3f680cf7834e8b0f8b3629fe4d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL liteparse-2.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 16.9 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
6c5546694c7cbe7cd854856c9912e4e29ef976e590088a615db937199e7a0443
BLAKE2b-256 checksum
How to use checksums
b0fcfacbc24941d16f1a7b7d1b3d7a40e411f7fa3fecc6ce51e906b3b3551940
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL liteparse-2.12.0-cp312-cp312-manylinux_2_28_x86_64.whl
Size 13.7 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
358ad939e2b27675aab30daffcd4e40a6238aaecb9f9cd82585ac2dcb4c0d749
BLAKE2b-256 checksum
How to use checksums
4620a9246bc492ea9def997a311092484694c1bbf13be5ca3ecdfe796159a0bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL liteparse-2.12.0-cp312-cp312-manylinux_2_28_aarch64.whl
Size 13.4 MB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a81bf637b573335e9462c067a920f9ca3815a26decc563c694b404498eee0c0f
BLAKE2b-256 checksum
How to use checksums
45844d133e190a14c2be9d86f76e580eec2b3f644ffdee11e838a494a1c3f650
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL liteparse-2.12.0-cp312-cp312-macosx_11_0_arm64.whl
Size 11.9 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bfe2141e8d44168dc0e0c86b25428c9eafeb1da1023bd4625b2b40087aaa8a7a
BLAKE2b-256 checksum
How to use checksums
9f17298aa215dbf2517739ef6ec4e79efa60ae80e0fe2ce6b36906ba10ed3a2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp312-cp312-macosx_10_12_x86_64.whl

Download URL liteparse-2.12.0-cp312-cp312-macosx_10_12_x86_64.whl
Size 12.5 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
54188e413b02611d7154a72af5cc723cfc32b8faaa40f7ce77c72787b5f393b8
BLAKE2b-256 checksum
How to use checksums
71b16789e1688c8dddc47d1ec8cb2a57f5ff0d1c03711d827852f3bd097bcb9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp311-cp311-win_amd64.whl

Download URL liteparse-2.12.0-cp311-cp311-win_amd64.whl
Size 11.9 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
9c709c3c6124639e079bab21441d6234fe7b2e863567bcd1310f9d15219e4eac
BLAKE2b-256 checksum
How to use checksums
1419c4ed287aaffc3be9a5c3b52ee35137a3b1639becae85ca702f13cf63fe0b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL liteparse-2.12.0-cp311-cp311-manylinux_2_28_x86_64.whl
Size 13.7 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
35e06302e6bdec3f7a52ff98aa559f5e792918fded49239867c866d158cb2b7b
BLAKE2b-256 checksum
How to use checksums
27a7b9b3b6fcf2f6eac47f8a9505da35f04cdecc9d65711a78171fa9d9671c3f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL liteparse-2.12.0-cp311-cp311-manylinux_2_28_aarch64.whl
Size 13.4 MB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e856853047c1632dab36ea2ef217ec4703f041e789d0a03c577e7999f58c83bb
BLAKE2b-256 checksum
How to use checksums
9719a203751389bb55c83216b94f4557818cef1d22cb33b46ad4edce26c7e438
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL liteparse-2.12.0-cp311-cp311-macosx_11_0_arm64.whl
Size 11.9 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bf31e47841983ec9fef45fc67ca9cb546eeed1e3225f2bb96fa667d917017d6e
BLAKE2b-256 checksum
How to use checksums
38c7bdd6377f18090df7bda46818f4116f4e6ab1e9330922dda497be3f6fb029
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp311-cp311-macosx_10_12_x86_64.whl

Download URL liteparse-2.12.0-cp311-cp311-macosx_10_12_x86_64.whl
Size 12.5 MB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
7e9a76202e7f8992a2d687e9bcb96910949fe113380c083d9b87c280d3cb37cc
BLAKE2b-256 checksum
How to use checksums
b029c5dc25adf799ffad61f3b5cf809031aa0e059f53937893ee49ee8107476f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp310-cp310-win_amd64.whl

Download URL liteparse-2.12.0-cp310-cp310-win_amd64.whl
Size 11.9 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
59ed674f6a3111e15bda3a4976a3c19a239f10c7275d380a42b0088b1bfdf716
BLAKE2b-256 checksum
How to use checksums
70d5496cb3c8e3fd24316392eb0736705bef1d369f438a4496de8b0d7e969269
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL liteparse-2.12.0-cp310-cp310-manylinux_2_28_x86_64.whl
Size 13.7 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e3859eba47a4a2f26669acb15d5370721c9883d41630ff642a4a05a0a376fd3f
BLAKE2b-256 checksum
How to use checksums
2af2531eb5dccbc72ea1c388f64e1a68b98ad286ed7dae4d614ee8924fcda874
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / liteparse-2.12.0-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL liteparse-2.12.0-cp310-cp310-manylinux_2_28_aarch64.whl
Size 13.4 MB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b60fc0388963c90981320f7ac492bd5bfb1e7bee91ddd5635a99a1ac2b636048
BLAKE2b-256 checksum
How to use checksums
523a2035914ca4fee8ee66f544d222d6e0b8a7975691dc89ba1611f2ebce3aed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release history Release notifications | RSS feed

2.14.6

8 release files

2.14.5

8 release files

2.14.2

8 release files

2.14.1

8 release files

2.14.0

8 release files

This release

2.12.0 This release

36 release files

2.9.0

36 release files

2.8.1

36 release files

2.8.0

36 release files

2.7.0

36 release files

2.6.0

36 release files

2.5.1

36 release files

2.4.0

36 release files

2.3.0

36 release files

2.2.1

36 release files

2.2.0

36 release files

2.1.1

36 release files

2.1.0

36 release files

2.0.8

32 release files

2.0.4

24 release files

2.0.3

24 release files

2.0.1

24 release files

2.0.0

24 release files

1.2.1

2 release files

1.2.0

2 release files

1.1.0

2 release files

1.0.1

2 release files

1.0.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page