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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

liteparse-2.1.1-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.1.1.tar.gz.

File metadata

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

File hashes

Hashes for liteparse-2.1.1.tar.gz
Algorithm Hash digest
SHA256 4599d34efdf10ff2c12c4a81ce7011bc5f95baed5b9b7602d2a7bb255cafe1d4
MD5 d83c5b79ea3158b6b271fea14063ac47
BLAKE2b-256 2f27dc57cbed2071f156df07fcee4ff57b3a66da6871b5b7e51a8853d7778f4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d044d3b4c0fe97ecbf3b6f05a2be1169ce250a9c102d5143f2029ab5a280729
MD5 3e90df5fe11c8e96a9a1eee9541618e7
BLAKE2b-256 54ce6b60d15fd0c37c413d358773d6cc4781e8176d1a96b35384854b5957b702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1216faf822d111acf3ee86cf736d5adf1f5ce3c8968fd23620341ca4658ee2b7
MD5 2f022b42152bde073c3c477dfe90320e
BLAKE2b-256 e82dca22c7dce2eed14051fa47ff61419fa6a763329dda1890b2c7e905a3ac72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e937798a893601a999b569390b19f7cf9ec6eba9aa2de3443644949c4b2fdbde
MD5 3990462622a405e45d2e09e16fa73bdf
BLAKE2b-256 df984f5ec2f2ecc183719f9a2cba517bd2522effefe4ac3e957ac7c71c6dee0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f88a0d5c8af48da244799526feee2b8039a762dd6a80483ccc2c5c7a767d1801
MD5 ba8388fce1c287fea8b506bef9ed9076
BLAKE2b-256 47c0889f657c218b16d30f9973f3a8f90b2761be67f082e382ecc657eebbd546

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f92c24a8111e517efc50283655b5b6c495988be1eeafa6e0480560e8705213f5
MD5 ea5eee0230d5520cecb4c19ec395cc5a
BLAKE2b-256 2279ec58c8143ed16b326ec255c009a88cc4d997fb2aaaa709ba525f1b94defc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d9e8015abc452b5b5bd44a4b55233875ab5ab6c849d8efaa1822db40d01c7f3d
MD5 b4d7d6a2949466151426603e7979cc33
BLAKE2b-256 29dfb279b54f7bf1de944746b5e0d9b47119a816eeaa62eaa9d7475cfa0dfa09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a920a06f04e15115e7ba24d1f6b433426969e16f34283869dd4c7d96c670959a
MD5 aada820045716a5f0599e72105742997
BLAKE2b-256 f0f3954152fa210d81467ba7880799e694a20a00dae3e9d99e6c361fa1b191bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8f4335c4d7948ef328716a63affd174a9b5e6ba4c2296f338e47fb28ee391d3
MD5 b1915aa8dc535ca324a8e4beddf3aef4
BLAKE2b-256 d8d17c87658466e0a55d0ad791bc52afd757532042271e823c825cfa84a2f634

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.1.1-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.1.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c1675ffb24486739f867c4ffacdfb170d6406553258276dfd03a9f4bdcfb2375
MD5 a21e27ce49bb1ac326fd67e2d37ad9f3
BLAKE2b-256 da2b4c905b887aa2095fa60546ddd28f5b860a80bb865f49cb1b6faa986b9e1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.1.1-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.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f0fe6867700c781e6ef231fe63b792349625aedd5bff026a9d8343c67eb53439
MD5 8a99eaa5c390dea6ae1af5943fe27884
BLAKE2b-256 1484bb91a7289279b3f9c1d2ac14a52c9fa93105898465c08e467a1d2db25bfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c945f86671feb544745a8087ca6968eb85d2d665ffd50c0066d5cb1a50aff5db
MD5 15085e5337b6601f72991d9f83fcd571
BLAKE2b-256 3cade806931555f231f11d1cfd95586f3e15211838067dc535a1aab182a26308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03bfeaa6c1062586c48bed5cff681dda04949f66b09a37969d8433aace2d87f3
MD5 5c69e94e4f250e3655e1280b361598e1
BLAKE2b-256 fea0e9571170a1c22e57dd4a0528ff823c02fffe464990947664ee59be7ff679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a70303940b9dc50a7f6e1e6555ed8a632fee8d411e12b6824db8eb8a0867745
MD5 fea0c5932ce84f4a9e02652e32fbc336
BLAKE2b-256 16640de2f3401782b0b36bb37c716c0c9a0d0eec3b4ca815e9b2acd9235bfd9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a88529c2398c5a9df21e68fea553f0de8530a27e38af5aefe9649a07c743bece
MD5 07e8b094e53fb08d3351f478e5d6ddad
BLAKE2b-256 944dc4a00b37283faac38c5a105d6ac85102068a2d230e76b30d1b0e0f70b644

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.1.1-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.1.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7b5068b0580ac72b9b8d969b83564ca5475e42c9894c191133405455e6847511
MD5 24ae2fa1bd45b5563376ba6b85b6420c
BLAKE2b-256 8deeb5d3e73697f0995d565ed3a91ecf6c333f01d247b72bef624c16e264f22d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.1.1-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.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ac4b9f728091fbc3a6c03f35733464333c482af71adba7758acb1188fa291780
MD5 2060f635d5dbdc3f2ad86d22696e1626
BLAKE2b-256 a8cfb126ffea5b886ce3381f7400974bdf6abef4b700378ffb8c14418d2d5032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f6c2564944377ba38fd5f960f26f58807dfef18075f996d1d6d7a222f8b86ca
MD5 8a65a096841efcb204504f48c96d19ad
BLAKE2b-256 7d899d1700e2e1133cd527a70a6bd3032c79bfeaac0c42a8afede53bcb4f6d96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 100149538a1f2404ceac4fefd1f901c60345d8ebba8354ee4d7468235d6a1884
MD5 fa8595bf60bbe3c9a30f6a50d41d772e
BLAKE2b-256 9296bbabd6f5022d892b3b49b9f795924fb89c9f949cdaa9939aa2150d727788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17d05809263a9a076340c4770fb31ea57734b7b1890c4903dd4a2c5686bb142f
MD5 730e8de592f81bd46f1876182a1e5420
BLAKE2b-256 f8eea27ed5dcc15c0a4abdef84f934e62e8e3dfd3a05824a64730fd5919aa8ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e709bcfdfc1e9eaf2994a43b3d3a6769e0c40b6ea094f18d26ea660e0a7ce14
MD5 5e6ed8caf2a345f50fdef15e56faa274
BLAKE2b-256 fd9d164efa2206c1b382c94e26bd28879cc73a9e68152323c327ccdbeae6d664

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.1.1-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.1.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cc0bd0d5d4e3e2305bd63b248301ffab96f1c9d37f17b8e89494c98533835603
MD5 2609c0f0e9d3e43e2be335638a069189
BLAKE2b-256 9834cf7dfd2770dc815e206be7f8f68ab54ce3f9d2c6866940eef69c1680f960

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.1.1-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.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3356dbea4b9be1d65a1754b6dd2918f63c5192c1906ab75cec7912c35a030df1
MD5 1c120c2f64f89f295c62c7160967c313
BLAKE2b-256 37d94ce1433df68ba1c6be4fc1d66ec0bce9006d88920c823acea3f6b431a326

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0d2e6b20be7af9fbc2342771e61013e7255e4234740d7228f28e622784bb95f
MD5 41f8467b9f14822e8981e94fc9eb408e
BLAKE2b-256 c51767f9c0b35ccc17b22d81746d67eca6c69beda3dbb9b63c1d362719789e77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac51ba1a0b997eb5a9d36431b40173ad9ceb8d07313cc7f7d110868468b5f942
MD5 edb0080b7b746f692afc7f08fb4c7bb1
BLAKE2b-256 5209d9807b375ad95eae6853f8c0e0e25bc835fecf86d327da604a6003d6bc41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e2ebaef1099d4af1d0cd91e4b8d12bdc6575ded8438228f1f9d8f000db5f198
MD5 de07d1c39151984ce7bb4aebedee47d3
BLAKE2b-256 8b72f8fb7485d53e2a079950fd435485845d7521218d0a68689d2ea853427f9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d998b2b9a2f31cb83d6b3221b20d0a02960d0a978bf23bc5fb9c2d6c0f1b3f7
MD5 b9b2c7e78c8ee0bad7be2e0bad5a0770
BLAKE2b-256 4afea12a10f3ad6f14cdda7e9d8b74bbfaad1328a092ac64989bdfe00c35b507

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 726807fae5d0c5eacf2af6f0c659d422c926ce12403fdf5a1d541edf26b00223
MD5 7d1290a39e0bf6ed63fa39f6ece2c104
BLAKE2b-256 4798a80bbc9ccd93fc6f79963ea1e637fd519df35e84100c5266c03312d1106e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.1.1-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.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d3044c4cf54d8b39200aba13adfcb10578d7e9fecd03b2750787cf22fb5a8077
MD5 9f5af0e8f5466ac9a8333168d4b01a32
BLAKE2b-256 38204e9439bb7e2192005611c05f5c036d8a99e842601ef3be0d400af9dae2a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4753defcbc91f82fe0e9af9596171c78096a1d9738c5a06fdb63103adb4f89ee
MD5 204aa877d2469f3dfe254f0cdaa57507
BLAKE2b-256 8e7f74ff9abf5539e8b00d12145e158d8ec7bc8a47478a61de46bb55de403c23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 533e8ca323e1272cdd9eb3f052e5430427d825038a0fee42d8dba3727e918344
MD5 393ca8b0a066e245ddca8b72f357c935
BLAKE2b-256 a224efe19e502016c1a39b32bfbcd608222e644701ef4acaefc9d1068c2659a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75b542b41ada46a17d3f6b134ae9c2ae3c33ad374a407f05dc9a4c2daec7b9d0
MD5 6a61b30530683a6a57f7858462f30c18
BLAKE2b-256 80b98778eb3c648d72be99684ee6b83067052970a7aad0977a23239a2cc8e21b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 15536fa537c2cde19d7a515a3960c4a6913490a291812c2be9d44405f8c4281c
MD5 5f430c439789017a1d94993b5409dee2
BLAKE2b-256 28247addd53c789ab8dd2b9eb01cccec3082517f16791a6a73f51a9db6d02b57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.1.1-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.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0f1663a4c491a2d4c11ce0311bb3e18a3a91dbe94e61ac664a5e1c29f2930ca2
MD5 501a207ecf9f988fc011b0e953cedf80
BLAKE2b-256 9f8ebae06975707c93b9bec8b62c3852c92dd127935cc0edf2e90c3e41db3360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8d974194c745c073139d2826012b378209dfce89ed4254cbf5dde88b83d5af7
MD5 2260a5f5207e13053abf7e987a8ba686
BLAKE2b-256 a9084fd75de3a9bd1ae46fd0816dfaf72d5c3a44a26a9c572cc68d04042f1e35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8fd790d7c261b00fe03690aa1296255334cfb99b0c9996bb2c7c1c28210c6d6
MD5 d753e213ab502cf24159a1fc4426c454
BLAKE2b-256 3f804cb702cc7c8bbc6b2fd843efa29c147cb34e61f1ddb5772baff1e129b730

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