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.0.8.tar.gz (130.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.0.8-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (9.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

liteparse-2.0.8-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (8.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

liteparse-2.0.8-cp315-cp315-manylinux_2_28_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

liteparse-2.0.8-cp315-cp315-manylinux_2_28_aarch64.whl (8.9 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

liteparse-2.0.8-cp314-cp314-win_arm64.whl (7.4 MB view details)

Uploaded CPython 3.14Windows ARM64

liteparse-2.0.8-cp314-cp314-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.14Windows x86-64

liteparse-2.0.8-cp314-cp314-manylinux_2_28_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

liteparse-2.0.8-cp314-cp314-manylinux_2_28_aarch64.whl (8.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

liteparse-2.0.8-cp314-cp314-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

liteparse-2.0.8-cp314-cp314-macosx_10_12_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

liteparse-2.0.8-cp313-cp313-win_arm64.whl (7.4 MB view details)

Uploaded CPython 3.13Windows ARM64

liteparse-2.0.8-cp313-cp313-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.13Windows x86-64

liteparse-2.0.8-cp313-cp313-manylinux_2_28_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

liteparse-2.0.8-cp313-cp313-manylinux_2_28_aarch64.whl (8.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

liteparse-2.0.8-cp313-cp313-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

liteparse-2.0.8-cp313-cp313-macosx_10_12_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

liteparse-2.0.8-cp312-cp312-win_arm64.whl (7.4 MB view details)

Uploaded CPython 3.12Windows ARM64

liteparse-2.0.8-cp312-cp312-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.12Windows x86-64

liteparse-2.0.8-cp312-cp312-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

liteparse-2.0.8-cp312-cp312-manylinux_2_28_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

liteparse-2.0.8-cp312-cp312-manylinux_2_28_aarch64.whl (8.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

liteparse-2.0.8-cp312-cp312-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

liteparse-2.0.8-cp312-cp312-macosx_10_12_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

liteparse-2.0.8-cp311-cp311-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.11Windows x86-64

liteparse-2.0.8-cp311-cp311-manylinux_2_28_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

liteparse-2.0.8-cp311-cp311-manylinux_2_28_aarch64.whl (8.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

liteparse-2.0.8-cp311-cp311-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

liteparse-2.0.8-cp311-cp311-macosx_10_12_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

liteparse-2.0.8-cp310-cp310-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.10Windows x86-64

liteparse-2.0.8-cp310-cp310-manylinux_2_28_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

liteparse-2.0.8-cp310-cp310-manylinux_2_28_aarch64.whl (8.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

File details

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

File metadata

  • Download URL: liteparse-2.0.8.tar.gz
  • Upload date:
  • Size: 130.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.0.8.tar.gz
Algorithm Hash digest
SHA256 c03b7b32508cf35e7ee01ea3fa7dd5d45592bc4a7c42696f7505e445ad5474c4
MD5 d40e837389299164d943b065b3c19425
BLAKE2b-256 743dfd55e7e3d35630da403a5283b054e4a08e0025a04dda9988d5c3b37970a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1cb23f55f6c23e7a61da7ce98c793e52dbd09c5c7981ae9a023a1845d8c522c2
MD5 0ea174ff8262036c67fd385aea8e1907
BLAKE2b-256 ef4172a305935259c39bcf074c80b6191edbe4bc9c32a2a7d7aa820829a53f95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bffdcd8103fb708dce211bc8d452a143a4e97ea923f8cf9d6a8a6be6e958e33b
MD5 cacf17253a08e718e6a543039e03b7ff
BLAKE2b-256 8fbe2898ab755bffa5bdafea2bc894db4fa5faa326a96a9980d75252178e0db8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3ecb11b54518deeb0caaf7688ff332f5a1bab51f955a288b6d039dddcd05b5f
MD5 32af2f10dd5f36c18ae5a8ed4bb2ac15
BLAKE2b-256 81edf3a7cf33774d1d60953f4ed9fb47da4568d98a58838462e9f45d81cff3ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0eba3487c79d99a07c2fc34fbc9278cdad3b0fc36e9e695aa881fa4fa969a14e
MD5 99828698a7bf7d2b94d12a649b3755a2
BLAKE2b-256 597352bf131684a3c4c54a0b10d28ad563605abc75637e7cee834c62a16c6bc1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.8-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 7.4 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.0.8-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 105769a32cfd0b2a6ed7e6dfec969e58f60b23388b09c85bb9a6acbda247eb9d
MD5 d81a8111006f9d192a6c8e40a28b46bb
BLAKE2b-256 4c92e7d48e2fc7bde52025ba770363be147a9068a765dab9cdb8a18ab02664c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.8-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 7.7 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.0.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 750d695a36ad430828727a8a60e1f14a5cbfe5a2ebd6d33a016517a10b8d10e8
MD5 20dbf184a4961bea0bcc3c8762abac48
BLAKE2b-256 be66e0452655d680795c6eca66c770c37949d95fce1ce8e32a6341fa93886abe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 998319964a42d0b52f4b9c1042414e56a990d15c662901f86a0bd0d06c048d72
MD5 78592a3b5afd5207645c7c751560d5f6
BLAKE2b-256 ebd102dd130c22e973933613a21b0ad47478963461857e42f96876214e8267fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0233f11d5434637c24df925ed6898faaad99a87fdbe4a8cf9ee96b6fafb4e96a
MD5 c85210d639fd771097937a5c4a3d163f
BLAKE2b-256 9b5b30807ebf5237766c3bfdb0237c40ff5daf1443c704fe10eacc7eca19344d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 922b26acffd23016a34cbfb7f41478252e226225f9672cf0cfa2f8629a99baca
MD5 8d85b38c6e5990eb32232fcf6a897122
BLAKE2b-256 4a0658d11df5daf95d366d65b13acb407393aa4700bff6ee0171ece39a7e6a97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 253f297d2c8ac6742e36a949cb2589a4414090d2855b6e3f306703139ee6e044
MD5 c77f795eba944eb89ac1909c4fb4a5f5
BLAKE2b-256 22247e798f460032d9cf5430153d77a3f4bf2aeb8d0ac266692f3a366fce570d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.8-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 7.4 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.0.8-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 230563f83fd0883c476311e84c03e2d928cbdcda79b5cb226646d0a9d735577e
MD5 9170bbe4891c6606a691b58a35bc77da
BLAKE2b-256 641e1b59f9b8528ae867305b467a807c66ca54cf06c099ee64004ce8d5b8798a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 7.7 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.0.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8445dec04fc365864e138f5dd5b0aa8b6c1cdb094ab6829bd8e3de6b2a40182c
MD5 7e5eea7d45d141a6ef80a3542a6efbdc
BLAKE2b-256 c955b1088200724446eea7e6c4fea1d7eed65050d22fc20b051867aef672ece8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0583d453c183936b130ed4fd6267f1f2fa351b34b57fbdf3964875551e6329e
MD5 a25c386bd4adce744ede9268041f221f
BLAKE2b-256 755cbae4c27fb677e4e9c5633256d4cfd952fe92e9c170a009326ac8b9581fd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4781ef2333a0f660721987f25ee13c654189d756cb4ee3566fe0d3afeddd74e2
MD5 74573d822ad9da454447cfea550f9495
BLAKE2b-256 c84c50ff9111b7df49acede59d5dd0bee95706d32e1c921366baa78757f8e775

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d55ae1a870bd9d5f50eb247befc099ec32994671a5c3eeb38bd5cf386ecf144
MD5 9a7689c8f9229332a03b436adc8a7e40
BLAKE2b-256 36143b339ac23cc561c8ccf17b6f4b1016c65c5af3f4feb8f14a7a0b691a1b94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 af76a8671b73ba57fd289338953cdc435e55b14c181f4431a2ff9f90b6fad8e9
MD5 ed368d688d718f0fd5cceb771529e971
BLAKE2b-256 828cfa5ab69814d175a1468f923556aa242825236b112bf64e51df1233b78bac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.8-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 7.4 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.0.8-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 eece405e904992c062cf99ad0dca82b1c4236a420a5fe5fdc99ff7ed4f3d1f5d
MD5 696684810268a3d706aa1ae06f9eb1c6
BLAKE2b-256 2c45909ec32bae5218088519aeedc16d638b7b037d0c5df18d04f15879f8db59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.7 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.0.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c2d25eee102c33c367076297e3de83b1f48440eb9ed5a4ad3a6e79e1b941ebe5
MD5 7e3010980e17e0b1496317fa97edd6be
BLAKE2b-256 0958146105bfd81d17118b5a1300c9341959122ca87501eb243756859825342d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ceddc9b104147498e1bb0a4591b40884d0091a00af46335a99a7cca94f9a44ed
MD5 7d341ca701d24c086b08e873ad74e6b2
BLAKE2b-256 cdb3db5d7a2335779de7cff765a6646083675511e746181a59d51ee6eeb261e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e3a94b83bc0d22b9b6c2a6b1669447114949b19d8fc3d2877aa2e60cf3e1bd6b
MD5 704cfcafb5cda3499dfaa5b419c56bbc
BLAKE2b-256 70a695b5ca961598e77879e9f3954b6274290ae77d29fb97e0abc6eee0fd5a35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e3596d5d45d08880fb59306832247c9b56f81fc12f3e0fe5c9330c39c5d3b23
MD5 9683c89a85e5f610e0626c57384f6643
BLAKE2b-256 0d5ff6f0527e0baaaa1f9f2b8a06dcde221b256c3aa05fc70645a4411b048e6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1486987ef620cec06b8dfc365505f15cd5cd4bb05dac3775d260633df7060779
MD5 eea5e6fe9a77eb66f71c05633340b614
BLAKE2b-256 8cc9d33d5baaedf0a753c6729ec5e2bc62f6bcf453986c071ef3ceba485bd922

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 052c2d5b5a92b088e72b29c2e6874fbbcc586594e18fbb95d047f35037cbf84a
MD5 d9f14748d09e34afdd722f899b94e0c4
BLAKE2b-256 67431ed1fd2f51a068bc8e84c2665fa4590ab5b94b04682d8ad71620280592ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.7 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.0.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 10987345138e74fe3ca037cb60d21dcb28afd30df9fb74b12b3591cd641b2b23
MD5 ea86b933d3b4dfd4a6bf270fecd31177
BLAKE2b-256 5d99dd2eec4a67ad1d23a25f627b9f55932aee90ed9825819b3d6ce20d2b2c0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b4d689fd35785f856b6a56fa034c453fad2ad6590ab286422eb780c956961f69
MD5 827783cb64e65c0063e79c6acc0ba2c0
BLAKE2b-256 45329f385345e19919c0235fc0d70a5bea4f6e2bb9937104f4bf40bbfb34c566

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a55dea506f6bb93535116dfad54bf207e4de89338ffc7a355f626d18438e5147
MD5 b71b6b1b700a513880c663028cef0d9f
BLAKE2b-256 71a99e1c88744c99c27f67e9eca88435af4bb27a4a1ef1f032264a2d3df385a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1af386d9d0e053bef2b7bd9da09435ba284bde53a9c098baffae40daf538cd9e
MD5 a5910f4951e30e54b3636e64834e10c5
BLAKE2b-256 eec3bfb5c7fa58d6d983b321ef2e8536527fc2056a3307ef99ca423e181c4b97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bf7f8598b65fb72cdb79d0cedb86e94e488a5ad1c0ba1cb49d7d23d6e9de63ed
MD5 9d23951ea69b8cefbae3d487fa4580f2
BLAKE2b-256 21e10243dc5cf57446a246d6a2c7fbcbb46e567c85828a150ace3849e78442ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.7 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.0.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b6271f5d9add5c14f7e692de150fe383982c7d9d21daf4dd4b33fd968ffe5beb
MD5 39e455c24f7622455f61ad064c5be2df
BLAKE2b-256 718c10f36f9420630c7468b983c7a047dc237257c8416b26db4c4339eff6aaa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 465ec7d118dd8011ab7cbbf7243478b25d28c50aee8395617fb844c56215c627
MD5 fe8cc6f67ab58c678e5e45be7688cbdf
BLAKE2b-256 cb9a9fc2cf6967c2f15369c0d20d1a08ed19c2b674ef2371a81505f648513933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.8-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 440045bca8a7ad8e162fa80b0b1b48d12180d8c6c08bc5126c0c7c36e3cde4df
MD5 db3651bf388ece12cf056a6276a96042
BLAKE2b-256 58cc2005b3b3e36dbc3e642d041e6e5764a9aec3adfb2d1c6a079798e5d9778c

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