Skip to main content

Lipi Lekhika is a library for transliterating text from one script to another.

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-0.0.1.tar.gz (121.9 kB view details)

Uploaded Source

Built Distributions

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

lipilekhika-0.0.1-cp314-cp314-win_arm64.whl (269.7 kB view details)

Uploaded CPython 3.14Windows ARM64

lipilekhika-0.0.1-cp314-cp314-win_amd64.whl (280.5 kB view details)

Uploaded CPython 3.14Windows x86-64

lipilekhika-0.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (439.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

lipilekhika-0.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

lipilekhika-0.0.1-cp314-cp314-macosx_11_0_arm64.whl (394.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lipilekhika-0.0.1-cp314-cp314-macosx_10_12_x86_64.whl (399.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

lipilekhika-0.0.1-cp313-cp313-win_arm64.whl (269.6 kB view details)

Uploaded CPython 3.13Windows ARM64

lipilekhika-0.0.1-cp313-cp313-win_amd64.whl (280.4 kB view details)

Uploaded CPython 3.13Windows x86-64

lipilekhika-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (439.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lipilekhika-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lipilekhika-0.0.1-cp313-cp313-macosx_11_0_arm64.whl (395.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lipilekhika-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl (400.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lipilekhika-0.0.1-cp312-cp312-win_arm64.whl (269.8 kB view details)

Uploaded CPython 3.12Windows ARM64

lipilekhika-0.0.1-cp312-cp312-win_amd64.whl (280.7 kB view details)

Uploaded CPython 3.12Windows x86-64

lipilekhika-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (440.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lipilekhika-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lipilekhika-0.0.1-cp312-cp312-macosx_11_0_arm64.whl (395.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lipilekhika-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl (401.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lipilekhika-0.0.1-cp311-cp311-win_arm64.whl (271.8 kB view details)

Uploaded CPython 3.11Windows ARM64

lipilekhika-0.0.1-cp311-cp311-win_amd64.whl (282.1 kB view details)

Uploaded CPython 3.11Windows x86-64

lipilekhika-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (442.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lipilekhika-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (433.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lipilekhika-0.0.1-cp311-cp311-macosx_11_0_arm64.whl (397.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lipilekhika-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl (402.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

lipilekhika-0.0.1-cp310-cp310-win_arm64.whl (271.7 kB view details)

Uploaded CPython 3.10Windows ARM64

lipilekhika-0.0.1-cp310-cp310-win_amd64.whl (281.9 kB view details)

Uploaded CPython 3.10Windows x86-64

lipilekhika-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (442.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lipilekhika-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (434.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lipilekhika-0.0.1-cp310-cp310-macosx_11_0_arm64.whl (397.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lipilekhika-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl (402.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for lipilekhika-0.0.1.tar.gz
Algorithm Hash digest
SHA256 33e886f7239b52efe14ff2281a4e3ef24864f74c9359a14352f6dcefd9970fb6
MD5 9edea81ea4093bef292e27a234b75a51
BLAKE2b-256 a5833eff414a54505bff808a6beae21eb6c80f7fc16ba6fc44b65ba25bb4c072

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9d7da55233fef98429bc84359dac4f2ee9ed037f1c677f9f8a7035969d756765
MD5 c4104b15aad4a94d5fc85293e0f153c5
BLAKE2b-256 334423e81beff5164908b39a856b6779f86176fb6eea551a65b028f268b8bef9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for lipilekhika-0.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ed681cf32d5bfbb658b04a166ce0bd89704d6be65571194ee1e330c29796bc63
MD5 52a952b84693a5e119630e9c3a5d95a0
BLAKE2b-256 e38232e8bd5db0f62cb1eb2b0dd774bb1e9145723e724daca490fd3664830b67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd097a8d9dbb3370f28373196d5f639c9fd0f7b46302cc0b74acde351ebd8de7
MD5 1cc1f5a6b2adea5d38306ec4d4929f9c
BLAKE2b-256 b9042920317bf99b8181d636463d25a6b392e6e016244112cbe8a6a4c0e748a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7c8dc4fc8d28005dc34cb4489d5e02da6a1000fdbc98c078433af77315ef9ee
MD5 578e98e4a8c9ddd4331c73addd844042
BLAKE2b-256 a5fab6d3035dad05edbc914afd99110dd65ad9b47c6680d946db6df1a273d9f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2068e8e526c47c1c72fb3c03033a05073985a6e6184be5b2e7e4c08f0745ee75
MD5 4eec4daaaf24840f00a3bdec18305131
BLAKE2b-256 44f614273448f1cd55b7deb13f69737e01087de68f2071fafd416fe87ccb8fd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 16549f3089aa9b83d2d8878edecbdfde63420325b41d178489908402aba71827
MD5 b11cd9c9a02699bac6288db50982dd7c
BLAKE2b-256 2ed74ac62f64c397e2131b3f4633ba2e2d9d21979c0718e0fc2f86f8507df171

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8f1113fac63842f96664ac4e8608c7dc8100f57f4ec08cb047f59311964fe09e
MD5 c65daa5394eae3a7c6f86372d1d10b67
BLAKE2b-256 a1094b03c8325bccd08b93dbb1dd1f180a062bb38decf22a8479e832dc86edce

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for lipilekhika-0.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ca3b1ef6fe40089223373adbc10734a8ae5ebab986fd9822abcd2209dfc5deaf
MD5 ecd66715c2d93798277a6028e7a53d39
BLAKE2b-256 72b492a9600ae6971fb9f68ffd93aa55bf6fb55a80f517a8bb7f1732aa044aaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8830f2a80e9fa059dffc0383db6a05c32df4d49861d93b597a986bcb2addd7a
MD5 954fcf04f37e4188a3ceac87497aa0ac
BLAKE2b-256 80782964d73838eb38cfaf97988d154504f107ffbf15e982a70c2a828225cc9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3e14c11f60a2e032d8cebe049d2fed079b5c6edbb8c65f5a8ab03a42b529d79
MD5 6c41599f0287ffdd3c528da41c874090
BLAKE2b-256 de9b8986389a4be1f1a6eaa479405a01edfeb3b6dbbb35f94c9ee0082d39f647

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba9a138a4aaa0d02f94134d6d0ef60bd39c0dbdf2ce31904ede20153e57632ca
MD5 098c9f234d258625eb75d2fcea1c1fd3
BLAKE2b-256 74ec9e2e493fcef8f42aab64fa2ab7ab32ff8f2b59d070e285fac8c8100da93e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e372c352a86d72ab29b587f50fe78f4419348df6a3f2f34d223d869bbc36adf6
MD5 94a2a68a7ae3c32035bc09a90f25bf30
BLAKE2b-256 99fa043f829217cd8ea14c241e873a2fbf0f1848a4c223a7e97029e5f71e4851

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 bd801239b32bb8071180953e343e56d122f372e0681adc088d54aaa096591913
MD5 67b868cdc1fda594435f92d7d7ca8a14
BLAKE2b-256 a8a23c8002dd88fc6c185257fce4263b5e93eccabb0e8af7a936f30c7aa8b45f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for lipilekhika-0.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c030bdae8959925fc3dd7aece915bf021e5b3755311cd67fc67ff0f3b9f1a7ed
MD5 49a6b328bd022bda5edc7cd40e0a2597
BLAKE2b-256 5f3981993f369c9bdeaa663aac8f17ad94c9d43e497ff89448e5bfb323e3e91e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7311dcb54bb9cdf3a3985c0c73fbdfbf9dd2e6cc8fbe67c92563f2adaaadffa
MD5 5a1357cee357c5e8803ee7f7c0c63a36
BLAKE2b-256 d5aecf807bddd895eed57f149cab090c31df2a1b2bf7d81c31adb1cf9d696557

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 633018e82670bbdb80abc8cff4854d97a28ab7d67ba8a41f87ee153fce1e6830
MD5 4b4403ad5c8c9f68ffa75bea7b360891
BLAKE2b-256 98f49a23a745bc11086a1e6905e6d924f5f88b19cfc9b7398375232754727819

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef0ab3d62d6d36fbdfe9bab78852505204d1611af3cb449b9ee7fa5cb54e9bf8
MD5 7dd52234a70030fd398faa906c9b9b64
BLAKE2b-256 2f48f43d79494f36be5a02553e8d22b017fcc32266cb436f311728268c72557f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ceac1317caf2a972becd36ccf3c20d11b0c542ef7ee8c47e89927a793ae55cd1
MD5 2a3b4b2c3ec661288ecb9ad4f2535e92
BLAKE2b-256 568e68445921d107879d6aa65893860183d884406ba6e6937f205c2542c38a5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 992b1d48560d169f5ca43c9cecc566f18e89e8f2bf2aa2b7dc325d09f6ea9f19
MD5 137744de5558d0d14537f499e69a9425
BLAKE2b-256 0e878646b721bd76374310c6483556ef0e80e5d72b350e213574edf1eac9c499

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for lipilekhika-0.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2a6c18d561a104841d4f2ee4b25edc3edc4cca3273d99c481014540754c20832
MD5 1f30b6753d87f4470e4054b3a3e6d947
BLAKE2b-256 afec61ee145c54f77bdcef175b56c5977b019bc03dee48427b46af8acec9b41c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3c54ba19f101f00a6c281eaaa97192dab2b7e8169385ec19b3f1262f5a2c864
MD5 d7151092f51f62e06bb88741c08eb0d9
BLAKE2b-256 af5b47eac54ae2359c434ebfa1d193e68e1c2ef6b22a9e5560e2e680b980f9ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39a340625f7156d664d400ae25ae78a338a78fc3fb50c1856f69b912fd1680ea
MD5 d1710b9e479eb51dbb7a0906e91c134b
BLAKE2b-256 955b41903bb60aec2030b100695d7649896fe50f4f59ada5d025322540f0db83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ac63d0515df02ef77c108fbc14da26caedd8bd6f73c8c90d9e69dcd9f4aabb3
MD5 8d76724a46158d33f4644087ee2bedf6
BLAKE2b-256 305077251b550bc5ebd9051f35b555ca939be6ef52e3227b2c33986bfd0cd2a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e438127379d403ccc645f12aac415bc502c61bd94075d77b75d60ce222423b69
MD5 34277c0dd9ddb16c417577ffc5d7da7f
BLAKE2b-256 c2a7c1bf3c9fe938476dc4310f1b215b1058317b0f5a707669d4675a76d27504

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 df518417accbe9e61a207669e4966f1ce864fbb3f84a127055dbbc84327395dc
MD5 b4650ad719005481d1548bc0c104788d
BLAKE2b-256 2619a5b85a5b605c6b31ffaa59bd21d66481342627e95d26f19df56fe0777063

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for lipilekhika-0.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 576927be20793bf6146745e551d96c102319a2d0dc6b38ed3020e8d17780cc4a
MD5 e71a17656262cbc6acbce6afbe14600e
BLAKE2b-256 7fc886ee4650840cb745dec781b41ab1477ff4801757de1d7890dc636f47b032

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 539b00ba003878c659471cc29bdc1aac6d1870e9868497b7b283f0ed563b7a05
MD5 a3a0f84ccf77b05a579d6390b2b44e8b
BLAKE2b-256 db5f44c001ef2d0b8a80206370ae8e86974a2144ab1e7b3b673e29427ad31fd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89acc627a91fc4f545d94666cb1c997b6349f7137be7883995ecdb8713f15f49
MD5 2d7256e69f220fdeeb65e503845c6567
BLAKE2b-256 0c0a0d64b7379a4ae7ce872f9d501be27b8df67e5f199ea5e214d0011304e582

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d66680f20377405d5c122992441c74998249a24a028c14ac0cabbaf56573592
MD5 9380895b9c7988ec2755ddf304c507d4
BLAKE2b-256 098e3ac20ec27b7fa1d0c1594d3fc24ca751907734beac79a56a6be85f3b2359

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8b574e773cedaa5c686f93e013c7c5054e8ff2d1bbcc6a1f4a38ec112f7f75bb
MD5 1e07807d4e5efe30813220fd2ada224f
BLAKE2b-256 6154e1a02a1ad994952e87b470d2202c61235500830bc4554ef142b1af61ee70

See more details on using hashes here.

Provenance

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