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.5.tar.gz (135.5 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.5-cp314-cp314-win_arm64.whl (286.1 kB view details)

Uploaded CPython 3.14Windows ARM64

lipilekhika-1.0.5-cp314-cp314-win_amd64.whl (297.7 kB view details)

Uploaded CPython 3.14Windows x86-64

lipilekhika-1.0.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (450.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.5-cp314-cp314-macosx_11_0_arm64.whl (411.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lipilekhika-1.0.5-cp314-cp314-macosx_10_12_x86_64.whl (420.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

lipilekhika-1.0.5-cp313-cp313-win_arm64.whl (286.4 kB view details)

Uploaded CPython 3.13Windows ARM64

lipilekhika-1.0.5-cp313-cp313-win_amd64.whl (297.9 kB view details)

Uploaded CPython 3.13Windows x86-64

lipilekhika-1.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (450.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.5-cp313-cp313-macosx_11_0_arm64.whl (411.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lipilekhika-1.0.5-cp313-cp313-macosx_10_12_x86_64.whl (420.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lipilekhika-1.0.5-cp312-cp312-win_arm64.whl (286.7 kB view details)

Uploaded CPython 3.12Windows ARM64

lipilekhika-1.0.5-cp312-cp312-win_amd64.whl (297.9 kB view details)

Uploaded CPython 3.12Windows x86-64

lipilekhika-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (451.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.5-cp312-cp312-macosx_11_0_arm64.whl (411.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lipilekhika-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl (421.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lipilekhika-1.0.5-cp311-cp311-win_arm64.whl (289.0 kB view details)

Uploaded CPython 3.11Windows ARM64

lipilekhika-1.0.5-cp311-cp311-win_amd64.whl (299.6 kB view details)

Uploaded CPython 3.11Windows x86-64

lipilekhika-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (453.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (446.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.5-cp311-cp311-macosx_11_0_arm64.whl (413.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lipilekhika-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl (422.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

lipilekhika-1.0.5-cp310-cp310-win_arm64.whl (288.9 kB view details)

Uploaded CPython 3.10Windows ARM64

lipilekhika-1.0.5-cp310-cp310-win_amd64.whl (299.7 kB view details)

Uploaded CPython 3.10Windows x86-64

lipilekhika-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (452.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (447.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.5-cp310-cp310-macosx_11_0_arm64.whl (413.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lipilekhika-1.0.5-cp310-cp310-macosx_10_12_x86_64.whl (422.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for lipilekhika-1.0.5.tar.gz
Algorithm Hash digest
SHA256 897ffdc0cb71ce182f5247322ae5777057db25b697b8663ac00de9b1d901edae
MD5 bd1279a197ad0789e768267348076c93
BLAKE2b-256 a388f94193599195af382d4558c479bd33d901c93805ea8ba8eea2ea221ab160

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5.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.5-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: lipilekhika-1.0.5-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 286.1 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lipilekhika-1.0.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 dee0383de9368babb9a9ace2d9acaaaf64f74e051ba1097e9802326d3431e498
MD5 2e21184de4d125574df1dd76515d913c
BLAKE2b-256 6f8179bdec4b9b60640d9a360bfb327a958231d9f75cb88dbcef325ee37bb0d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: lipilekhika-1.0.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 297.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lipilekhika-1.0.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 93de85e8b8cb455386cc40d80c689103180822550931a9afa8a688e3f18ac9cc
MD5 3fa5bebf671f3c160dadee89bda1f233
BLAKE2b-256 8847d99e6432a74ffd8dd5972e939fa0bcd27005fda7e0b648a5deda5840396b

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c506124854e3736a5512fc0d1faee5b793f1685d7dc1a50054051cdf71627c54
MD5 16a75c77e85923f82c1322613ef1e65a
BLAKE2b-256 4b536d3070526f655c4868a7ab51d5e87cd3d9cf1519899d52cf721ea27eb56e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f424cee1706e330779c6385b6087f9029c28df1d6498ac0e1c4764d53d1071eb
MD5 993fb6c64a94143b0ed74b93e7748f77
BLAKE2b-256 060029558757105bed32b0edde1ea816a276a2e0b1eb0186b04f46e6da658f6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa28a77d06009561b33d54e289f44131a83ae9ff100729e476e03402b9e1cc66
MD5 39ef0dfd46450824ee9e0fcac58b38c8
BLAKE2b-256 4c2f9336dbf187fc0a857ac295fc514fdecd877964fde2d2a35be90980502762

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b748715942f823c6d8880368939acfac7f33aacfa34a10b4bf2503ead4e75010
MD5 2a302ec2fa1b53855d4d73335673d28a
BLAKE2b-256 ffd07d3ae3e208a7c3102de54c86259571775c3022f6fc586866e4541384f455

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: lipilekhika-1.0.5-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 286.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lipilekhika-1.0.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3dce0d5738c0b45a52a3c9cf1f01aaf5c61b133fc77ae8e61a419fea88bf9ecd
MD5 ecfa0501ef568a733e27fa6d3b9655f6
BLAKE2b-256 55cbfb1150fa69af8782d11f0481d3506e93ca8b4103dd3ce00fe31979c99d34

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: lipilekhika-1.0.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 297.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lipilekhika-1.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 20e349545f769f1164873b25b61658af4e06de93dd5ce2b22a6c534dda3a4e0a
MD5 49be700bb5e1325fe43370e5f487bc3c
BLAKE2b-256 f975ac85dd50533004a45c64d5c8d2493e1a394a18a1c63313ae60fb57c60de1

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2570892bba14a7cc369a7fd8e12a8a62f2998e7f497629b3ec21f8d645d6b73b
MD5 2f03346fd4387d8f78f7b7f32b4f24dd
BLAKE2b-256 6e2cded52a0b45a6aa00c312c772393c70a50cbd75bcd3057066ddcd6bad4fba

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 deaf9d515e371fff17d2755f6514a81cffe399a07989a802950044ba2fa1635c
MD5 30a3fd34a5e6de63816b5e797cb71aad
BLAKE2b-256 7c5aa80d307f070f964e647a95df2ee0d7f547ed0536b49f3eb119be48cc108b

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6450ad9d490292267ef5d840c20bf7a53f91233f7a40b1e39200b18c3a8d4f96
MD5 7e8610c5a87818c4e93d7a5cedbbb5db
BLAKE2b-256 a9e684ed2461a4bbb130b8ed30dd90515a0d7b9b06c9cf42a812429b9cc7a6a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a28515eb2419d2e08a1c15f6a6b3f7322d48591571b8cbb8f7bd7786bb26519a
MD5 92b906372e7242f0b0a169a814274db3
BLAKE2b-256 4e9c129ce6ce8758a75053387e035b332b4822a868725ec7728fcab79258ea43

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: lipilekhika-1.0.5-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 286.7 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lipilekhika-1.0.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6c7d99ea58d080e65a488786be9fce0e6c725bfa22069ca484a68a44bc9bf8e9
MD5 4193b845444adb27a1ed51b0e0c670ce
BLAKE2b-256 94bf0c54b87dd175dd73da702d210bc9f2b30c4fc4f1b01755a46537ab2cee47

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: lipilekhika-1.0.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 297.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lipilekhika-1.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 77249dfc7e9af6987458f671705d7184afcc6be18629967d9c5f3b5ba9b09da1
MD5 3e9d738475ee51213832de3ee72cb8aa
BLAKE2b-256 f395e573dffe53ae4d228e0a262e5eebf73b91f8c4b7dadf5075d9afbf3222a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f99723c1f3754229f6ae59597fcab85e9e548045ae071a90aac12b3e2ab54db
MD5 89b901890ad8c2bba13979c58ac31af7
BLAKE2b-256 ecf21feb379a6b6202a5a5712dc19721072435f72cda350c6d0f789dfb32ebdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d34f42b8d0ddf0d9b111dcee7b752ee2757ae124189e27b6281632ce6d057b4c
MD5 6085d976d98f3c29ecc86a810b2515af
BLAKE2b-256 5fffe6371b679d50099f5e18df21820c6e8fc12c344a84852b048e3ae9a1e7c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e54c8081d4828838e94636e0fcac863678e60b751f880abddc28b49b0a60541f
MD5 9aff184babda7c73ed17e0e303b714dd
BLAKE2b-256 1bf20fb216e04f171c3db783c1a1e3892b042ba1903e9a20fd5eb43334e0eb45

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7fedb3239b4fb89605665c5170586db0a21ed3b1499ebdfc9c9b6f22dc391cdb
MD5 19463100684e2f9a9b9db7ccc93ddc8c
BLAKE2b-256 30983e36c2d367032dbd688beb8e6b1afed9b2aad9119c2e1bcafb339212ce8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: lipilekhika-1.0.5-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 289.0 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lipilekhika-1.0.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ad01db8c09b144d4ecaedfa03be4d04aace31ce3bdf7698da2f050e4d0511ecd
MD5 ea394098132c8b912afe893ef1bac489
BLAKE2b-256 e1fa1c63cb36526c904c29f77d157d42eab48807469fd45f571c31a49edc6f1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: lipilekhika-1.0.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 299.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lipilekhika-1.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9f51fc3ddd57b1d47f90aacf2b918bb745329046fe1d273ed64e752e02daf0da
MD5 d89e9e3fa2fefbe8607f85b0d197dd78
BLAKE2b-256 a63907d2b58efd2bb169520cb9b82b08738887832d86b299a68542750420e94a

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87f2574a2ef918b0ad1d4e890e26f70c91d27beaefd7c9caeb50411664d0e8a0
MD5 02c17ca91b40f623cf1a5fd4822c1a98
BLAKE2b-256 bd7b13fd23343aa0734c47305bc22d133217e271a87ee65e960ca0f0b8f50979

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 141cb06350149f5de7bf8e8521ccd4e136a6c0c0c5929d3380b250ef790f1fdb
MD5 07cae30852efe921126b2a50136da1bb
BLAKE2b-256 961ab814975973e772338aab56d2683bdb636368b307719ed3a7309dd4710496

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a96ba55815d4c09b3e26985458cca07c797c1c295ed7b01677e0e207e3b2f31
MD5 2deadb786a9cc6a63bbfc99a9f2dde7e
BLAKE2b-256 8915782812d20dd7077d23497b032fc1d659b20d58d30e7a44893ae70d376841

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dfb29582b2cf4a578820473f7c8938951ae3eaff67391d5d5247b1aade08e741
MD5 f83c24ed3bb8f3b984d3e8be58e8c8e7
BLAKE2b-256 cb57d9dd278db1d4d1a6e7c57acd3c273a700b1d82efa727c7b0490b6a3ec1bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: lipilekhika-1.0.5-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 288.9 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lipilekhika-1.0.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 8ec0a46c62718205de2b6f994fa3fef2fa3b15ff79c87ddb3bf34a601f139075
MD5 325265971acfdbf55a17f36ce9de76b5
BLAKE2b-256 df7822bcc702e4d51b698e75508e95a3b76bcbe879222cbdfdf69bb55e56b825

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: lipilekhika-1.0.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 299.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lipilekhika-1.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3a942e70bef2af979ae0b0995810b863312999b08d74ff8a8ea27d12c22c2638
MD5 8a37f9fe7dd2af26456e246826c3f23c
BLAKE2b-256 c5fff4120080f3db6caee81da91e9568ee311d3fb75352e83f17edbca44af88c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8cfea989447c45cabcf3fa4070b87ab9d288805d08d8c14e911f4d042eb7a73
MD5 85de80b0fc5dea8cb2eb9a9e2b7d5211
BLAKE2b-256 914c8194d969d82cc203960044e9c455405ce487b89c4432bf715b2321666ca2

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1583e043e4e21b203d04d3f3424532b4614bcdd65b3a0f468027f08d81121efe
MD5 3486a8d2e6774f8030cf2066bfac3542
BLAKE2b-256 2583c14083f687faa07358aead2e70e7920d36166a35199194bee941f81633a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1bf15d06d5768839b2f10461b77d33f13d0d43304414a5a6bdffd60949216fd
MD5 9b3d7fc7f0070b5953aab136fa0d4ff7
BLAKE2b-256 ae7e478db0f08c4357a51d1b9040aaea997255aae270282e3703e5d5dd024270

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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.5-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9d921db7d59ab59f2b1b34a4ac9b21c12d89c2570998163d69733be68dfd1a65
MD5 158f493e6329ef83f9419eb5b7b4bdb1
BLAKE2b-256 7c4c4cce745be5ba6baefdac0ee51564dcd0cb82310f11aa1e603afecee3b1e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.5-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