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.6.tar.gz (138.4 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.6-cp314-cp314-win_arm64.whl (280.2 kB view details)

Uploaded CPython 3.14Windows ARM64

lipilekhika-1.0.6-cp314-cp314-win_amd64.whl (291.4 kB view details)

Uploaded CPython 3.14Windows x86-64

lipilekhika-1.0.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (449.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (442.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.6-cp314-cp314-macosx_11_0_arm64.whl (404.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lipilekhika-1.0.6-cp314-cp314-macosx_10_12_x86_64.whl (407.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

lipilekhika-1.0.6-cp314-cp314-android_24_arm64_v8a.whl (466.2 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

lipilekhika-1.0.6-cp313-cp313-win_arm64.whl (280.8 kB view details)

Uploaded CPython 3.13Windows ARM64

lipilekhika-1.0.6-cp313-cp313-win_amd64.whl (291.6 kB view details)

Uploaded CPython 3.13Windows x86-64

lipilekhika-1.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (449.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.6-cp313-cp313-macosx_11_0_arm64.whl (404.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lipilekhika-1.0.6-cp313-cp313-macosx_10_12_x86_64.whl (407.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lipilekhika-1.0.6-cp312-cp312-win_arm64.whl (280.9 kB view details)

Uploaded CPython 3.12Windows ARM64

lipilekhika-1.0.6-cp312-cp312-win_amd64.whl (291.9 kB view details)

Uploaded CPython 3.12Windows x86-64

lipilekhika-1.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (450.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (443.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.6-cp312-cp312-macosx_11_0_arm64.whl (405.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lipilekhika-1.0.6-cp312-cp312-macosx_10_12_x86_64.whl (408.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lipilekhika-1.0.6-cp311-cp311-win_arm64.whl (282.8 kB view details)

Uploaded CPython 3.11Windows ARM64

lipilekhika-1.0.6-cp311-cp311-win_amd64.whl (293.3 kB view details)

Uploaded CPython 3.11Windows x86-64

lipilekhika-1.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (451.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (446.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.6-cp311-cp311-macosx_11_0_arm64.whl (407.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lipilekhika-1.0.6-cp311-cp311-macosx_10_12_x86_64.whl (409.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

lipilekhika-1.0.6-cp310-cp310-win_arm64.whl (282.5 kB view details)

Uploaded CPython 3.10Windows ARM64

lipilekhika-1.0.6-cp310-cp310-win_amd64.whl (293.2 kB view details)

Uploaded CPython 3.10Windows x86-64

lipilekhika-1.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (451.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (446.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.6-cp310-cp310-macosx_11_0_arm64.whl (407.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lipilekhika-1.0.6-cp310-cp310-macosx_10_12_x86_64.whl (409.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: lipilekhika-1.0.6.tar.gz
  • Upload date:
  • Size: 138.4 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.6.tar.gz
Algorithm Hash digest
SHA256 6e0c322b00ca893f413e079d37af6e9e3e0a6ca578a16841a66bd4e26730b9c3
MD5 e69daf080edc2a5aa6ede5f597b270b5
BLAKE2b-256 33fa9a166d5970e18fbc44651209aab7748d332f519081ffa7f73b4c6541c9f4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.6-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 280.2 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.6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 29f503cc35be83817d72a1166f2db9bdb58ba689f2d298b4c1cc17c8d2fd4c35
MD5 72868234816b3bfd0a747454ee403548
BLAKE2b-256 3ca18f8943ce5dc79d0b6c0c48cdb16ec72c6c240f61b665a96311b29ccf6a22

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.6-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 291.4 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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ac9770eb41869eb0cc04d3c2b2391ecbe66d122fce2bf221e6fb59dd916db22c
MD5 e59de8933325c1f62a66f03b0bb960b1
BLAKE2b-256 469b523645e37db40dbdeb3e322c39de6cf93269e0d53ae2029398a5e0477148

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d6b45784337ecfdbe8c4ded2ecc795277d6d3cfe489f2898986efbc876004a4
MD5 32d5286bb9174d90bdc01391c5051beb
BLAKE2b-256 46b954b4c805beabce90c727d549732a38b6da7aa1ad1479fbef9513b989a56e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ad961ab0867f0246853792280b18b189563f08dc07ec66ef7a21da541679ae1
MD5 a25715aa950cf66c76ac951a855189ef
BLAKE2b-256 aafc1a929bdc9e953e6557190bbd3738d9ae30890bdb44d4cb817975690ba924

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 204942de0bf0f1e2aaeff428ce817f321eca8157e930c1639a0061656750bcae
MD5 f79b7a741405089434d97d137a107174
BLAKE2b-256 86abc86a0fc8dbed13d0b84418d251102eeeb16b1de5bcd6bc3f151146b4beaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ccd0a09aebaa3fdf4cec8ac2131e2ba85390dda5ede0d8e334d65a8e901a5580
MD5 d199dc2e2c66900709bc426d7d7fbd35
BLAKE2b-256 32885e0e988ced69906630605c1ef9d780a5634da921d87c6594174dcd5f9f2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.6-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.6-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 355c03111052963a065cdb30e40c6f072e2c7389fe25023f7085dd6083ca049d
MD5 3ef6d3a7e74c73c925df9ee9aa37194b
BLAKE2b-256 5f7e3e1ec9f3991426e927e35d14335360b1ddf5d1b4fdf7c11d594029976b98

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.6-cp314-cp314-android_24_arm64_v8a.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.6-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: lipilekhika-1.0.6-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 280.8 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.6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b0ed794a69170ba9f61c04f8409e47068cd48b794afc957f9a67dc4fbf39f895
MD5 6756e0cd3780748375382012e0bab4f3
BLAKE2b-256 f744b1bf973e1d558d87b1a04bb2e68d5fab71b0f8d869c98d3fae56ca1fb002

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 291.6 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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8957693ddbd9a630417565545262922b06fdd17c1aad69eaa9c269ec6efa7f84
MD5 01132421e51fab6f3f998a4ffd13f041
BLAKE2b-256 5e837c1796f2e5f7d1878bdbab9e2635f21d6e7e4d640f0d2dbafeab3a44b473

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b80a32b62967ddfdcf3a641ba0ff8172a922f506afc5a1d702a718013c34672
MD5 25777e1c37de148aa83adb1370827bfb
BLAKE2b-256 48f1c76bc40b3a0a4fea2806788baf7069a3df4e68fa7c9257f710741deff0d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01a2dd9d7dcc48c5b01a807f0b96903b6fb962cf3a8fdd58bb14ce4cfea76288
MD5 ee9774c01a719ac08ebf4cb989642fcf
BLAKE2b-256 3626821bd08008e2fb2f7bcb331409e6e65b085ebab85daa4f4a9c55c60a0263

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ca4f49cc472d48346aec8cc3769c34fe3ab25bd02173eaa0d183f2d5277db06
MD5 fdfee0c8bf6833859271edfb640f83c2
BLAKE2b-256 bd3a55f4ffffdd05861a0ec371770ec63256ad12491d17cd470c321bb541b857

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93540ed48aab5923c2073ffb6b6b2a48c4327095d9dd0d2b337c1f9eafabafb9
MD5 d5712c82c7d7b476d7d7aba1e96f2eea
BLAKE2b-256 8bef65e192deb340356c7e3c83e4f2a845d9306292a2278d4c449fd909d2eef2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.6-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 280.9 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.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3e1483ace545ce641634464a4e0d56f9d358dc07c8ddb134775c10fa922b1747
MD5 d804e19c50c0a87dd1d2f7a661e5ddb0
BLAKE2b-256 618f409baaf4507f1057de0b7a2c2734d95a6ae21c43ae5a99e9ebfb4f94cea0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 291.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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9640afe3185c40640af95d60168bb23216c4c9497774cdb3da023c36d9cbc9b1
MD5 a6b3b8f97b50e832289607f5957bce0c
BLAKE2b-256 a685a854f7cc1ddb0d3afc0e493e443ef9198f24fcdefe8a1ea240b38c474c53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33f4c0803aba4599bf2478abcb7da49604bdf43edaf1f872e72198a08db8dbd2
MD5 ad72520ea3a1304478221490a9feb05e
BLAKE2b-256 c60e472ae8d7cf151f24bf1483dc06a4f4e1563e6767e770f8f3d3baaa620ef8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c95f05d667d60c7cd2682cc590abd6dcc6ab6ec38c22258aa85b5d5400d2f9b
MD5 df63e86c594cd0d4c8e5bc4fb02a9c73
BLAKE2b-256 a04b99789f2699f0cff6fa621c81d3d8620a01051d1d59fa60475ea9412cef0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e01e4a244914c120c3595080a5ea9355a68735d6209e928cb4b90dae76f8c4e0
MD5 dfd27b70a239721c7f6e68b6ad32ba46
BLAKE2b-256 c9273558276c19995259c05934f4a870868ea9d053db3ac085ab26e6af59184c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fe409eac8f7702510021010ddfb93d833883e4561246efad4137004e164a63f5
MD5 c128b363fc1148fb6d86b27874459277
BLAKE2b-256 5572dc556c43d832ecdfd7ef90f2d08f1133ae6e3509884addcdd70bfbb801d7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.6-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 282.8 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.6-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d464c32f812dad2b55a2775f4df498c52700ea824c9866bad1d13f6b5f41c692
MD5 03ba63c7def4d441d18c1a395df147a1
BLAKE2b-256 6e1ee0a31c628736ad98f814f5c9eac783b314b3b3f87fa05fb1217bba55ba16

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 293.3 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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fda572eeb95f5254aff68127bf663478a7df3464b209e31e370ff0c7d342954d
MD5 d476a61d71e03c16b0d22c08d3620f48
BLAKE2b-256 275086b305a769a482b87f9a74d31dc79278466a5e980637d85cd7300d9caaf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 231b68fb28c496d2a737e7ba920f6aea1b2f4a8402d35d7de6817b9b63bcc6cd
MD5 295abd9b9e2268ef23b7110003c256ba
BLAKE2b-256 e159539fcf93676bfa3776ec7f2fc8af93d495c576aa80adb92570777cf99623

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4756bf1f1ef5419e4bb15adf2d661094397c42c910d22eca30f48265afa7decb
MD5 f075b2642e94c6fb32b13264d197ef57
BLAKE2b-256 bed495a77810c16f78252e478280977d1ac9ab86e08c496192281b2b10e3b83f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a57561ae1adcaaca47d7a7bc822135d0a9b6f46ac62f77d19f39b46c1ae8a627
MD5 8649754005d44b3aebeee87323b4a706
BLAKE2b-256 5d4960e4bb8ddc39891719b933d8f6d18dcac623b35254e15e59b1b0f161ab6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7f71e50984ac8abc4917556e6a37e60da23139ac561d49e9ba26da37c5f2dbc6
MD5 0801f1f7000b9d1cfaee06f9cb2639ec
BLAKE2b-256 17b18ea3a13e8dddf0e624ae291215ac54fd0ae0b9ca2ab9788457369f4f35aa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.6-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 282.5 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.6-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 30232849f5c81677fdc5662881a5b90405d0a2475df49b8519bae43104397807
MD5 c4650cf4b171ce82af074b7a8cc0668e
BLAKE2b-256 e8d9ffefe163c26994aad196e66aee8815a8b09413f021725e74d245c6796aa8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 293.2 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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e67acba03fcd1ab110ef221d5823c70e724759f01a47db2e3080f0357938a34d
MD5 4411cd361c71badc18c992cb3eead22d
BLAKE2b-256 91025423a16e6da30d056fe563fff44687d100c73c0396da98e694c1f5ccb5e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1754458ad02eed2c108cc0395fad6930ee0268ccb09ea15fc851137ac51c850a
MD5 de3f8eb88108eccaee3501c25bcccbbc
BLAKE2b-256 1085da6182c65cee404e5408b76b0e6c2512b50a247cca79488f779d091930a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4727c97ef23793f426df959b6f3d8307e90b1d930a293208bf6093071b755d01
MD5 037af5f11948a810f98bf1699c4c6527
BLAKE2b-256 10acd1c316171af8aa16164ecdde790a0ef3d641341afef4b8e231926c9a0c10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6500be483f9ce7e35a5ce6aed20f238672188def618370b1a2bf63c97e4b3a19
MD5 93244ae82489ff8a53dc260a48def47e
BLAKE2b-256 72f55fdf51dc4eeb3fb933ec154ee2fad57de9a5c5c12ca9615ab015d461eb68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ed19d94b0c40a13c36ad615781227553524cef0c901b19b82ce4f74861342457
MD5 618437e057267fc8d288ca1c23d31fa8
BLAKE2b-256 55af8809ccf2e6033610940bf791a2757ee18b4951dc9dc817663f2715cd2909

See more details on using hashes here.

Provenance

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