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)

# 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
    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.11.1

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.11.1
File Size Uploaded
liteparse-2.11.1.tar.gz 451.4 kB Details

Built distributions (wheels)

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

Total release size: 451.3 MB

Release files / liteparse-2.11.1.tar.gz

Download URL liteparse-2.11.1.tar.gz
Size 451.4 kB
Tags Source
SHA-256 checksum
How to use checksums
7d5fba0e9070e83461f2d4e5bde8d97376d23773b5d6cd0df48f048eeee42759
BLAKE2b-256 checksum
How to use checksums
d85875de54a4314285d2ff94b1eacfe9e4b282cb600be4f0cc9bb26a0f62b152
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.11.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl

Download URL liteparse-2.11.1-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
7724c5034ba0ca2c09ea235ef5b4a4a09eb451b9146ad3a93e1b531818e5c395
BLAKE2b-256 checksum
How to use checksums
462ffff6b1cc582746a8d38ae12a0fe9b8ffe8af9207f57284b930d90bcc00d7
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.11.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl

Download URL liteparse-2.11.1-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
6011bc2c0ecc329d49dd650429c0797b87c512f6a6d342cc71d0fa36410a33b1
BLAKE2b-256 checksum
How to use checksums
d9ee2c35627cb186a72ebd43b4c6eac30c9abe86a745a2d82e0934e3f8f33ce7
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.11.1-cp315-cp315t-manylinux_2_28_x86_64.whl

Download URL liteparse-2.11.1-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
bf5850fac17bb579c4e3f0a3645c25ec28e94aaab8f6aadf118fa2fa38b6638d
BLAKE2b-256 checksum
How to use checksums
098158d04c615d6c1f7339bdfde6a5766827813532651982e494e54b5e395496
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.11.1-cp315-cp315t-manylinux_2_28_aarch64.whl

Download URL liteparse-2.11.1-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
018f94148520a2f0d598922825934aa308d1da140bdad789d7ef35763c93dcef
BLAKE2b-256 checksum
How to use checksums
a0bb8d13cf2054ff0a5a921a9551a045d15a6c53b685b02359cac0376f80dff9
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.11.1-cp315-cp315-manylinux_2_28_x86_64.whl

Download URL liteparse-2.11.1-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
62f9b37c78b14f0ce09ce4b72a4ac33c6e5ab1382908d0faf527d1dd3b928a02
BLAKE2b-256 checksum
How to use checksums
41d0c96a4bd70cc3a26d03c0cbdfdfbad46cbfe86742a42a8ee63b153d4aa23f
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.11.1-cp315-cp315-manylinux_2_28_aarch64.whl

Download URL liteparse-2.11.1-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
7b3cc4d181ecd00baecace59d57890223a69a2b5b49afffc1af8ce81a5af9f6e
BLAKE2b-256 checksum
How to use checksums
a494f357b39b23519875bd9e3cf387146e345ad856e339b71d78477d6b9eff19
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.11.1-cp314-cp314t-manylinux_2_28_x86_64.whl

Download URL liteparse-2.11.1-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
c1babe90bbb455747abc14e9ac1f84375a9eb3abf09b2f2b5ae0237144ff8737
BLAKE2b-256 checksum
How to use checksums
75d542e5a848005dfed5669f24999afd91d59a5ca70940a752b240c9fa34b0fc
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.11.1-cp314-cp314t-manylinux_2_28_aarch64.whl

Download URL liteparse-2.11.1-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
d92c2301c096cd2432fbeb51a736233526ea9780a9f55c24d73088122af4014c
BLAKE2b-256 checksum
How to use checksums
b4e95d30629905c89e1b50c4ab66c3a5cc5604481d078ad115b3909a01ffc37c
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.11.1-cp314-cp314-win_arm64.whl

Download URL liteparse-2.11.1-cp314-cp314-win_arm64.whl
Size 11.2 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
8ac94dc2637fdf77e9ee4af2ee64c79e1cca353cef5eb13a2b9d5251d30f0cd6
BLAKE2b-256 checksum
How to use checksums
a3d00896ad5537cb21c7866b6579d495ddf82b9a29f11479a359f46fee4fcda5
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.11.1-cp314-cp314-win_amd64.whl

