Skip to main content

A transliteration library for Indian Brahmic scripts

Project description

Lipi Lekhika — Python

A powerful, fast transliteration library for Indian Brahmic scripts with real-time typing support

PyPI version PyPI downloads Tests License: MIT

📖 Documentation • 🌐 Website • 📝 Changelog

✨ Features

  • 🔄 Bidirectional Transliteration — Convert between 15+ Indian Brahmic scripts
  • 🦀 Rust-Powered — Uses compiled Rust functions for blazing-fast operations
  • 🛡️ Full Type Safety — Type hints for all functions and proper IDE support
  • Real-time Typing — Low-latency typing engine for interactive applications
  • 🎯 Highly Customizable — Fine-tune transliteration with custom options
  • 🪶 Lightweight — Minimal dependencies, fast installation

📥 Installation

pip install lipilekhika

Requirements: Python 3.10+

🚀 Quick Start

Basic Transliteration

from lipilekhika import transliterate

# Transliterate from Normal script to Devanagari
result = transliterate('na jAyatE mriyatE vA', 'Normal', 'Devanagari')
print(result)  # न जायते म्रियते वा

With Custom Options

from lipilekhika import transliterate

result = transliterate(
    'गङ्गा',
    'Devanagari',
    'Gujarati',
    {'brahmic_to_brahmic:replace_pancham_varga_varna_with_anusvAra': True}
)
print(result)  # ગંગા (instead of ગઙ્ગા)

📖 See all Custom Transliteration Options

📚 Core API

Functions

transliterate(text, from_script, to_script, options=None) — Transliterate text between scripts

from lipilekhika import transliterate

result = transliterate('namaste', 'Normal', 'Devanagari')
# Returns: नमस्ते

Parameters:

  • text: str — Text to transliterate
  • from_script: ScriptLangType — Source script/language
  • to_script: ScriptLangType — Target script/language
  • options: dict[str, bool] | None — Custom transliteration options

Returns: str


preload_script_data(name) — Preload script data to avoid initial loading delay

from lipilekhika import preload_script_data

preload_script_data('Telugu')

get_all_options(from_script, to_script) — Get available custom options for a script pair

from lipilekhika import get_all_options

options = get_all_options('Normal', 'Devanagari')
# Returns: list of available option keys

Constants

from lipilekhika import SCRIPT_LIST, LANG_LIST, ALL_SCRIPT_LANG_LIST

print(SCRIPT_LIST)  # ['Devanagari', 'Bengali', 'Telugu', ...]
print(LANG_LIST)    # ['Sanskrit', 'Hindi', 'Marathi', ...]
Export Description
SCRIPT_LIST List of all supported script names
LANG_LIST List of all supported language names mapped to scripts
ALL_SCRIPT_LANG_LIST Combined list of all scripts and languages

⌨️ Real-time Typing

Enable real-time transliteration as users type character by character.

from lipilekhika.typing import create_typing_context

ctx = create_typing_context('Telugu')

# Process each character
for char in "namaste":
    diff = ctx.take_key_input(char)
    # Apply the diff to your text buffer:
    # - Remove diff.to_delete_chars_count characters
    # - Add diff.diff_add_text

📖 Python GuideTyping Reference

API

create_typing_context(script, options=None) — Create a typing context

from lipilekhika.typing import create_typing_context, TypingContextOptions

options = TypingContextOptions(
    auto_context_clear_time_ms=4500,
    use_native_numerals=True,
    include_inherent_vowel=False
)

ctx = create_typing_context('Devanagari', options)

Returns: TypingContext with:

  • take_key_input(char: str) -> TypingDiff — Process character input and return diff
  • clear_context() — Clear internal state
  • update_use_native_numerals(value: bool) — Update numeral preference
  • update_include_inherent_vowel(value: bool) — Update inherent vowel inclusion

Additional Utilities

from lipilekhika.typing import get_script_typing_data_map

# Get detailed typing mappings for a script
typing_map = get_script_typing_data_map('Telugu')
# Useful for building typing helper UIs

📖 Resources

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

