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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

File metadata

  • Download URL: liteparse-2.0.6.tar.gz
  • Upload date:
  • Size: 120.7 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.6.tar.gz
Algorithm Hash digest
SHA256 9844da8721f480b2ded2fe126cf20bec394294ac718bc19e193a66e592efffe9
MD5 4fbbdd2e7065f7773156a6a8d36e5413
BLAKE2b-256 25332325b97a520dd35440a67af901c95c1d9da7460c9e170caea09cbb9c6101

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6708e10d693fb3f42e81b318dbcb8ba1bcc119d6d80d7ef40bd588888da95a29
MD5 01612d5856013d66364d8a8368fe6ee7
BLAKE2b-256 f718eceeba766c832d74d172cf591d7f4c647431f6ba4fec59d775be7921d09a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9a2758fe5a59b51c975ad60d49eff2a2b36629c9136180c0def2b6778010615
MD5 a297f9f0693d660350eb69a8d3b6107e
BLAKE2b-256 0490a5f87bff4955abbb9e5e6d7f59087b1ddcae6f78a74d86fa118368340bd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 429facc55c38397bfdabcd2f96d3e13c843edfefcbffc760d97ded43882dc68e
MD5 71f50ca03372ab1a4b7e5a65562965b7
BLAKE2b-256 fcd32a41330e824f9f5beaf4313d703afa2e518050dad4e58b067853c43224e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea91bcf7e82b85aec1e8731c5f41bb5ec2063b24d159e34956bc40c09367b870
MD5 2c209ad61f4e11b74b0e83a203bb9e6d
BLAKE2b-256 1f29e316fc6fd14ef455675ad01451ef1364d31201b37caeb28705e5d64a14f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.6-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.6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 8455bad260966ba85ce2eb5d4ca4a66a0d24e14253b5204185f9cc0603d949f4
MD5 bec458e09b4e7ef7a83e3b5d3c7db3a6
BLAKE2b-256 ead6c2885b86de55a00c98dcdce07e83a1cd6795588b0adb5988be63faf2d7b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.6-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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9e1ee742223d4135d9163d008c65410b1dc0394ae083a03e7e50e61a09582b88
MD5 3cc9305a8f1143bfa3a917f504aa0c64
BLAKE2b-256 1accfb6c4f6c615d28f96d0318d01e2b9fec8ebc1832d9a5d13e298d4228db3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e621124c323925ec7ca96e32adcbef7b45263c6962c8d0d9c3c8f6376defded8
MD5 aa7de85c51d886cbc38eaaf482262849
BLAKE2b-256 6ab1355a4aed584f5a6e20f55faf54aaec17df59f15918c64204cb234b0f2405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c32b06b5bcb2347be5a0b7a5bc113d73433102e60ebe0f156fbd985837ba177e
MD5 5f6e6b8a8993c82f428014356be27f6d
BLAKE2b-256 27c31a1d05240107d5014389df6e559d05b1e7c4ed4961d9337b8b840b06f697

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bf97e1d052ec7662f0f4ab9e89aca0b5d97f0b263e617b1d3c7ce9c5d9aa72f
MD5 012a3be17300a4cae384bcb4d47bfa2a
BLAKE2b-256 1144fbb3884a9b6fd1b23985d91851fef2aeeaa43e4b4ae11a654176fc12b7b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1dacd78427ec1f840cd1aa5183e51e8e9218e76b56d98842650c9492f34f48cd
MD5 8b18070503d7f0b3c489ca6d05a8bb56
BLAKE2b-256 7129136d083fa83eb769d39a7c0decdac63a0593356bd9ea9635a86a7b2a5281

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.6-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.6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 81f92d96132c210e4eb55f9821ba5acd17c4b1a143b64296b2bdf72e83900b4b
MD5 0d5f8393ddc1b5ce9a017a1510556f68
BLAKE2b-256 f18a079e79b48128cce2a3d74c242e3918546f6c7c3fdb27bcc44d6a2c201c44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.6-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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 448cdd32528d1b8cc2c48621f3f7802f1ee33dcff1a8ea403e7b9114ed76b8ac
MD5 be06900d6e81ed68a956270fb3352420
BLAKE2b-256 7d84b211ce23e641930fca7b2302b0612863554c9cec6c20d2e14545faabded5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c038d91d4cb99f6f28079e80ed2fcc9f927274f7863945bc0a66645e33346e56
MD5 a2d02b868ae51dc529754edd356a50de
BLAKE2b-256 3d7d8bc0724101d5eabea07a89164e9b1dbb079d7473d046452a9a03cb5cef04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8972720e20de43e909f21a0141e9523f7ff79e54409c6d5bfc88faad9f4fc50
MD5 7c6375225bb66f7ccbb709fb5050793d
BLAKE2b-256 e4284ac4142fcd14b88e695aaace61f8a8b9e365ec644679fdbf69dcca4742ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e9bf1d65fa6fb27cac55fe2a6a89c17dfd1bf19c6f9c411f60ee47c2e779614
MD5 a81ca453d7eb63200a278205022d4be9
BLAKE2b-256 659bffc63065ccc141c9165d9c722e26d08a801658042451bf921251797f22e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 08db59043f3925769e691d6e7a2cfe211adc60a06e6c2764466f19b5450849b5
MD5 ebd2f3260ce3e5144b9bd4e9ad089b3e
BLAKE2b-256 0e08f3e5a60cdf4d924aeb8215054f71d1ae79c9eb3faa802a08851fbf73c5f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.6-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.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 bafb73b4c8a401e953835a41b3e1a9c84a07f461d54b08795c14822e55b15adc
MD5 60ff52b7663e159fcdebb77c4e60bd03
BLAKE2b-256 938a2a32e0bfebee430b62b8b03ee32f26eaf6e4cc6ddba1f1e0239a8c40f3d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.6-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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ad7ecff1a894f39556f2658dacf9b576fa0b85ceb47f8d108f72a5be7a51fd1a
MD5 f8e780ecc7d217623cbbc9b43f6c2c37
BLAKE2b-256 0f41ff2b7e441ccf08154b21f1982f997cbd837641bee06d6d97110b93bf22cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e3ed2d556a8d314b20ce028c855da199880262feba64483502df850dd922607
MD5 27d96738a15bdef03e3c26b4c4858cb8
BLAKE2b-256 8b5eeb91c0d2ece48ceebc6b334718c3c5c1dd28c6320c912ac7361478872fa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85a8fb433d42ecdb79c6f1482a9086c6846784f22b4808bdaddfead103a92d09
MD5 89532cd0cc0a00f60b008d0b52fd3ede
BLAKE2b-256 9ebd214f5970d4b79235aa0265f79b93c1cdfecd22f8c94aaa250da046163a35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25891567a157a0fa07c9d6503767c3f0d5267a1ad3d6123e42cf74d08fbe6ff0
MD5 9cb956910d5bf844ab22648feb88fae4
BLAKE2b-256 b3c56d582f93359301d08d6c14bb5dcbb3e13957653975b84db1be310ed16ec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1dbc7b9b22133cfb2052efa5325fa1983e4a3272fd9c3a2d9ad8f48c43c547d8
MD5 f5ac74c8a6978f0298d04368eca76ce4
BLAKE2b-256 00a539a23c769023fec44b39439b049814ef2cf024936e5a4ac998b4f52baf5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a1d80324b17d3deac92ce4e6a67d6db77cc9ad8b3fae88d86a7729bb03e41c67
MD5 9f4b451686f25c724a55f98a0ef5dd0f
BLAKE2b-256 36be9be359748b67c43bb6f2665bdbdc7b9e878d4e7fadd5fdb6418421fa685a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.6-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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f44d554452d3454c5420c9da6e96a6b03b16ff228fd27dd28b0cde9f8881f92f
MD5 52cae745463221d59933bcc5a3d1cd84
BLAKE2b-256 01f81eab426e7e0131005a9bb129285ccb33ef2129cb88af2caedbea0e46dfbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f269a074525ae6d7e6db78d67fe3d7478e085698aedc15947a6b6d2e2667abd
MD5 b3164aa17f03a7d177c0bb3786562e7f
BLAKE2b-256 1ffc14adff06233becb43b4bb4e80fa6b944146d0b772679493ca0dc37e14eae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c44e6f54ab8622ac535a22f11ef1161ffc12b8a55ed05fa936208b1457292dc8
MD5 b64d5b0904cf31e8739c72fbdf73968b
BLAKE2b-256 71ac50cfbad4124af8b103b6e565d40eebc2a3bd19cac1ee0cf717739393e476

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8796029e518e3e920ce0c1775738dea1dedcd1c7cd81e52a5d13f17543dbacdf
MD5 aecd9c59391d8f88267f36505d1acc71
BLAKE2b-256 1332faefbfd971c9af2defa7b2c3945287240311b154035d0fbc64b9f37e1bca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 29c38dae16993af328938d58e2489434aac0a47bbfac89c63bb87a88308fc53e
MD5 143209cedf6d558ec5daf438022ba200
BLAKE2b-256 28bb74857a3db4458b1aaf93b0de88fbdfe5c10165a2fe3c32fc22c1ae082e63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.0.6-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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4d822efec8993c745424610d66f2271736a1ee1e4b3d15cf8d27ca4c72c4b4e1
MD5 5111c6fd714755ce865d4da6cd069580
BLAKE2b-256 6293db861880f59b8e774fa5bc819f34bacffd153789d7034ae21dadee6c5c78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85bd2bc8ac01901716c9182227e514f27b98201e08ce7d214e6a840e03ddc0bb
MD5 92ab8ee48b104f5b6d502df2d3b5c00c
BLAKE2b-256 8bb0c84000418bbb04958d91781b25809d749983c4e1ed29d53188524cc259e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.0.6-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2a4a55b779cfbf0fc2700a7a2d0bba2efa88853a8e9e138d6ab77cde5f90337f
MD5 2d0c7280286b22b13ab89ff7be93b698
BLAKE2b-256 38adeafafdf829b8d4ab0adbf4072d3219956c2f4c736d495ecada62a3f74adb

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