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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

liteparse-2.4.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.4.0-cp315-cp315t-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

liteparse-2.4.0-cp314-cp314t-manylinux_2_28_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

liteparse-2.4.0-cp314-cp314t-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows ARM64

liteparse-2.4.0-cp314-cp314-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.14Windows x86-64

liteparse-2.4.0-cp314-cp314-manylinux_2_28_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

liteparse-2.4.0-cp314-cp314-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

liteparse-2.4.0-cp313-cp313-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.13Windows x86-64

liteparse-2.4.0-cp313-cp313-manylinux_2_28_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

liteparse-2.4.0-cp313-cp313-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

liteparse-2.4.0-cp312-cp312-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.12Windows x86-64

liteparse-2.4.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.4.0-cp312-cp312-manylinux_2_28_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

liteparse-2.4.0-cp312-cp312-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

liteparse-2.4.0-cp311-cp311-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.11Windows x86-64

liteparse-2.4.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.4.0-cp311-cp311-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

liteparse-2.4.0-cp310-cp310-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.10Windows x86-64

liteparse-2.4.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.4.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.4.0.tar.gz.

File metadata

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

File hashes

Hashes for liteparse-2.4.0.tar.gz
Algorithm Hash digest
SHA256 132f1bb66c817efccc1884c318d0a4aace49f4b3a738c3d6418ea3f69d4acaca
MD5 0fe9e4250bd88818335d8a9ca333727f
BLAKE2b-256 be0d5ed55a023d6f2c510405f42b492229e07ee4ee2c6721699b1dc6a2078674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d473ce26f88c2958644408de2ab2218528a6ad3c797505c6a5aa142fec39f19
MD5 f1bc0605fdc739bb26c4bb18b0242975
BLAKE2b-256 5c7bf8e9bb8713f050f255f11dbf55ee3d5042ab234db7eae7034bac309b05fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cab154638d90393e71346f0121376d539ab88a2117159c6fec01bd994cd36192
MD5 c65fb8bed7840cfc4d02159e441cac9c
BLAKE2b-256 6dc823fc5d5c2f89ffbf1eb0685a0acf40fed30f942b02169d1cd7ca8489eccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 96273a6af2e4ff5254bad94a715b0f5651feb1b707382b025bbfbebea3c3dbd2
MD5 0dcd735c1098483762df5d7faa1b325f
BLAKE2b-256 a8d206a003a96dd60c411e812fcd595a7f1189614ed7d79ac6b289e1c9efb577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 24335dd41717545eba8b3605cbbc5759d4d0d1412dd3fb9041f6a0eea376c8c4
MD5 fdea53ea60c4fa4cc9e0a1fb5146b48c
BLAKE2b-256 9e00bbacd69f7582c478d907342d4f72de24dda2b890fa8b730b64d0d740fa1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff9926c8cec6aac042e0236fff60b04e30c2ccc157a3a7608f4ca6ee35664f54
MD5 3ebced7d9cd2bc163e0539c4affc5d88
BLAKE2b-256 1fb7a7c326c77f2a8748103a4d726ab565429c12affb9d269a6041017e58e400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2a34da607a3e6b4cbc5754ff51066b98fab958bd77336041872ce12d7011553
MD5 1db4b9e5e61999d4fda3e6f1bb376130
BLAKE2b-256 64146625c9f82962c233accd62b34e5dde370f8f86e42abb9ecf03a78f9ba59f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a2a6af80b882c75861c462ee5d31a3e00374a7d4131ae42ae4a82c114b99bcd1
MD5 c0047bb2f078044c803d2129a5fb9cd6
BLAKE2b-256 328fa56c968bba9a28474c51f29d49c1b2f8dc01fcc772ea35ab98ec42f9d83a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c28a1830c7d772d8d5555ed6ed5354a74d29c93b4c6d71773db9d9552b28875c
MD5 694b76857ccb32965a18fd284f5a78d3
BLAKE2b-256 abecfb6f2977fe342892581894e3dec8a9ffa1bb14f7962f54ea16cae4e301b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.4.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.4.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e5fa7d2a0468090a39473ac7735e181096484ce47b9beac50ce7c6915ee550db
MD5 fce3454b9d1eef7f7ff72d193a5e987e
BLAKE2b-256 4fa13f45ab65685d9eb14ea3902e844b070ca4a444614e09988141461cd8ac10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.4.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 8.2 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.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2f0b6b8d781af5d04645a98eb9526d02fad13a29a09d042bdc31d3ea7e31ab4a
MD5 8c4e042447aab464e6fe1b5967a35d5a
BLAKE2b-256 a5ef8738095cb92ee3b300f83e3ccc99d84c6c1f5eed5fa757788e95d7abdfdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f347199382c76d9e5fd44992d5892cd6d74097060f61c8c0237a54f1ad52a5e2
MD5 eab1e7f44e3c620a97798155c9b884cd
BLAKE2b-256 7295f666d5c04af5cfa8e19449eeb06f8672d59e915f493e14646f2c7a5a6534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f325fd961df759d5832804b6e85553cedc5ef44c412ba054b120f33d0949e9b
MD5 201481900a5ce88c1097973430ba789f
BLAKE2b-256 3ab577f3f3629d49aeec71f21f333d5741f76b8a2ed16440af2f37c85523de5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e82898811c93e528e424bf6287047dd4d2f918846a6013ac42a60dbf1fe4558b
MD5 8394c68e0f6f5952054d06954bcbd5ef
BLAKE2b-256 e44698e7204bbb09c7eb8bf61dc807052828ace92d51af28a2bd8c58ae6b76b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 38829541d8c98eea6db052476a82e479bbc5c5cade55d44f75e7da1f57aafaae
MD5 209fdab9b9102fdf74e264968f24ad40
BLAKE2b-256 f5cd721d812f9bec2cd6891110e3df4065f5ae2e6b30d48cfc1c328786fb4b06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.4.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.4.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a353ab32daf8cbd803522e15a8c44d2e3e03c47ebb4fd0d129f229a758df521d
MD5 fdec8003ce1980db8260e3410dbe73f8
BLAKE2b-256 539a297cc735f148805d2e20353c14a09c30d184e80d5edb666d53a347505e78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 8.2 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.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a342be38903b796878493c83c5ae8ca28fe4e9ad7354fb9511abeb6b798967ed
MD5 35940c1f81c65806fc7f553cb8eacccd
BLAKE2b-256 5204574d9f9b71ceddfadbdbff5ca62588956077c220f753fd86599f9c63b08c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d3559125481877b26aa578c6167f65f7ba475470b6087519a7bb6b5a85c3756d
MD5 3776af786704a8bdec0e1afd99c1e237
BLAKE2b-256 351937658e78c7e93160970f0502a9e10621c94cdd7153b856bf255bddf0f4aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a7efea0f3c831f31a41208ab8290e76b956997dbeb2cfe86283efeecaae6fca1
MD5 c849e57118b5a5bee28aa33a430bd7fa
BLAKE2b-256 d9c6038046c5d32589751518aec0ded172ba76321b0dc508dc8b4505cae52177

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0117f0c2fefabe574a6f772c6c5e8ecad746195773a990ca67ba5a09c5080eb9
MD5 8d3c3efdd953b9590aff3ecdaf9f18b3
BLAKE2b-256 4b98cc7206f66c038e5442bdf4142b8273ad4d3701b60d8606c9e8808a1186dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f453c5c8f6b640f085d2c0ed6810502d50fc4c15b995aeaa32f5ea750c4905e
MD5 6c45cc4024765eb7f8596d1f0bbf983d
BLAKE2b-256 9b836a42bcf96374abe23515b6ab455a63312f243f9eb1ac16c1b619a345952b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.4.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.4.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ed07b848ec8b786411d75a2f7d559696b2b81f7a8f8830848f1bacdade9ecbe9
MD5 f232dd6e81603d601822f4bc4dfe67b3
BLAKE2b-256 c390eb767d964dbee4eb2cd1ecdaaa3e5ae52ae5277b305f8cc771d87bc7d973

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 8.2 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.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4bd4499a1e96d751d557ae2b5ea86405adbac6b0d2014dc3d16b4306d364b4fc
MD5 f0068112fa072b75ad4621503aaf9e54
BLAKE2b-256 02135dea9073d914ab3e6c19fa08a4c94bdc9f8608ad72977a4ae15e21220796

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e00e37aa3ffda3923f91544457c4e249c45bb04f4348092339d2ae62a70e98a
MD5 e9faaabf6571e6688dd7db23641f0be5
BLAKE2b-256 d78e17d9b73d58c8da546131194ae7260d033a7812d612ce6ce8feb5ed8ad098

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 980db59118efd1d9db3e0270e4eac7907ed08a0e6018a4f0a1b695a0783046b7
MD5 c058f08dc803058f92e902a043600b01
BLAKE2b-256 66a77ad3ba00a49de342e14e05bc03858be45c1380d96c96406cd2ce10fd8222

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1df2ec42c5937008c72365c93b07bf22f2076bbe433d739c82e2cc75dbed6ffe
MD5 3bde717e04ca6cc4b9bfcf86ee9605bd
BLAKE2b-256 07d60a43399af6e1acba6f3520a8b3e57754373b6027ef71fc0e48dcb2ce7e6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a583a737057243295a4087c4c33509c8e97d9b8298fa963cf1e899d56e845b6c
MD5 b3a400ab37af35397d32733fb90b66bf
BLAKE2b-256 d3e747afba947c929c8c224e04fec68e05d05c7166de6f363e67d99029f7086d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3c1345c0c2cb34bead1a8be1861426247108c459e16af81a621c6d5e3f16eda6
MD5 ab0f8b6b7701c699bfcd121b1bb8444d
BLAKE2b-256 27a7000d0e57ddb8900ab21b825fd064bbdbb12248824c599d77452cd7583ec4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 8.2 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.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8a9662f6ce3bc55ba75c3a3ade6c65efe58065d1c44ba606d1406589d5f84b97
MD5 ac37516d70c4b64fe94bf97d929934a2
BLAKE2b-256 56353ba828713d5324d94fa50511838a337ce5ccc1b43f38c2c352e04aa796d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 60ec9737c00124d8c668a659adb099c36651f0e7af8a80ab0e0a1e3893097604
MD5 6e874fd562843155a5d7405f7afcbc41
BLAKE2b-256 400f07f820f929c4b9dbf623e84202463414769c302eaa8805bf607c87b2c9f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bce70f4140d7ba34581d93e64da3b6553b586372c6ba1f598380f39e0fec14c4
MD5 868111c35082878dca67a4511716e58a
BLAKE2b-256 131156021637e06a0c41ece38b8f6f0eddc71e41ebe04643e37fb54412eccc76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cfeb69d85d4dd04906099892439fda4dd25e1105615fcd806c2a205dc64a1a8
MD5 53129a2243f5ae99b4d62237a03f8497
BLAKE2b-256 fdcee28e13558206831be79188c36aa54ee480858b3db87a49bd1eef83de104b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2a75e04ae1301f67401c385fe9e2bbf30472c3b4e1a9302b82c28ceb43ba6078
MD5 2b644c97ec726feae2e8676572c936aa
BLAKE2b-256 bd2ee5242460563e6f3d14db3560e38055978ab0988d66a3255c246e0a313c4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 8.2 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.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8fa175a023c9d394cb135df9550edb621509d21b198a2ef9bb34abcaa2f621e2
MD5 3058957332213fb53405f8129bfa88f9
BLAKE2b-256 20674441ec040e077c85eec018f8ba77d92bb47293f803609e80ff18e69d5f55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 08fc7528a07bf76fb9bc3da6f5b21ba77a523cdd5d3483be78fc6b6c02cfbf13
MD5 6e579661244e6fd0937f0c10562d9d2d
BLAKE2b-256 6beeb35806d654fa8b020feb3eb6c470266cf6d8a3d151b058e97505e3a7b270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.4.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 74fcc95d3a8feafa8df9a08c4ed12c9803d5b6d0fc3398e9584b6565b03b472b
MD5 0c976de5e2f858d01b6f97293b781486
BLAKE2b-256 35fd7591673ff4c7710a6075b0129e3825786597ccf37fa2ed48b1f06811ef33

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