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

Markdown Output

LiteParse can render documents directly to Markdown including headings, tables, lists, images, and links reconstructed from the spatial layout. Great for feeding LLMs and RAG pipelines. The rendered Markdown is returned on result.text:

parser = LiteParse(
    output_format="markdown",   # "json" | "text" | "markdown"
    image_mode="placeholder",   # "placeholder" | "off" | "embed"
    extract_links=True,         # render [text](url) link syntax (default: True)
)
result = parser.parse("document.pdf")
print(result.text)  # rendered Markdown

Reconstruction quality varies with document complexity.

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
    output_format="json",          # "json" | "text" | "markdown"
    image_mode="placeholder",      # Markdown image handling: "placeholder" | "off" | "embed"
    extract_links=True,            # Render [text](url) links in markdown output
    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)

Document Complexity

Before committing to a full parse, check whether a document needs OCR or heavier processing. is_complex is a cheap, text-layer-only pass that returns one entry per page with a needs_ocr verdict and the signals behind it — useful for routing documents to different pipelines, rejecting ones you can't handle, or estimating cost.

parser = LiteParse()
pages = parser.is_complex("document.pdf")

if any(p.needs_ocr for p in pages):
    # Route to the OCR-enabled pipeline
    result = parser.parse("document.pdf")
else:
    # Cheap path — skip OCR entirely
    result = LiteParse(ocr_enabled=False).parse("document.pdf")

# Inspect why specific pages were flagged
for page in pages:
    if page.needs_ocr:
        print(f"Page {page.page_number}: {', '.join(page.reasons)}")

reasons is one of "scanned", "no-text", "sparse-text", "embedded-images", "garbled", or "vector-text". Raw bytes work here too.

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
lit is-complex document.pdf

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

liteparse-2.6.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

liteparse-2.6.0-cp315-cp315t-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

liteparse-2.6.0-cp315-cp315t-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

liteparse-2.6.0-cp315-cp315-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

liteparse-2.6.0-cp315-cp315-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

liteparse-2.6.0-cp314-cp314t-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

liteparse-2.6.0-cp314-cp314t-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

liteparse-2.6.0-cp314-cp314-win_arm64.whl (7.8 MB view details)

Uploaded CPython 3.14Windows ARM64

liteparse-2.6.0-cp314-cp314-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.14Windows x86-64

liteparse-2.6.0-cp314-cp314-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

liteparse-2.6.0-cp314-cp314-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

liteparse-2.6.0-cp314-cp314-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

liteparse-2.6.0-cp314-cp314-macosx_10_12_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

liteparse-2.6.0-cp313-cp313-win_arm64.whl (7.8 MB view details)

Uploaded CPython 3.13Windows ARM64

liteparse-2.6.0-cp313-cp313-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.13Windows x86-64

liteparse-2.6.0-cp313-cp313-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

liteparse-2.6.0-cp313-cp313-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

liteparse-2.6.0-cp313-cp313-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

liteparse-2.6.0-cp313-cp313-macosx_10_12_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

liteparse-2.6.0-cp312-cp312-win_arm64.whl (7.8 MB view details)

Uploaded CPython 3.12Windows ARM64

liteparse-2.6.0-cp312-cp312-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.12Windows x86-64

liteparse-2.6.0-cp312-cp312-musllinux_1_2_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

liteparse-2.6.0-cp312-cp312-manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

liteparse-2.6.0-cp312-cp312-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

liteparse-2.6.0-cp312-cp312-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

liteparse-2.6.0-cp312-cp312-macosx_10_12_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

liteparse-2.6.0-cp311-cp311-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.11Windows x86-64

liteparse-2.6.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.6.0-cp311-cp311-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

liteparse-2.6.0-cp311-cp311-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

liteparse-2.6.0-cp311-cp311-macosx_10_12_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

liteparse-2.6.0-cp310-cp310-win_amd64.whl (8.2 MB view details)

