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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

liteparse-2.0.7-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.7-cp315-cp315-manylinux_2_28_aarch64.whl (8.9 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

liteparse-2.0.7-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.7-cp314-cp314-manylinux_2_28_aarch64.whl (8.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

liteparse-2.0.7-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.7-cp313-cp313-manylinux_2_28_aarch64.whl (8.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

liteparse-2.0.7-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.7-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.7-cp312-cp312-manylinux_2_28_aarch64.whl (8.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

File metadata

  • Download URL: liteparse-2.0.7.tar.gz
  • Upload date:
  • Size: 120.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.0.7.tar.gz
Algorithm Hash digest
SHA256 42f17456d58af25d20ef868c8115ec20eb94d68754e0f521732a2636c4f55db8
MD5 7e31965ad37e80bdc1e5a464945cd888
BLAKE2b-256 6af0a78f8d67e4e77d18b1242424e5a7157a007e7ef3e821218a527f3bbb4ef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4179d89bfc38227860cfead19605067f349894d9b32f49517701882d0caeb997
MD5 4e77cbf33f7caa8c78e2e9df1f7ffc5b
BLAKE2b-256 80119a9021f543de715140997a58acec188c2e386a60c957b31fa6e9cbff3496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8abc81f3bb5687c00ed4fad337373ee11831022eb4a761d59ccff2924be1903
MD5 d39899dd0022b110a895d3356e08ed39
BLAKE2b-256 19e9e835faf3a7eb47782e809028cce2505d0ac2b0d2fb954119ea0c5c5def65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64be1b0225c6f6fdca9f257179d9f763c7b017060320b4e485581124dddf302b
MD5 55154018467960936ef8573515b8b78c
BLAKE2b-256 b36e02caed64d5b115cdbe12bf9d457921523748e01cd15e6aa1f94b094f1e5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ce338fd9df9b3b51741410fab6a1a783fef0ae78530d0b7559ca442a514a581
MD5 a90324abf7938bd89f46193237b16052
BLAKE2b-256 53378db65fc44538edad60e156f7ca2287276ec1a64afa13fadf6e9710ed2f5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.7-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.7-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ca61c023b52e064f952208be6d51a06ad402285731a07d4d735e5c7317a9363a
MD5 2cf8b24d79bceecdcd9223ef1b8d7756
BLAKE2b-256 752228bab14a9c243fb7e0a2e8107ae8b17b4e5bc6082f2ec54462bdbf01a781

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.7-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.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 673d7d974f4ce2c72ce1c807477931069fe3576c21e0f45ab9f25e0ab7e20991
MD5 d253953abae01512299395a60748fde7
BLAKE2b-256 269bd50bc2773c4b54b44c811db916c2ad16943b3259d1d9983cadd5999a8022

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7afe9077251743f439f0c9d2dfde73acf7e958c147b137f9e4724ea62af06d86
MD5 448faefdd95e5c536e3da58943bd2a97
BLAKE2b-256 2c75e0a72c642f99b8f136dcfa43c8f1abd5e3b2c6c810bbb9657f7cfb75be57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c574bb79224584bb7dae123f7cc4ca9feea6116442c2a486736d5c094a660dd
MD5 dcfcfa123dc3fc9255737a3e8e45a565
BLAKE2b-256 1bae15706c6468b9e5db87f236757207e1ad840319603513f31544af3853e560

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59d4abd31d8722a829b418e82901f8d442078a86103f1537559d95bb402fcc0c
MD5 631d3e79b24182462fe005c5bc3b7ff0
BLAKE2b-256 4dea103771bf2085ebb9d0255ed10a624103f9d408c6718abddf9a0276dea663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d204fe21655ab07b1e8055c908ae19ca3295d315266667262849cac1e5cc2036
MD5 9d2234e7a7e1226d3020049c860ff446
BLAKE2b-256 63a1f835db72629c8e8987a74b0e43db91bd68c1c106f9e8f04c55b1e85b1df1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.7-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.7-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0295b55637b8441843a8a4a01ae1873fe77939c2a33f74eb77b16ec7e1d4c54b
MD5 15c94c27ce047032b8045568de8fa300
BLAKE2b-256 ae6e90686867de0b89d6948a3cca76b275fbc68273ddd7afb9bcd557239257ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.7-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.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a80a4c6873c14b5ed6f7d083d88664a1a43bffa1a9c6e809e0fca86de41c90ce
MD5 9f45be33cc9abb40498c5ccd1176e551
BLAKE2b-256 17847cf59af979f28032ed30d497615267102040d027edf836bc37de32c775ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3760c8150ffc85d3908405380dd9f47c221a8590855e8534d0994ba737ee9079
MD5 09ffb9f156978acfb651469c66e19e89
BLAKE2b-256 246f3d4c9fae5f581d7ebb2b81944a35e4afb311da62b8f92b721fb062f920b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 537c6c54cb686e135170d8a44010ac78021c225d46bc4378e03521db1eaec246
MD5 1f605abbeaec6440432a364427cee09f
BLAKE2b-256 34a398ec394311b0a9fbe08db88c2a487d96d79749311c85281b1b2bfadf0824

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4c55bab5ab265b3eb6d06588c59ccc43481cd2a865136f9ba0d9ed82b83c460
MD5 ae4a9316b66c30b6865220158f1bf5f3
BLAKE2b-256 a0a174156b53d56d55853afca9d46bb2593f9342ec49a495e7ba09545e1728d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 60d2bcf06c264d9dd32fc9a1a7f50545738aacd90f8c039ebae1374db9c599c4
MD5 e811a838a825d8fe8dc3d29449a5d592
BLAKE2b-256 b14fb9804d18c0006c94d6c5e60406b62b7448f8c6a0a5379e9749b2088953db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.7-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.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d56084b232c9005abf48218b161e612aaa9f41dfeaa32d3cf432c321990d8210
MD5 8abf2bdd4ff91b0d18adf87013a2f72b
BLAKE2b-256 c1e31ca32d7b3edae206c844e0dbcc766f0d30221df6abfca6a0667908b9de47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.7-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.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 616e694a2d3207a4f3a232bff933a41aac97bcb8851a38e5182f797f33fd0c9d
MD5 590ed5e6caf26487cded74c448189601
BLAKE2b-256 fe7a9293c3f2a4c05eda1a87b7124c8ff2a57b1897b07d010ea108a9701dd9cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 444c3fd1e30928b66946cfb7a0d9c86588b6366c1b2937d80de703d75563bb24
MD5 be76d565f5a5d34eca05fb0d960945f6
BLAKE2b-256 81cf72d45e58b3f5bef539e54fcc352c24a52aefc75fd1735c182c024b980136

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 91e6391057794f285ab4a99feacaec600ed814901724e1a78dec0f52b7c6570c
MD5 4b953f4d70bbd997e892496b0eae6ffc
BLAKE2b-256 f4e5efdd8fd0532ab48f3ef93352a602488ce83681e98a7c3dafda2dfbeb0b21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7080f774c650823eb2af98182703ebf12833248a09cb44b4e45dbd3119d66c57
MD5 f9409d3622e0f996084142e563948c78
BLAKE2b-256 c37c5a0d159b63d1460f7b57573f6b20c8ff2e8265530076aae1804aea1294ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 069e04601225f61493ff9f8d9f61896482d4828a59595f4ae77a0dd2e62b53e3
MD5 82feeabcd1f0e681cb5252fecd934752
BLAKE2b-256 4e1e4625537d4c86609f44a3a2dcaef7872cf8426e199e89df1ac207537f1400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6de52ced02f982881cc02aeedd87ac9194321c159c9a6892c38b58edfa8f0d92
MD5 ca80a340d4e510cca9323e46b1f63bb3
BLAKE2b-256 a922d59bcf2831ba8fbe0c48872d263b187d05595ba5f8459b43558e0a8c4392

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.7-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.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 16e08bdece3a8e4acdbdbd47b7680819a4c63dbe3e0cade96fbcc6d962cb4725
MD5 a8587cb74d366cf6259510200f591398
BLAKE2b-256 974cd48bf5ba42d1e08a472421ff638ef8a4f43b88be867f10a093e4571bb66e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 246b7d98de647f04fc635929502ca21c5ed6aaef5b6b70f6f26c01b0c185c1f5
MD5 442a361196fbba991a9624339db1e409
BLAKE2b-256 cff34f2d54b50c97f9c10ef1e3409990e65b101ebef396d526fe0c9929ddbbdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 729143540ddef9d7939336834ab1bd488a0e9ebe435ac552682ad7fd97eab507
MD5 220233498beb79ced0d0ee2276731508
BLAKE2b-256 e35c3243f9cf582fd0c0a23e7a5b101916588b1c4998c5d4302990d68c028769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a873935cc56c6e8abd43d5fd6277686f7b1e255889fbd3509a1199799d549268
MD5 c604b5bd501d5997cc978a090cf16337
BLAKE2b-256 dd2ddad238b3109dcdd494e8b0dbfbff5e828261ecfec71ec56a67b500dd4e6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d6d0d6ee45044f45d0986c270175d6f165c589a48e51191008d4947aaac56185
MD5 2b0ad7defcadd8dd8116f292b1fe7cbb
BLAKE2b-256 d9052a016b1b56d3111a6ef1f3455e63360443ef0fee9f8ce64f90aafb80af03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.7-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.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 97452c883559f47b62196dec892637c1f7e46fd342b5f9d04dd2192fbe9fae2d
MD5 bb3ca538cc6d4dadd2ab202870090ebd
BLAKE2b-256 a0fe1d00b8510ef370a3ee7de30f6575c17c04ea9ed45e5913acce1590c48257

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e5c0531fadb41b69747738b939418ec53b711480c18b33eeb78000100c8a09f0
MD5 14454b2b836fccebaefaa768c632efb7
BLAKE2b-256 5e1340d6870169e71dc6a0d00ea2ea4b3e9eb776088c42a8f994ebcaaeba4f5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.7-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26764655b190b640417f74d424ceba3ad1a5a11f0919db26f2452777eaa068c3
MD5 23496219e45b693bd9da66254c223bcf
BLAKE2b-256 552f9a77a0a38f05804d407782d78eb05f857ac4c6b923302e03b2b4a71b349e

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