Download URL liteparse-2.11.1-cp314-cp314-win_amd64.whl
Size 11.9 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
23b647cf90f1d090e022ed657fc7b5100e39af3a36475fb9e4c2575a333d3583
BLAKE2b-256 checksum
How to use checksums
4bc3a71099bddc07bf23bc732a9b20b3fdaac364956488fea3b58cc45e537e38
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.11.1-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL liteparse-2.11.1-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
d41840a8576d292e0c0ec47bedef17e3310437021088024b09fca94b3402251c
BLAKE2b-256 checksum
How to use checksums
ea015d05edf0f451a6e100b0fb138644d8023f25b752a243792a6c7480a23af0
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.11.1-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL liteparse-2.11.1-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
13b47f7fdc881149fe59bad66053a6a8773ef6d436c6644a8ea9f7cc1324b631
BLAKE2b-256 checksum
How to use checksums
d834d3dc714dfbd985923ea43a1d948e57cb5e191a1ad3c6e3991f94e9631712
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.11.1-cp314-cp314-macosx_11_0_arm64.whl

Download URL liteparse-2.11.1-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
07ea76a72a01629043816850d78812fb256fc9a98a637e42346522448c86a53d
BLAKE2b-256 checksum
How to use checksums
bfd84d37c0fdefd96a5cf6d521d15bad2cdef25f2811cee80a7d4863851d22bb
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.11.1-cp314-cp314-macosx_10_12_x86_64.whl

Download URL liteparse-2.11.1-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
c660a1bc116957a05d2f0ecd99838e11f0d2490e812d0fc03ef098a5d70fa352
BLAKE2b-256 checksum
How to use checksums
1bb0ffcafa2c70279b90c82189a490184e1b821371a72b6134558c3b90596b6b
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.11.1-cp313-cp313-win_arm64.whl

Download URL liteparse-2.11.1-cp313-cp313-win_arm64.whl
Size 11.2 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
4e970cff634eb8e71ffd7c61e5517a868940ac1c42d553908f3299372174e199
BLAKE2b-256 checksum
How to use checksums
4409aad56e25e3c891a1a6f9f89d6ac7b385e492f25f627d420c8d414616e6a1
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.11.1-cp313-cp313-win_amd64.whl

Download URL liteparse-2.11.1-cp313-cp313-win_amd64.whl
Size 11.9 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
d797b4b80777175ccad31069f985be0c741c0e717649d26b33fa41f57015baca
BLAKE2b-256 checksum
How to use checksums
35ebca897f2b3dab867e07ee55ba9c1faff939f116656ecfcb220665e6eb93c7
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.11.1-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL liteparse-2.11.1-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
6ac3c3df584c0db160c5d5b7766afdfa3013d581571bdfbffb04027ee70cdf17
BLAKE2b-256 checksum
How to use checksums
ad03d81bdb5048a01ad90a1b37497591c4f42c6d378db41504e053f053207c19
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.11.1-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL liteparse-2.11.1-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
e99d5c6e9de9532d09d42afaee96385b5581f591384e2347b496e8354a39805b
BLAKE2b-256 checksum
How to use checksums
834b2976686b12dcffa4075bcc5bb349ade1de0a712aa25d7f3f2acc3a88329b
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.11.1-cp313-cp313-macosx_11_0_arm64.whl

Download URL liteparse-2.11.1-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
89ba7c36f878555a4575ed7d08ca9e7fcb24e5589423838895b54b709122b8e8
BLAKE2b-256 checksum
How to use checksums
3e6f259ba938eb21c6008b97370c98f6a7a0a15b1faeb9904ae60bbc64a32ce6
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.11.1-cp313-cp313-macosx_10_12_x86_64.whl

Download URL liteparse-2.11.1-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
d0c20d7508e007757b4fe0c0f6cef429f13ce9639d2876a0096700ab48178303
BLAKE2b-256 checksum
How to use checksums
cc597960685a434657fba3c3f5566dbc6b43742211600d272cd49500cea5d2fd
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.11.1-cp312-cp312-win_arm64.whl

Download URL liteparse-2.11.1-cp312-cp312-win_arm64.whl
Size 11.2 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
735687c7deaf0784563d8cf3a8a74ed45e2415cc26784cb3fd02d56e16e78d5e
BLAKE2b-256 checksum
How to use checksums
90490200cd8bc900182568a3ebb1df21738f0f917d5f80ec6e96fdc7ea049a0f
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.11.1-cp312-cp312-win_amd64.whl

