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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

liteparse-2.0.5-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.5-cp315-cp315-manylinux_2_28_aarch64.whl (8.8 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

liteparse-2.0.5-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.5-cp314-cp314-manylinux_2_28_aarch64.whl (8.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

liteparse-2.0.5-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.5-cp313-cp313-manylinux_2_28_aarch64.whl (8.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

liteparse-2.0.5-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.5-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.5-cp312-cp312-manylinux_2_28_aarch64.whl (8.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

liteparse-2.0.5-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.5-cp311-cp311-manylinux_2_28_aarch64.whl (8.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

liteparse-2.0.5-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.5-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.5.tar.gz.

File metadata

  • Download URL: liteparse-2.0.5.tar.gz
  • Upload date:
  • Size: 119.4 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.5.tar.gz
Algorithm Hash digest
SHA256 ea85f65305d4ea6262c08e22bf7579a57dc25411e7226378d65365a6e24d11b2
MD5 419e9632b8da4a2c746c0ae58cffe2a6
BLAKE2b-256 6859412f3b76a36b6eab549e1b3f600dfde331ad22ed18feb1183538ae1c0c5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5b3a4af00aad0c3f2f56b0370c16109204daf9be1205d35bc0fed7ef36dfe0d
MD5 64f8aa366ffcfa83dfb91fa17cc2f2b7
BLAKE2b-256 a5bb59538e741b298ca8fecd57ab6543bcd71f2e49e1525f2aa22c65053ae86c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9f535add9c41c87cccb85b87fbbe0fd89fb4fd9e1a1c520aa34f808fb2fbf29a
MD5 43b877d7a64ebcaf6adeacbf0c6550de
BLAKE2b-256 618820477bf87a6245956998eb9cc5afb7032eab5404e7897bd60e15e1bbaa40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bea9e4f1753a0a6586987db03702dcf2474dc9b0c2ecc34e63ef6b7d05b3c825
MD5 9669252bc1cb7451b86a64ce59937a4d
BLAKE2b-256 df287a05c6bf1fe89f92615732b63f448566cde7990fb31435400fd832b04665

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 59cb38142d2e0164aad99be6c0129a489eb915b555c0043b217d214b6569f670
MD5 aca260503d26c7701533af4f7cad82c1
BLAKE2b-256 d3ba678ad4e0e7915642cb9b06e68f3f414d4f8098381648fc6b5afd3561d218

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.5-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.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e7299fa45ccb37122039948b8597f38a8ded153b01c37e3bce6cf59115acf148
MD5 322f08016ae0d467b2c7e08e8ccde2cc
BLAKE2b-256 f5190a94689a9778264f935e8898a3f27e58f06dd81edf4f72717d7a99369b5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.5-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.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 149f654b5286d64119657d7e322fbead85e2bbccbd3d940ef45e6b91aa456142
MD5 cbae3c26d3b9511d42ac8caebc88b5a6
BLAKE2b-256 51ea22d1c43972eead7b15553c1514ed4953b72a9286f93b83e1190f1a02ba77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 edecca3a161c94f0a93fb586c97cbdb24c7e82749269a887662decbfffc0cc0d
MD5 7e6fdac40d652e698e8c4076a7756bb7
BLAKE2b-256 5266b474531d0d47c50a2fbbe92fa31d057b95dbbe767f374401d23c7882b549

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0730c1f036efa280f588c6dc47f80e556144a566900ecb22c88c8b3a8a10b05b
MD5 9bf79d576da6a500ac47539c97bf1c1c
BLAKE2b-256 2c13d1a719abb80d8b13dac6a339e07eeb0d86c2b1f111214a22739bba86cc7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bde2a3bd7d92299ae59979b3a0d71bdd3dbceaedf9dc9e1a6944e55fc62c888c
MD5 33711b75cece13cd8e05de9f47e13301
BLAKE2b-256 6a18f7caab4c8d6f335655b73ace8c68601ef1aa523236c1c7576a6ae00e8197

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a6819c76842b6dfeac8a221ee1636351b2d2ba86508de67863ae580d5bedd751
MD5 9f33b09f8db84a41175cb1727ed49640
BLAKE2b-256 92d319d07400318c11c31764145032b71ce7c78aefaf100e228b3a6e6c8c3dee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.5-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.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5140bd595e9854adc6d227994bea72325255a6e15368422ce3d936cab37affbc
MD5 4d189a62da1245f107e995030a8dade2
BLAKE2b-256 0897ee7745c130ddd12268b82294be2767aca110aea914d4e418f8c08b98e875

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.5-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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2a38d2130980f432022f87b30d1395804f56fa9120113f625a97104f1b732a10
MD5 625e15add1322475b63dde172019b716
BLAKE2b-256 43e732dc261c51850fe5385a5982082a01a2cf1a1743e75bd9dd26d0a2c16218

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 63a9994241863281b4c5ccb587527d6c465d821dd40f1d7e7f9442f3c9f0a830
MD5 f6f28ba4aaccef107111680fb31120c4
BLAKE2b-256 d8c1c05d144eaa7b53ff52973f88114fbde41883b9c726319b693e0ae6f6f9e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c67b27222c3e31fe6053913bda6db9f3149dbe3351a265f28684b5ada0afadc4
MD5 991a037aaba1213ade242e28707b076f
BLAKE2b-256 62760b5c525fd4839f21244ed93ad806f852eb162452acadd1200c19b1e3f213

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6de6b26415f14fdfa28c1abd297dcad56a2ea6192d68e6ca7f67d84cabc57fff
MD5 d218354409656a7bed61bdf5384ab921
BLAKE2b-256 52046a6688fd66c460408bc0754571b4fc651ff5448427a6500eb69933a33949

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7bd678cadfef01a4eeff3081e0e4d5ae6d2ae070adbe38be9adce81b66217e97
MD5 4f6da484f226e50428292d57b7f2cd8b
BLAKE2b-256 e89df65db881869a715924cb48b3d7c8c8cbadce97593fa79a04871dbc0adbc1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.5-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.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 1192f3a2d372c583783545735bf6ac572b4bc4efc93d1b05e1c4aab7daca905c
MD5 4f931595c52e85b9fe24969925009e36
BLAKE2b-256 8b5f790653b59b4804b16142aeaad31d7193bbfdb505b1a3d716f933ecbe0fff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.5-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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 71bc571d9e145c8782a86e0d472d4cb7f7f1d6bada205d63f0f0f235f3c46028
MD5 e3a507ebf711eb0f080ce015584fea4b
BLAKE2b-256 c1c0532ddbbe20e49a0e2e1fd045ffff6b568ad9b604d21b0f67bc9364199578

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4face882631fd7b7cf9cfd24c1b946e7f7d8d1a1a197dff5550b0c4abf93d05
MD5 fa37c31b11e112b1e9fb9ff1dfcd3f85
BLAKE2b-256 a8d564db0666cdf05067835f76cd91a1ea63e4519e52e40a96006e3fe9ab94ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c3ffb3fcbd9b29e8e0d5aeb15f7fed902a7e9bd19db61195efa912af1d4409f
MD5 bb02d989ace175e8d9ea24c63df74d91
BLAKE2b-256 91f534569bf9afc8c32fc74b2b9523549372f6dcdca70c6c3d53cbff7f5757d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f64fd70bc4887f025714ea59b298976918aa0b6696d135fd5be6361cbebb2a1c
MD5 5dad4965fe2289ec72446128d48340bf
BLAKE2b-256 20eff4184e5a197a8c64b34f5c868ee88bbe950ed779e8898b3e955dfd101f9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 915a430b42fbaee46d22e1f12fe00d814f6ca9703996b199ec10583764e5adce
MD5 57ce6f74571d63e0b4f1edae6e53a74b
BLAKE2b-256 676973dd2042f151ce6ea9edfac840700794cffd61aac479bab86ad307b15bc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f5629a4dc82fe31ece2791c3f93798f4dd63db3f21137bbc42884a214082abd0
MD5 1f403127cec4678065635f7870cc315a
BLAKE2b-256 18a8582d99e6c16b5a6577dc66926c76874cbf43e755297a386bc6eb184fe856

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.5-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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c3b15c026530cc82fd9d584dd28fdfdd03153be7a9b04d3aac430e064b9d6538
MD5 da062e594f3c056631dbb138a6a514fa
BLAKE2b-256 92e5bbeac971a766b05cc77bcab5ebb7cdf915e488fd4103215250bd73a2ab63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc30ba6aaa5fbb2135a1fbda921cb1f6b5239baef46358910f44b1e55d1e9cdc
MD5 89eb29d093175e10edc68512c8781c93
BLAKE2b-256 8d22318ce1c435c5187a2191fbf3c8a4c7eada067b9be4ce7aafb8d35dcb91dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 abd4272964a1f50462aa6d1bb5ad2b4a4c19b5e515b5272b21304cd17bb31c43
MD5 a96ffee90c9b2da76ad2f8d9aa9586ac
BLAKE2b-256 f6410c4643faa87e45714f5c3cfaa26b8d4093f5eb2dc7c78d7c7d083431e1d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee289ac57773ff80b5e04f149b843c6f945783b1af9cfa5f3eac0fe8a199eb6c
MD5 3bf38f69c04fce71577a32a0734c3db1
BLAKE2b-256 35a72e815e55b52383f85d4f293083163a9403e7c1a0b3aefc495685db97d408

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2b308848728844fcedac72ebf6eb4ebffad41a5feaf0b7c5e53a6d66249a4919
MD5 8a2726d1b03fb8ddb8d5cfb9b99c1952
BLAKE2b-256 51224929c51034b5c396fc437dd18afc307a897084b3d8e010b8594265b09e83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.5-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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1647e78e22c33b1b5ea05c99c0a4799583a2f9870a1ab19905a06fa1b529e05f
MD5 8619a66fca4132e16baca74beaf1d186
BLAKE2b-256 fd15f89ca70b500b2b64e102f40a6473f24e972bb60c2d0c98bd0d9f25aea2e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f6b30bbcb961aa9d5425def1156d729cc783917ca77f42101df2f3cc60c5d78
MD5 c9f6dd207a0ccf9bacc3a1927fbde776
BLAKE2b-256 18f4de07474ef416b117f118374dd72d656976be7af936f32f8273f1184323cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.5-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4e7e18e1e4736435640c73012a7906e99f0bcfefa63fd57f62e4b1fad466ed1
MD5 6fe5207e65a3300f7cbf9809cb490dcd
BLAKE2b-256 77a3869028cb5dcd365732bcdb96430a6380b73307b6c37f2f6d707720110e50

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