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)

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

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.2.0.tar.gz (308.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.2.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

liteparse-2.2.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (9.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

liteparse-2.2.0-cp315-cp315t-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

liteparse-2.2.0-cp315-cp315t-manylinux_2_28_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

liteparse-2.2.0-cp315-cp315-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

liteparse-2.2.0-cp315-cp315-manylinux_2_28_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

liteparse-2.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

liteparse-2.2.0-cp314-cp314t-manylinux_2_28_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

liteparse-2.2.0-cp314-cp314-win_arm64.whl (7.7 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

liteparse-2.2.0-cp314-cp314-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

liteparse-2.2.0-cp314-cp314-manylinux_2_28_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

liteparse-2.2.0-cp314-cp314-macosx_11_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

liteparse-2.2.0-cp314-cp314-macosx_10_12_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

liteparse-2.2.0-cp313-cp313-win_arm64.whl (7.7 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

liteparse-2.2.0-cp313-cp313-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

liteparse-2.2.0-cp313-cp313-manylinux_2_28_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

liteparse-2.2.0-cp313-cp313-macosx_11_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

liteparse-2.2.0-cp313-cp313-macosx_10_12_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

liteparse-2.2.0-cp312-cp312-win_arm64.whl (7.7 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

liteparse-2.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (12.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

liteparse-2.2.0-cp312-cp312-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

liteparse-2.2.0-cp312-cp312-manylinux_2_28_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

liteparse-2.2.0-cp312-cp312-macosx_11_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

liteparse-2.2.0-cp312-cp312-macosx_10_12_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

liteparse-2.2.0-cp311-cp311-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

liteparse-2.2.0-cp311-cp311-manylinux_2_28_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

liteparse-2.2.0-cp311-cp311-macosx_11_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

liteparse-2.2.0-cp311-cp311-macosx_10_12_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

liteparse-2.2.0-cp310-cp310-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

liteparse-2.2.0-cp310-cp310-manylinux_2_28_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

File details

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

File metadata

  • Download URL: liteparse-2.2.0.tar.gz
  • Upload date:
  • Size: 308.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.2.0.tar.gz
Algorithm Hash digest
SHA256 46d8a74a2a69ecb05aa1287d569f12f9375a2ada22ef60022b119b1896920de1
MD5 c0332dd539ac263aea0bf07bf8cca3be
BLAKE2b-256 b58b59b94df9254b14d5b5897da4e1a72e0de3c836c2b4b489142e26af1eaab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad674c5435d885c6e2b19a4e5bafc341d887db61a732ba83344af82df70c12a1
MD5 f019845995c19e181be4783eb9d8b6d4
BLAKE2b-256 370496217fab7ba3ad6044576cae72316b5c8ac7cbcd4f6b5e6355e0eb7ee7ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d764e4eb152f96afcfb25515f7826ab0c96fb153ee4baa12b4b89c0de99d633
MD5 97578e70634ebab860b98ed80621a091
BLAKE2b-256 3e6b47033c5c8cc5f7fe18402654bc348eb708b7ed11febac98f8c2fa1a084a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f412b024efaae614c791a1086d076edf005de692c3efb3006e9773a3445b6558
MD5 d3b76f1178429013a6d6641723bfd2a8
BLAKE2b-256 4f7a6ca16f320e528de57c3fe2dfe5414ba35e7a92007b8721f000839fe0ca4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d269f7e3c7db4bc2de0502f9901665c2bc256025ff3621a85a38fd7163ffff24
MD5 e865a1fcb4b0d4322cfefd2ccf2fca82
BLAKE2b-256 5f6fbc09a571973ae06d726b02861f3a6fe968938043c01348f543874328bb64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5027088f6620437bb52c5833377546743c54f8b9a1342d10e3b42f8e2f3b6895
MD5 c1a3d8365929d3312b5538c27093962b
BLAKE2b-256 7096c368f498fe051d093257d2b32c42b9b9c4774be942ee02d69f4fd7c4b63e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c3b259fcf6711a592f5d6f9995b94a0169e40b70d18e0d09f3b7c9fca511553
MD5 d40a4a3cb5ad1e2eefc691d3e1061519
BLAKE2b-256 dbf284b04e9dbb2d6ebbfb1d52d16af87ab27315be298c5fb4bc107a86ce445e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd3383bae40b920443ab1a9294c39074278b9de5540ce36b565c6c6e31479726
MD5 1924fd8eadadca4549e952a460b06d11
BLAKE2b-256 848c8e30a1e0819803f5319ca56bf25688e7bdc64ca4373026aeed5d49c4b372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6bc26e3feb5b1488dc59512c22018fa097d9420e5adaf02032f6c28896fcb41f
MD5 d2924d9f07e669deea4a2bd17bd87858
BLAKE2b-256 343cdbf8046c700b7b687d0cec13b61ee627972e9bae42af2709ff1517af815d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.2.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 7.7 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.2.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 662668a0ded0cfa83d4579459a6c6578d42e0ac450ae5c976474114c9d957c91
MD5 319bafd3d89cc24e5216c9fb8187f619
BLAKE2b-256 ec33e985125998bb59cfd925450b3300490ee1b411bc13c622cbb03cb4e29f4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 8.1 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for liteparse-2.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 227a6b18f0bc56cd13e1d44200fbea7d0bd10896fd914b2ef78c8007ad7e1b60
MD5 bccf88a82c9c8052c9ff13d005a5f034
BLAKE2b-256 c57c44cea6af462df1533a8318702b072722158556116529db0e2cf78ea8eb38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7a6cb2a9379406bb140827c086330b49d8023168e33e507c21c62c76b77eddb4
MD5 f3c58bd1787c468ebb2f228f6791fb1e
BLAKE2b-256 5f633d078dc05492439fbe7d7e1d15b98f7b9203a4a51a211a121ad0f962c13e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4078ea9a2b0cf6e6cbcfbe3589a6e3989ec84576e5ed502f3fdc70a6c843f333
MD5 7bb70a6d6c436bd8ce8a89bc0dfac125
BLAKE2b-256 17b8804793f1cd71574a75d712e3f2d31e2981551a36e3d30fdd4a347a6cca69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0addf8ea455554f1eb0979309ea86eccf72286975eb3ea0629919427e66105a9
MD5 34024759a8a81b66d21cfec299594290
BLAKE2b-256 56a84a6d8b72a0921012f18ef93c38ba337103e44267bb9fe8513e7f139fc63c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ba7a709ba69d0103cbb786872a6c2e01cc498bd67ab070b5fe882407bbab4405
MD5 baebb6b7a894cad54445bb341e93367e
BLAKE2b-256 521a773e4965d487031251d5d990af80edefa4e9c620b7eb5fb98264af8f8ca4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.2.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 7.7 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.2.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 dc3b69a8c17a225167753f6f0678e6be739eda8331a836b219ab9c82afd942a3
MD5 55b6442fae5d7c8d327e8f3dedb647fa
BLAKE2b-256 7677981faa465e799666a05848dd0fac77f33625c516ef74eeae779f4e526009

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 8.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for liteparse-2.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d0f43d432319a76402b6fa4cf73f6ef35cc37ba4b62719ed0df6647df6681cf2
MD5 852cf6a35b81261b1a83203e205219e7
BLAKE2b-256 ba1a2c1d95652312432e4b6a066c04a192c63b055de0bcab0b8a60eb11229c0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f19abf80f2a5a76fbbdc39eb8dfa7976c82befa4452b5ce0760599c62046b383
MD5 91a3f6821316b9377813ad552e39cfa0
BLAKE2b-256 19a4f9c165f7a346bddc9e22f92e441701c00a15d849b7cade7f255c3bf22f60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 620f406f3cbedacbcba535e99ea11f2c77c7287a4a24ff4ba932cdb6e2e5bada
MD5 a6d7b7c0760fa60ec120cbc3ffff82d4
BLAKE2b-256 59f0386610a79a09c9a879ad093a741ed8e6dba6157b7fbf2aea65d6ab13eaec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed686f6cc00a536226968699e9da339759778a0a2fcf2281b386d7d1471e038d
MD5 920142c68784754148fbbc18f471d8f5
BLAKE2b-256 008fe8f8a139a2235498dfb48a46c656cdf3e26f5d525001f13b1acfc9f6246a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 18f05a6589915f8db27aceb891c63225b8dde814f4dceb9344ca835e0a64b6e7
MD5 7421debcadfa640079384d9011deba6a
BLAKE2b-256 135d29977a97948b28c5c6cc734a263afe39a35ac2e4028560305469adce2d72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.2.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 7.7 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.2.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 15b87aae020e9e7a9c8ee0e7381539de4230ab548b226da5ea0d722092f38e1b
MD5 ea1e697986c5b0dfbb5f6e86c9e33ae9
BLAKE2b-256 9d88b567e7cc122eac31a12951783504beb4ce816113218da83a366f5758913b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 8.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for liteparse-2.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 54d3e66c410865184a1eb93de99df3de1483c84d1149138cd9a553c03c0bcfe2
MD5 ff5367c735ad0fa151fe30346eb38b55
BLAKE2b-256 f03641624a47a36c1f1d6f4d24140f7b5bc4824e459ca74b442188e5a7c4a18d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b7c7575b71a48b606477951a8966db8affc667d5879502c264ffe5bc12c544b
MD5 153ee222587ed69e62282adb2859f5a0
BLAKE2b-256 cc1aad574ada1d27b7c19539bbe213c89fd011bd592a7e0bf82e0a6a4752d8ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac335af46f00f911e11f067223ff3416e94f66dffb63e474d4a5612a8c8b8366
MD5 a888becfbaaa97bc0a6a05b93e279ae4
BLAKE2b-256 d39f7c0d3c3a645ae49d8155e2db7835fc580edd1373f1f1c11ecb3f98bfc2d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 49dd3394d17b6163744f0490d3ff16bf9645109f156b22234fd0dde5ecf3b1c9
MD5 71d0d45bb3b8c9739f1ff3d9993c29e4
BLAKE2b-256 d7f846e81862b454a17b1d4f47d0348cdb90d53b2649325d7414bccceb8d87e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a75a7641da854b1e5690d7f5d1bb531fd6f1ec68fe371a43cc8af30215617e7
MD5 307f9b0a5faa176744cd63e9a6eff199
BLAKE2b-256 041d3cb752ade70116a1c01bb9332179271e4999bd644d2584b6ff0d3a81b922

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 18f8f74b3da18407b7d4fb7f93fa1521df1346f38c566a792e6fc94b3c12f796
MD5 487d71df6e1d573cefa2cf81445374b9
BLAKE2b-256 523955f346874f0524ed0afcb7f462498c145e3eab26f2a0b5d17cde1a87f726

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 8.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for liteparse-2.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6fe37b3dd3e5169a2da8e3fced8382297dcb9815adb725d93519886ee704bd17
MD5 ecdb7c98ec1b1d3c811e4e5c0d930e29
BLAKE2b-256 efb7191423f09fc9b968ebab6b62b6ab1d0b4762c039ec64cc171b4d8e0c29e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e53cc02ae6a91a34a5bb6902a9b74e525b4da180f246fe8d9fc7f14a38b4f090
MD5 d4a115f0ece298352b90ede920c1bfe6
BLAKE2b-256 2e1aaedd417f6caffce107c84e9173f67de4dc600d15b717026d7494ef874c7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d691bcff053e964b7877062bfba8fb835aeeae8e764c2fa04736ea946850bc6c
MD5 8786050fa38f7a3326023e6340ab4c52
BLAKE2b-256 c65a07b57b04494f00545dbbd43f3af9739a1d958ebca006c9a7e36e1e96a147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1ec65c1d6471d1b0fb7b1aed66334ecdf1472ddb99c68f91ff5722350cfa04d
MD5 1589508f1f940abbec71b6168044166f
BLAKE2b-256 aca4ebff368b9818e65b1532cf829c53ad5249bf717147c6bc1e3559a3e6698e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ad7ea362603eedf0c3c6104f5354c47855e4427aacdd26f24039eba1c06bdb8
MD5 a74af175cb287e14cfef1fb4d70ba704
BLAKE2b-256 175f8d5740b5e7df149451169c6b9139b22a19a376d3b2cc251b63efb9185f32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 8.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for liteparse-2.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5e0c03601de9e0511be5a120b4f24618843b84f9e57de83092d978f45f5e48cd
MD5 a0178a8f6c492f79b7146359765be953
BLAKE2b-256 9cf6afe50b8fbc0db57823075299376b079e2415d6577c03ccdf7046c1b76994

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a4b674dbe3f0a88e1835f8ee47538b0bbb7a272f85160e263c7875d6297fd48
MD5 e4cb3bac4c76aeff4809aa1865aae13c
BLAKE2b-256 2b530fdd7704553a650bb0cb7f6a4d3f749ed7c79128c1de8e41c85ce7e915c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.2.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 82a7f3367feb322a68b0e006b4945e5ddd2adb4c122642ea6d5cd504448567ca
MD5 a658eb80d59f92ae3bac94d364aa15b6
BLAKE2b-256 3720e430bceeced7fea49615823e87c00a87522d305a6394fc5487175fd0a63a

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