lipilekhika-1.0.4.tar.gz (134.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

lipilekhika-1.0.4-cp314-cp314-win_arm64.whl (293.0 kB view details)

Uploaded CPython 3.14Windows ARM64

lipilekhika-1.0.4-cp314-cp314-win_amd64.whl (302.1 kB view details)

Uploaded CPython 3.14Windows x86-64

lipilekhika-1.0.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (460.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (449.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.4-cp314-cp314-macosx_11_0_arm64.whl (415.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lipilekhika-1.0.4-cp314-cp314-macosx_10_12_x86_64.whl (424.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

lipilekhika-1.0.4-cp313-cp313-win_arm64.whl (292.8 kB view details)

Uploaded CPython 3.13Windows ARM64

lipilekhika-1.0.4-cp313-cp313-win_amd64.whl (302.2 kB view details)

Uploaded CPython 3.13Windows x86-64

lipilekhika-1.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (450.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.4-cp313-cp313-macosx_11_0_arm64.whl (415.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lipilekhika-1.0.4-cp313-cp313-macosx_10_12_x86_64.whl (424.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lipilekhika-1.0.4-cp312-cp312-win_arm64.whl (293.3 kB view details)

Uploaded CPython 3.12Windows ARM64

lipilekhika-1.0.4-cp312-cp312-win_amd64.whl (302.6 kB view details)

Uploaded CPython 3.12Windows x86-64

lipilekhika-1.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (461.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (450.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.4-cp312-cp312-macosx_11_0_arm64.whl (415.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lipilekhika-1.0.4-cp312-cp312-macosx_10_12_x86_64.whl (425.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lipilekhika-1.0.4-cp311-cp311-win_arm64.whl (295.7 kB view details)

Uploaded CPython 3.11Windows ARM64

lipilekhika-1.0.4-cp311-cp311-win_amd64.whl (304.5 kB view details)

Uploaded CPython 3.11Windows x86-64

lipilekhika-1.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.4-cp311-cp311-macosx_11_0_arm64.whl (417.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lipilekhika-1.0.4-cp311-cp311-macosx_10_12_x86_64.whl (426.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

lipilekhika-1.0.4-cp310-cp310-win_arm64.whl (295.1 kB view details)

Uploaded CPython 3.10Windows ARM64

lipilekhika-1.0.4-cp310-cp310-win_amd64.whl (304.3 kB view details)

Uploaded CPython 3.10Windows x86-64

lipilekhika-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.4-cp310-cp310-macosx_11_0_arm64.whl (417.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lipilekhika-1.0.4-cp310-cp310-macosx_10_12_x86_64.whl (426.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file lipilekhika-1.0.4.tar.gz.

File metadata

  • Download URL: lipilekhika-1.0.4.tar.gz
  • Upload date:
  • Size: 134.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lipilekhika-1.0.4.tar.gz
Algorithm Hash digest
SHA256 e6da712cc0814dc333fada9cbe50ce610faa317fe1bd31f0a3d50dd066f2904b
MD5 30be577d3a9856dbd5baef9836a37e6c
BLAKE2b-256 2cf0c9961fc378b2e87a0a4094b32e7dd13934b9124f35e088be82edd5c71ce8

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4.tar.gz:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ba3d91046b42852335ef4c3629a38011015ee95d890bcfcb59c64e7d7520b97e
MD5 5cd393f3c2004b00c3a1b300bf95133e
BLAKE2b-256 5d7b060181964b16cf79799817993bd5a9fe956974db789cc5f9237ef769cea8

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp314-cp314-win_arm64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a2bba4491202872a31ed6b5b099ef37b8e4c72004f0f5521f77b2cedadea26f6
MD5 ac0fb193e9edac23edeeb733081f8401
BLAKE2b-256 7f74b16883900fa9e52dda5298403a937aec29b309e19a7e0c810ece4f4c20ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp314-cp314-win_amd64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d81f97a7ea175df446289d6eec8cd6bb1e4a0ecb00aa199a30694a355dee879
MD5 40d8ad5927efb6a59e61a18df76956fd
BLAKE2b-256 cb44da30d414dae20a199c67b041e7a890ac373e42b66e374fc6c5a12024c9db

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fee44c6b546b0baa7bcdc5d7802c8ef1dff6b6933008249f9af4f9db0d09bcc3
MD5 78e9b9368091936979ea35ac939b7a9e
BLAKE2b-256 8feaf7ce0275d8ab9f8458cdafcb321c52eeb029542a0b01293b5837e09f6abf

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a98d554dfb0b5a73c8eda782dcc9f85d5d6ec4c5e9160274582b683811f78d77
MD5 35a1c6a801183f7d619b7e2b042a40e7
BLAKE2b-256 b2e72ce2eb0eaa7b6834a1f529572455c624166223f13b3f1549ec07355abe89

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 454fbddad7398f7459ff62f3fc0e87c340956590de0057f3da93b57fdf32e864
MD5 f09f198f03f2aca505a9be4d63032b11
BLAKE2b-256 07db06914e487ae803c715019e496ba2d6147499efafd3eae487d75f40be0ec1

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c61161dcd9f1573d9ede53ff379a9d73e3df563f7a5a298512aa5ed587c32490
MD5 25d94f3d1d1c9f5270eeec8b53c68668
BLAKE2b-256 43e48878f0e20d19572e93a66a5a51c94629679ab79b08c9dbbaf6b79ca713fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp313-cp313-win_arm64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ae2c032599757142007dfa36ae82ba2ec22bc2d17799385af69281cd3633a09d
MD5 925ee91da90573a8c0ee5a103a747088
BLAKE2b-256 dbbfa69eb3a237b9480184aa036feecbcaac695872621a6b3862df882590ca15

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp313-cp313-win_amd64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6b3386fe1ce09e0a083c144a4699cc52cced7564dc2fc33e16082597ffb2d2f
MD5 c3d08bb8ff780247c706c08582775c55
BLAKE2b-256 952e8e03467fc3f8674735f0cebd5e34d6d4e9defa55872baa6a3e24ba861ebc

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87c3531e728a1d3c850c301f040f80a0cb8f5679c9919ce845f020360edbdd8c
MD5 6218ae38a3e35db859f9c40c55576a72
BLAKE2b-256 d325b13e1bcae518c93588b931427c7a674715dec0f8f0ee2d06d85b38cae5b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c2bbc68500dc9419e390e9aa280ab75b66d6ed3990c1bf7dccd5ef4bdda61a7
MD5 f481cc06acdeeb2758b744a6d25efd8f
BLAKE2b-256 565451937fecf9388f8be31872f94fa8bd018911877bc45e88745efa1d6c3af1

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c667e59d3dd3e0a5156704736a07199315ad126dbe5dc9c29e4821391987b0b
MD5 c3fe9a3da5e2a33942e7eecb0d7e82cf
BLAKE2b-256 d74fd19f33045956668ecc8be816abeb591262aaab3bdf36a535a95a2db6332d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c9d59b847770e83f19c3847d8d5da3b6a6894f4f2319dcf87ac6bc0845fcc276
MD5 7a8a556f2267d605753bfabd5bc01ec4
BLAKE2b-256 71c59f01b49f1a00535bffe5a64b09b66238bf83e61e5d37c13bed79c2b31837

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp312-cp312-win_arm64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0a9647e940b39af3ff2a1ec793251c2547e106347b66a373389c33bbf5215dca
MD5 36a19f0be06e7a3c1d67fd5d84861956
BLAKE2b-256 efbf7fa73595b0c372d6c959ea5f2c0d54d997ed4c3298e12d11eb20a860cba2

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp312-cp312-win_amd64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65e56ae1bf1030f4822930a756e66e369c49fb2b040e7eb5e531566d03f86949
MD5 700a3fdb136bb1be166d1cd610c66868
BLAKE2b-256 41c817751bd62d2887c30cc39768989c44790f29ba52702f69a705dfcb0dac8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f55a96d4c8886c819e423b1341c36f1deff85605145876ccd346990c3f837dbf
MD5 e0ba11b6f953d5d704fbcc7448da9cf4
BLAKE2b-256 8e26482ce148dc30e19cd982d19be6dfa746ed7c88ea934e456ae7d598d669f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3665c947346fcedf54a939d84b6241396571a7b15d477bf661f8cfcc64fba521
MD5 3e7ab1d174440d0e6391c980deba78a7
BLAKE2b-256 68bba5e84872e79710977e257661d9ea5b92594ce6aefae0bd0f20501af3738c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 caf5c3634de20cf5ca7ec48bb7bdea2675cd923f2997681b29a94bf12e94afe1
MD5 880b11e57f9a3a05543595727bf338b4
BLAKE2b-256 38b734e41ca698e8b6053e3e1c4b5e4fa479afbcad0b1ab17aa7c73d7cef4185

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a3fdf816f8a028a8992ab97f8e2b1c2684d81679a39321c72623afff6a4867e7
MD5 6c1b3a5151dd572926b3a84799a0450b
BLAKE2b-256 ceeac643967cc6e88c10f2b9863eab31b8b5dfb1ced1413c83e17159a5a0f424

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp311-cp311-win_arm64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4534c135e9283061b2980f5a815f426ae0c59f8d29c694a54c46eaff69ed820a
MD5 9257b5501a953f2a68ad4fba2135b347
BLAKE2b-256 6c303ffe8b5cf4b2bc5f014264185e36bb516cd2e65cf6398e585d7700329aeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp311-cp311-win_amd64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93004cfb06f8ec5dde7d0a1403a88be75372400b16ed10bae1201440c54fc7ba
MD5 bfb797798c573a6a05c95305c9d3b83c
BLAKE2b-256 bb2d41bb4bd5284093272be7f109a123fa34c03e4e75260be9140717eb229833

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 132b8e07a4445186fc307a033e5fe8a6645a66d1f2128d22358774fb7e006d52
MD5 a7561a1da0d1242f164915f178daa053
BLAKE2b-256 4fa67574af7312ed617243a1c9921b27ac2be8e09ec4eca9e843195a4fc82929

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ba692b2c093a4acbf4bdb64b61b8bee5574f767437d6dfcc1de82c38b315ce3
MD5 9e484f038018c5943b7635cdf4840aee
BLAKE2b-256 d31935cc74a5d4fb1ad447124c7400e0fb44d532b190ac01597105fe855bd65e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fe8759ba36e0b0505c876b5386cd1f19df034bcccf6e49c87f5a8eacf2be8390
MD5 d65bba0f35071a4bf667b5543880d870
BLAKE2b-256 22d9534922b97939a58c9e08a7eaddc0d4300f582ee8f3bf3cac86ea852e3aea

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 bd87f390e486daf57f3c173b74d7d34672e0615774ffe3fcdbcde03cac83ff4e
MD5 523b495c6098b79568cdcc6043503ffe
BLAKE2b-256 bb5500f00e5838d8f9970ffb8c1a51e2446461bdf5b92060f67d1ded51b8b1b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp310-cp310-win_arm64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ec681610adff43c6536af94a3b1ecc3cc15943989a1c6576b10725efa5ed9bcb
MD5 c684e15e199721b65158707455af4a8e
BLAKE2b-256 29544787536aacc6126c3d0000f3122a9981164c2fa5a0d96d3655223617dfb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp310-cp310-win_amd64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4e095ac9034e08cdae9360c1ae0261130e5a55666c172a322ca0ded0bf73f51
MD5 5d4a512ee3cf0b60d2b93707765826b6
BLAKE2b-256 105b29f2f2252db51bd8702791ec2f52778f872197f1d32ad23940db4d97b3a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f6fcd4bc4695946d9445ee5c1436cf388699a26b1a5547b6120b81c9680263f
MD5 e96955f9529295916f72cd50266d574f
BLAKE2b-256 ff6d9ada30bc46ddc424bc32e0d940a97ef52dcc89ae8db1834cf98ac6ffa22f

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c75a1c4d013cd1ada0df23b66a9ce661563b9251d0a12ba78fa889956a2c14a9
MD5 099d746e52753052608d2453c49bc2e9
BLAKE2b-256 0cfc56e0da196067d369f64bdd3b4aaf96b66744dc01f468b4bbf843a0508931

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.4-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fb483b916816881e5091b05cb1644ce83dc24b4a475f862754416dfe8bc07deb
MD5 ac28f1828a9e35d140ad329c8c5397ba
BLAKE2b-256 ff9e9db79ab517817846c17ef4d70891732a2cbfafded66f242cc9c272748bd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.4-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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