Download URL liteparse-2.11.1-cp312-cp312-win_amd64.whl
Size 11.9 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
588e8dc8cdf09284169dabf22be09ebbea47e9c62d0ac849cbff237f5ca297cc
BLAKE2b-256 checksum
How to use checksums
ac420cba47c11ddb7e154135ebd42b5554dbb39f54b394c42ad45d319b0771c6
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.11.1-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL liteparse-2.11.1-cp312-cp312-musllinux_1_2_x86_64.whl
Size 16.8 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7e35d49cb167a265108b7daaf8cd34d63b5b994a84e786f0b5c2ee8a76b40651
BLAKE2b-256 checksum
How to use checksums
daebaeaecf9ddc977024ecfe2fc8dbe1d30a86a7ecc43ce73d236d06d01a6c34
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.11.1-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL liteparse-2.11.1-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
a637ce1c70dd2487bfc742ffb2c105589c12b7e2bea23e628dacb089c864d972
BLAKE2b-256 checksum
How to use checksums
6f9c82b9c7793f17d43d8bb688a85f69ee823b7980ff854cfffaf130bb692702
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.11.1-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL liteparse-2.11.1-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
dd2fe321724416c7283e3c402d16ccdfcdcd1a9dd7362036af7800781ea956ee
BLAKE2b-256 checksum
How to use checksums
f06052b6aeddfa9f21c0b6b2fb6d20fec221805692507161fa2de9094e023cd9
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.11.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL liteparse-2.11.1-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
bb8fc5544875128061022f7ec6fd46449c5855ba77ae0a8a4dc31c249861ef64
BLAKE2b-256 checksum
How to use checksums
3ce27c6b4a7132a82323c7db6832eb3697919a75a4d4bb129a35dc126c17d968
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.11.1-cp312-cp312-macosx_10_12_x86_64.whl

Download URL liteparse-2.11.1-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
1ef4050403309946109b3a3b392b381a7db98e431eaedd3667cc49feac8b81c5
BLAKE2b-256 checksum
How to use checksums
445f0b1693e532382a82990d8f45151073914fa8bf16e5e6e2741bba5b525a32
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.11.1-cp311-cp311-win_amd64.whl

Download URL liteparse-2.11.1-cp311-cp311-win_amd64.whl
Size 11.9 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
9280e8d08bf0814d553f668345566a8ef94a239b0ae4937d2bfeb4006d1c868d
BLAKE2b-256 checksum
How to use checksums
8ceed2baa86b9f5fe8915d4a00304ea7d47cba8bf2610571056c60215a3cb5a5
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.11.1-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL liteparse-2.11.1-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
74ab3a74dfb177c08d3afc84a1147cbd49f39cb4bf6d2d8ad7810b053ff48763
BLAKE2b-256 checksum
How to use checksums
623ab511211a9b8ae6d4ef64a5a672c9b8649e557bd7266b87960f5e4297c47a
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.11.1-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL liteparse-2.11.1-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
fb8970da58a5fa1333d8a22e065b9c512144007b9ca681e5e56fb4d0c6266da4
BLAKE2b-256 checksum
How to use checksums
16a4521fdd11582071016d8da508078149c47c6af21aab33dd3528cb02f5cec1
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.11.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL liteparse-2.11.1-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
b274f5b6cce5de00d30be12e738fef4a93e805e2d8063fe4e2703ef6c064a6d4
BLAKE2b-256 checksum
How to use checksums
7e0aef823ee3ec254e04bbf17b631da490a6f3d2490658de3bda09ecc4495b50
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.11.1-cp311-cp311-macosx_10_12_x86_64.whl

Download URL liteparse-2.11.1-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
c3672930bdc1331fab05a05ee14585c948779a82d7203016dc336cfa6d340cb3
BLAKE2b-256 checksum
How to use checksums
33a5b085ddc7c1d02ac652645f9f08d22b93b9d60374369f951e3808e5282040
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.11.1-cp310-cp310-win_amd64.whl

Download URL liteparse-2.11.1-cp310-cp310-win_amd64.whl
Size 11.9 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
8fc40faba04b87eef94a9d93b33fafd84f8d80e0c2333242127cb63934d446ba
BLAKE2b-256 checksum
How to use checksums
0e84e05d8886d52ec1897a39ddf723f3f2d6b4721772112821c85c5c5633f520
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.11.1-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL liteparse-2.11.1-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
79713471f83f554ab5be80994e7be66009bd5e51ee8542a496515f17e2417a10
BLAKE2b-256 checksum
How to use checksums
f7176c4360e70728ab83d4a04abe7a9a905b2d9faeeae8bd3083bbc6e2ae85b5
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.11.1-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL liteparse-2.11.1-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
5c63b8846a4f740f54e812e65e6796a55d7afba44ea094b1033f6efee3b295cd
BLAKE2b-256 checksum
How to use checksums
373c9191d40dc31860b21314c15a6de62e2a07f3d0acd1e5c89feafa2410050b
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.11.1 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