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")

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

liteparse-2.1.0-cp315-cp315t-manylinux_2_28_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

liteparse-2.1.0-cp315-cp315-manylinux_2_28_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

liteparse-2.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

liteparse-2.1.0-cp314-cp314-manylinux_2_28_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

liteparse-2.1.0-cp313-cp313-manylinux_2_28_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

liteparse-2.1.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.1.0-cp312-cp312-manylinux_2_28_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

liteparse-2.1.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.1.0-cp311-cp311-manylinux_2_28_aarch64.whl (9.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

liteparse-2.1.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.1.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.1.0.tar.gz.

File metadata

  • Download URL: liteparse-2.1.0.tar.gz
  • Upload date:
  • Size: 301.8 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.0.tar.gz
Algorithm Hash digest
SHA256 9ef2d6962d9121aec18dc080238ae46b4803fb8509f451845990f13953c26d9d
MD5 589063026d444bb4b8c77c7e6137ff16
BLAKE2b-256 7bfe5b85ad01ed15b52da7a985683d4e569fc961422ce8fd3f8e33534b9cb2ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ad9c02fcfbed5174adee9752070464ab64b7841a9ff537bd7513f582a6df8e3
MD5 4e2e386b2f90c889614ecc1292a6b39b
BLAKE2b-256 f132a140a2ab4d8c85bd1e8678ca56ac3c3c47b085969113f2d605df8c3b1078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d48e5c450180123e6cd18e187293001b66a2aaacf39cd3f37b40f0436fa3aaf2
MD5 5cd7af6c4bc43c6f20cac81c476cc534
BLAKE2b-256 c77e1c6fdb866f47533ae81de8d623f8d183f305ffeba6904d5472b38eca4bcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aea9a68207cfe2dd7edd8bd81bfea3184ea581de40bdad1da3d54d9876b07b85
MD5 e53fcd68289b7d8554a6e1a46231a5c4
BLAKE2b-256 c631d05eb42fd5b17ed78c5831c1b8077ee3bed23cd52ec084fbff345d93f90d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e1f96d2fe49d860f0b2a4c4e3644ba8fd73ef6b750134752c7cb070ba9c6331
MD5 8800fd06f090df199400f367c6acf07c
BLAKE2b-256 d8a4242f3e8b96290648abf6bc49c684a48d1b7553d2d0019d44469de97f7413

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c8380152bb381c5139e81991ec4d426bdb9c24afea0d8b6e8b7f1f84e74e76b
MD5 e31d2e30ff48980a0ad066053ef0cdbe
BLAKE2b-256 b7a024c7d612e1bc0076be65f045695a58cee0d7eb263188c301edfaf406d8ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19faf8e32fb955b6bc922794d8cec0e21e1da27a3086aa3a67b47c9b525a7812
MD5 072c55d69a5edd45a3c238741f7cfdbf
BLAKE2b-256 c178ca55444ef28a83285dd68599f00b9d8f2882a64ef4c61c131c25b5640cd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 87c1a011e25c1a81adbfaee40076ce3a33fd63f028f8ec4a9dadcdc1aad5ee5e
MD5 8a178dc5385ac2342783c3c579824eac
BLAKE2b-256 094152c0391e89a698dd8f8ac68cbe212b5d19d29428a5298ad778b8bdb89d90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0ee1346ff8f568533a15c9c1f1dc8cf29d5b819fe344cc4744ecb2093e9d62d3
MD5 fa8e40e53cdbeff9630b968436a68f86
BLAKE2b-256 d4dcc26d3102b9e9de7bad4621caac00b773e814be674f077cf228a2154b84a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.1.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.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f375e01ff98187f08898a2e321d3be6abc62834c0bc9b1156b742ca435a0efd7
MD5 d82883535415867286cb7cbbb54f684e
BLAKE2b-256 f2464bc6dad34760732f76ba7bc1bf582463fcbe07fd3ea8c3f811b616672f88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.1.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.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9dbee6000f9c28c0a8c72431fa4d730c8be6db389a076ee2bb1d799460e5bbc2
MD5 6a2626fa775ac7c95cf71851da6cf864
BLAKE2b-256 217caf0c8e28357804e3b3b7314e2b43ab5d322ddb9bf337d625475c0332c5ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4157b3ff760fad4d8b67c4f0fb380d6cd0f30426f2c58c25c9ce126b9eade81
MD5 b27c37d084e080cd9900fd15a5870514
BLAKE2b-256 9e9ddb509d99454beac046c58d54eb9c97c4c51e5bd57b9d854970a303628f05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 68b086908f717696e7b260df052dadb545900fa08defb1e7fa7d2517a6f35724
MD5 57a5e83e7feb3125f02988429afe5ee5
BLAKE2b-256 695eb66ec2906643d2b3ab2a9d4f3a666759b26e0d8aebd3a6058b5eff1b7175

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 356fa6d0f0f463e0e7425eeac5d51d89d00ffdf0676b0a97db0e68526582d501
MD5 1a64bb6c14bf8d4f7980881e8676b606
BLAKE2b-256 69ccc9c62806b3022ba5fa27955613e3de4b31101bb464dccb4a52feab93f396

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bead302f00f4b7e056bc7ee4c824250476dff247e421ba39f0201c27d91a63ff
MD5 740417ad9f0db02a05168c348d75b2e8
BLAKE2b-256 b08effe9b37a87425e60b0fafb906b80cb493548a8214fc6cc39ffaab87739e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.1.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.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3115fec1bad3da43dfebae2ebbe3c2ca3e9d222fa5d9ee9e6daff04d72f9a3a4
MD5 a4edba158b017f156b82625de0c15d3c
BLAKE2b-256 b9230f062ae71283c1675b03deba544b5f6c485b0bc405ce91f7ea963c735537

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.1.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.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1dbee5294de467fd37a5b79901722d6ba9f67ecd0e362ed0406bb93df4b43785
MD5 6ccd6fd26873ccf231ca6a4eab298149
BLAKE2b-256 ccc75dc265650b9cff1bbe9c2c66831bd83b4a4e620d10ac427021f83cd666c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79280620193e2a4d5ceb602362dec13b35c3df9ff2d8e7f03f4eacea02f0dfcf
MD5 63d7bdfab01cd5034f58680050d06833
BLAKE2b-256 264d6ca9db848070b15c8ffe2324a07317b31c5c1a39ca5944c1acbcdb960985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a7843eee95b59b1cb64bff9513ef2e58c604348e35cd2f3834cebfe2d928428b
MD5 10aaf7750fb97398757f0a8bb5249efc
BLAKE2b-256 922c1811713bcd57ec398584597efb9286962cbb0611bcf5473a653e9fafe54a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 892896162fdb017e681c6a8a09503d6be0ed86ac88c738cf6e831d18b324061f
MD5 5e2c4d8f7381d502baa03554420e55ee
BLAKE2b-256 04067ed1baa5f2decafab8bbd02203572871952243949bef8349527caa81345e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f143251fe8d89e54b74f43570a7fa5e28ee89fc7ad10d8d4219371962f4c5f8
MD5 6b536dce0ebe48344bc89e5a7dba1321
BLAKE2b-256 bcbb7cf99a7347193ab27a84a98c5538fd969833a9f1df000fe1088f77249426

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.1.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.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 34069b03d432f7789d0909ea2a0f68049adb78e24eb520a0be4d6f6ebab82560
MD5 6e4954896fe496e2800e6d80a96f96ee
BLAKE2b-256 1deefb641ebdafe755e889051936f0052a119ded02e4600aaf259b8764da2a5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.1.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.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4824c9d1c04a19c2be95725d9453c71082e063e4a9da664c62922a96aa423b83
MD5 358c862dcbd29be163ec8cb8270d761e
BLAKE2b-256 955e6de49a13394537a45245ec0fdd21f18ef80fe1268fa6afa03b1d3d63e272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5f51b30b56eadee66cd11bc03ade38b036c7ee44d2efd12f1c7b70ab9ee4ba7
MD5 85e04b1294a974a216ee39210939ce7f
BLAKE2b-256 e62a9fdffada6ec4575b4e983455a4decb9ef178fd9c24cee1890ee0cb46974f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0d2f30a859e6b8c0a7183b0671aa6f879db0914a21f5b45f24bc0120480683d
MD5 52fd600950a9ebeef84c84ffb9f2e7e8
BLAKE2b-256 4e0df11439d3f96847eb211efe6fa82dbb13b44e2bba7bcf26c51a225e3a1855

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f2c8624f0cf10075d9a8d2f8f7fc005be60aa2dd3f84929731da010bfbff7dd9
MD5 22d65be5a58ee818b069d90dd01a816a
BLAKE2b-256 facaf5555196eb41516a9cc0caac48ca27061d7059c0df5f1a2f122b34a7f5b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d696536d06606e6b0be0f2a80e200ff168b45601ece8ef063f183438c0a431d1
MD5 1eb3f8930a98c715aa644bff33c02bd5
BLAKE2b-256 e219f014098c38c45f6af236197cecb71cde87bad80ce68a3c4ada80028a85c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a80b751fa0a592e8c73e0ea2aaf9a66efa0f01016d9e5c9f7892b9aee988ae8
MD5 6c174f23426f8390e9a17ffbc45cb681
BLAKE2b-256 2fefb7f2343c026a8a0f5f08a856f38a09314221eab142aae858d5e6a357ea1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.1.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.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0e90898e6fba1256a8abce6b1d95666c55f15ada9ea7b989739ae4e051a956c0
MD5 47a23c33f5dfb2aaab5a3c0e38073929
BLAKE2b-256 887e1194302bccba6b90f503718202cc9809067615dabb6024bbf54594e3347f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 95ebae2e7396bf4d12a21cb8c3b857d44ec8ec27a9927092b414e803cb417070
MD5 925dad699fb1484721f1e263da419754
BLAKE2b-256 00b0821c360363d5135c0e76882eaef79bd650ccbad5bc1bb8f1be5b00bd725c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e87b0bc4b01aa07865f70a3a793346732d4a271c1f1c5d36a6deb12019aa2b89
MD5 7205a8b0720ff23a983d085039724c61
BLAKE2b-256 5397bdda0d056c6f0eee632dfc03bd58054a21e75c0d5711de1047c1656a37e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 443e29cbe40dfa9f3b80ab367bbf800b3bb277feb677f5c410cc65bae2817ae3
MD5 59640a33e9ac11e36afa717a52258e90
BLAKE2b-256 a46af462489ceee1831b8329ab59b716d828c0862f514b448f3ef4b6f86d2089

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4317dff32db89fcad2ae3be36b6dc0c5f2c2e4f13d46476ab11d86b4d1f815af
MD5 bb0b1927f53ad633b1a7509be13f353a
BLAKE2b-256 4bba2afde30daa24674593f6ac4e4f5965fb121a3b8e072e2a7932749facec59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.1.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.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 867b90874a31ddb618ef3e5bba232b415883af39692abeb3c5a3e33c564d23e2
MD5 240039e841c114bb45e8c8621c9f0a32
BLAKE2b-256 10586fd33a5336edae1836ddcfa53542fc9423d0630f77f4c0a238a8859abd92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 75dd1aa1a344837eb52a5e257759a2cac2e1a52918ce36dd2651b773e1308119
MD5 d8956d906bb06435672f4e50e52df16d
BLAKE2b-256 9c8433b1e5ba601005171f81450d0823a3d74f137dde4d796282a7162390a644

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.1.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61355676c00491278034e8e86d4c13558d821742f08b43129c8fee981d7f2b6f
MD5 8b6af92b575c03ef0b73960691e748b1
BLAKE2b-256 a3a1af9eb511e8cc567424963b9c251dc6d1095eeff4ea5853756bee38880862

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