Uploaded CPython 3.10Windows x86-64

liteparse-2.6.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.6.0-cp310-cp310-manylinux_2_28_aarch64.whl (9.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

File details

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

File metadata

  • Download URL: liteparse-2.6.0.tar.gz
  • Upload date:
  • Size: 335.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for liteparse-2.6.0.tar.gz
Algorithm Hash digest
SHA256 12a11f9df9ced1a4bae2fc106e0c88dae18ac2d28d9280fdf31b2eb5f14f935e
MD5 9048141d23ed76cc52da017b0f1e7e68
BLAKE2b-256 ebf55188e5c29d412cedadbbd53f2e15f7bde8d629e1f76bf2d6313db8bb6324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d695976225c4226d789904bcabcb4addb97ad587e626c7a8849f8029b61fbca8
MD5 ce439dc8ce078287f62be53bf01d86e7
BLAKE2b-256 ca95e953e03603fd312192c6e66b89115573ffb6f2378a45d4751cc710961d87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8f8288ece49fa70b4aa57d20123db2f06ed3721193f80f968ae79f666e6c53e
MD5 3300de4dd744744cce9a99f992af4e53
BLAKE2b-256 b805028d67da6c1d04a5cceedb7cd50b8c50794cbeeaf61061b449b2f2ceff31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c944fb23df6c2003da0a94af2a17e6a6568bc471a900f15af3bc020fe719461e
MD5 895b295d780039fddbf515c372889480
BLAKE2b-256 9045baeb0056c83bcbc6c3a70ecf16491e6527ab7e71214f37c1ae2848f5a0a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d3167cce90f8d975e4228468f2bba0341b945f4d4defa5edc597a0bd171c395
MD5 db1e97139e82d4701629085506082ac9
BLAKE2b-256 9efebd44dfe322987948314c635aff04968e76bf43a54d9010d6a2e0a68b7939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d0c93d67d89353fc0bc1817cd29d153ced7426e96010f8b99526979c7013d271
MD5 a581b2e10a08d527d7d05e2c1c1fd5cd
BLAKE2b-256 8f021e71963ecbb2948db51e234f951d8962bdcdc2e9e155ee1265bb62ce20af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d8a88bee68bd73e7c775271f0f044b8e91aa8e77fc69b04d5988ffe0ad2e788
MD5 6d4a1a2cb382df6a3fd33da3c4181aae
BLAKE2b-256 aea4e5c3923111b6d793e006f0c13423b346a3832a90e9c4bac976153b41a9cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8195dbf35633e62c402af52ce96ae8ff25bc068e471cbee3282317b6dcfb93bd
MD5 3a10b6b16dc1ed7b3dab12bb30243482
BLAKE2b-256 104d5d0d8a5fc2c8d31160afba64488bcec6058c86bee60f1fa6ed9628501a1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b60c714d2c2875a285b9a7519ae0b10080c9ea26c858c8536f239a67236091ce
MD5 22b1cd6572cace11cdf0a4dd91064eb3
BLAKE2b-256 65fae00b1f22d5c9b6f9b4cf946dd98ba4324b75bb894adb248ac0e47133ebea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.6.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 7.8 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.6.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7e7b33a8030cb2d9602bce50ad4af76fc6f9fff4f50d18e96fc9df239fdbf89f
MD5 ccf31855d71b68cb6c131414d404cf3b
BLAKE2b-256 09c12d41cdd36d6bca037155bb9e605dfc847ce642fb0fa86f313fc0c727ed16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.6.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 8.2 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.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a406e1fc5351efef26c2952f37abef7eea3e30e9eb89d46f442836344ea1e703
MD5 f662a3bba3677d1a2add0a1c822368c3
BLAKE2b-256 3443a2e9194603fcb00b351ae87054048ad86310a34b34a07922816933f7c0b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dcc93a7ed3d38547ecc0afb99da1b5d899b4d528e5c5fd55ed367087b570d6f2
MD5 aeebc301c6516bd1b29d202826ea3780
BLAKE2b-256 42154ce6ab35dc71eef005878e18936d9868c2d8e0273f9b544fa58b344a9028

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e6a1a0cc95833daa6d09af02d6c1c34320d25de4cb64cd0217805d06da28a7b
MD5 0e3406778cc3a3c7c08d3d925a815069
BLAKE2b-256 1cddb9f51c59760473c2133df4d1741059937c3aef6da57ed6ffe129a410ccf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5c316a579fb9d3e4375e34cf480fcc8cba18dfdc76f9636a15bafd1d177d159
MD5 cd6ccfb7c02abc9ba41430d690a141f7
BLAKE2b-256 a63e2aea3e00a56051bb13724830d0573fcc95891f41f56f8b90819dd0f1ac3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a38e377560e0ae9ac9b331204f8d684231fd8407e4917200d41a91330e0294b2
MD5 14bd823a5e11550af062bb1fce4802cf
BLAKE2b-256 3117b6d904c351e17bf7003ddfc9715c499d8a58765a9cce41933b6b1568e2c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.6.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 7.8 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.6.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7479629269684cf6229e4986e33eefe00ff91df5be1a31048e87ff9684279181
MD5 91a91754b139bf0de0105c2fed3d5467
BLAKE2b-256 4f2b093f7c00420676a41985ba1f68170356616dda9e025ec165702fc18f2f8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.6.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 8.2 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.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1a10859efe23a0ab78b888af66568c464a2be7bcddb95e2f7ef2a46d8db18639
MD5 1f6e2ee77db787757a4e47ee123b3068
BLAKE2b-256 08154a564ca5179cd0212026a5bfdf0a0236a1ff280abb13b74d8dbd96ab26b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 976f405a4c40cece7d17fe341a63a605bf6c4e73179dcc60632dbbf1ccb7f40f
MD5 71bdd7d78c6bc3c78c0f6e8a4055d1ec
BLAKE2b-256 ecd974af95a6181f4e516bb18fd0354cc3ae867707e459b595452c6f8af180c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 272263e3b1ac4e99a99c5e0c94054014cb3cd9a8d3eaa895a9f35960efe06c35
MD5 62645cf81363f932d5dbf13dae52241b
BLAKE2b-256 2b485ec9200627032080187aa666605282e3eebc12a0cc1939fba5ad9a7c0311

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5565f4cc79aa8c51baeac1d50a73f5b4220f98727ad426d9a1c25c5819387839
MD5 7922fb29247ae2466bf921f5ba19f3b2
BLAKE2b-256 b3f583b78aee4512ef1fdbedfcd5d8bf50c8c35732dc4a7320b8a0e74c64298a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a2fe30166f70588b2e2f8449d9d12682855387fcadb43763dd6b3931b4d7be31
MD5 693d11d19ad4bcaee64ac3c3e0626abf
BLAKE2b-256 3c2d078d5e02d3f21878817433fc6305be71b1e7574bd4fd71d32c6b09ddcd36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.6.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 7.8 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.6.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c2700014a8edd18a31408a73210abb6a28425fdc9d0417c9ed54d1675869d3db
MD5 b02053861b81395374ef3067f0fb71e4
BLAKE2b-256 1a8c61363c3eced6149959305555ec571a23c89e1e3fcaf8b31dbfd160a45fe3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.6.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 8.2 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.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4e7906781ff50f319ac7173a9023837fce9269e2238babc3f01769622b7d313a
MD5 3fded12a2a4555e8d2a93941c4525782
BLAKE2b-256 175a715c9dfa56079af21898e19707d7e7b9bafde49c235e932f298308358a53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5e8b475523ff8054afc6f31f89aee2eb126981236d7f20f9cc3f38fe1d325ec
MD5 9fe2fa2a5f000f3568658f376b75d342
BLAKE2b-256 0252093b6ad71d054b119b522d46a103ee03d75585316579a4e5e5b3d19eaf65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 850cdfd67162e442434f78d15f45869338a1f585b14361f748d8826540de160a
MD5 02c9e9278842bc2463bcefb39c474646
BLAKE2b-256 f10ac3b4b49daf6fe4711c4c40e59fe8478831d9df115f1b9d7513e868e8a0c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d4f8a86bbefea8f7f76f76eaa48fe993614229fc2cc73f51723fd9c7256170c1
MD5 d2a705a8431aff5aad8c02fcd9cf5b65
BLAKE2b-256 87932bbacb6272e2a223487803cf3b21072a0133f3e45b01a42924a970f3c2bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5d522fae5fbfcb72b5c15f82696b92c7b17f13ed46ceb4e515ba9e2356f68a8
MD5 3681e508b08131f268502d61355e3aff
BLAKE2b-256 4c596a9cadf32130a30bb2e18dd6c8450dee77f6668671092c604cb086d38d99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 db3ecfefd6cdeb19919f5cce4474f73c8a97110b20a5e28a185ef3bb6b0c7993
MD5 115f77674b32c7902097c8904986b134
BLAKE2b-256 d3eae2df43bca15786111942221a2c975465774c886028844b2cd32cc4562314

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 8.2 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.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 32276d5bbdd59af33c1c7ebe33cb899588202af80a4493d6fc0acaf5ac5f4ac9
MD5 24ca012c438cb8cf24647ad31634a3d1
BLAKE2b-256 fa7704f26f843435ad4cf201c8b79c5c8376ffd002b4fa42f9fc9d3b56d42e8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e950055298dcd3084be27e05161b8979a6d5a5dc056cf31d4d8ef2590d85ba93
MD5 14f04074032d9fbcfc307686b9236e83
BLAKE2b-256 0c1e1546d80eb61678d70027a4a8fd61506c1f3bfe9ce14d2f62b32afadc8267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28c16b943fa2b3aa56ebc6c894bc74200e03e95bf02d250b37d52313fd2d78ea
MD5 2730bf2a6999ad88f043acafc788b09d
BLAKE2b-256 732d7fec9cd9ced3c9056b5870d6b9f52b610c50f03c348979c0112865fd121d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4821c4d1c0d1fe640f5add77688bd9fb51aad50141296a1572165bfceb4a8c07
MD5 2588d2120fe6813bc59bcc656905b43d
BLAKE2b-256 2ef081fd2f75b43396cd91071c1b8134192608e11c17445ad965bd707bb98c45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 86ed03da1f8e09134a773e06e874895d34a6674413921502bc8329dfcae2597c
MD5 cf6e929cb6b7fdd80167864ccd23089c
BLAKE2b-256 8ba8445b6c71c583eaf22a767de09c56e4d469b9edcb5a10672ff047883d10f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: liteparse-2.6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 8.2 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.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8802eadf151205ecc098dd94b6ff44b97e70f756ce42616a2ae4f4fb04e39b72
MD5 421fd5ccb07f4f5ec8b81b7f7e6be87f
BLAKE2b-256 4bb399ff027e3a8c8926cc6e54229b7004de4f10bc9af59251460d126e851b90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2c67dd6d136967171b3b3957b6852195c47832ef69179bedc33a2a21e09a1d0
MD5 1690b2ceaf8f17f78b95ca3701782b1d
BLAKE2b-256 61b43eb869aac912c15f00e9c2e5546cf6c2b720274058c3f0cbe0815f4ed208

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for liteparse-2.6.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a61e92b761222337f505a79971324594d92575b138f1477f92429c449bc34408
MD5 56645de501148b5a20f8f92ef9662176
BLAKE2b-256 ea6c8ea704f9c3c7391db9238cf7993bad98acc4a4dc22c407c431c2082952c2

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