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.2.tar.gz (134.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-1.0.2-cp314-cp314-win_arm64.whl (289.7 kB view details)

Uploaded CPython 3.14Windows ARM64

lipilekhika-1.0.2-cp314-cp314-win_amd64.whl (296.6 kB view details)

Uploaded CPython 3.14Windows x86-64

lipilekhika-1.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (444.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.2-cp314-cp314-macosx_11_0_arm64.whl (413.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lipilekhika-1.0.2-cp314-cp314-macosx_10_12_x86_64.whl (419.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

lipilekhika-1.0.2-cp313-cp313-win_arm64.whl (289.8 kB view details)

Uploaded CPython 3.13Windows ARM64

lipilekhika-1.0.2-cp313-cp313-win_amd64.whl (296.6 kB view details)

Uploaded CPython 3.13Windows x86-64

lipilekhika-1.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.2-cp313-cp313-macosx_11_0_arm64.whl (413.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lipilekhika-1.0.2-cp313-cp313-macosx_10_12_x86_64.whl (419.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lipilekhika-1.0.2-cp312-cp312-win_arm64.whl (290.0 kB view details)

Uploaded CPython 3.12Windows ARM64

lipilekhika-1.0.2-cp312-cp312-win_amd64.whl (297.2 kB view details)

Uploaded CPython 3.12Windows x86-64

lipilekhika-1.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (455.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (446.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.2-cp312-cp312-macosx_11_0_arm64.whl (413.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lipilekhika-1.0.2-cp312-cp312-macosx_10_12_x86_64.whl (420.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lipilekhika-1.0.2-cp311-cp311-win_arm64.whl (292.5 kB view details)

Uploaded CPython 3.11Windows ARM64

lipilekhika-1.0.2-cp311-cp311-win_amd64.whl (299.2 kB view details)

Uploaded CPython 3.11Windows x86-64

lipilekhika-1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (457.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (449.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.2-cp311-cp311-macosx_11_0_arm64.whl (414.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lipilekhika-1.0.2-cp311-cp311-macosx_10_12_x86_64.whl (421.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

lipilekhika-1.0.2-cp310-cp310-win_arm64.whl (291.8 kB view details)

Uploaded CPython 3.10Windows ARM64

lipilekhika-1.0.2-cp310-cp310-win_amd64.whl (299.1 kB view details)

Uploaded CPython 3.10Windows x86-64

lipilekhika-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (458.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (449.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.2-cp310-cp310-macosx_11_0_arm64.whl (415.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lipilekhika-1.0.2-cp310-cp310-macosx_10_12_x86_64.whl (421.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for lipilekhika-1.0.2.tar.gz
Algorithm Hash digest
SHA256 0772374cc7cc9b179eccf2deffd28bde93137edcb12199a3220c1dee3813e469
MD5 91215e47c8c0001c86e6fe691f7e7cf8
BLAKE2b-256 d7b32732e4d2929fcc459cd22501853019c55255e7edaea9fa067dc83398579e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 31f98a8295598928394192f67db4ab4f675b3a9dc004f120b6a1be30ea25af04
MD5 bb7350becc731456b8cd421c424fd5b6
BLAKE2b-256 fa3caf34d72a59043a8a33d356184a540dfd523545ea9ccca803a75a0d62c81a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 296.6 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-1.0.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3b3c61514281451bf6675566b685342130382fc363fa82a019f8beb7438fce5d
MD5 57dccb832b02fad175166b81b078c33a
BLAKE2b-256 6cd9c533ffffcf6a6edc0ccf10d96047da09671f920d1a390bbd4b0205dd85c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e00a946e4e4f5d372815da9b2abcdb82c84b96a547f1e03b02e55666a4b17ee9
MD5 8c50533e7a02b1b5c2ea6a625bdd9634
BLAKE2b-256 2742a8463872927e559954524ca408fb8c7f62a781e8e12495b172d5376f3715

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46623a23061da6c441a42e891773632cb54ca54026500a42167278ce33bfc981
MD5 57a5561c71d248076d29d6c15d6baf52
BLAKE2b-256 3a2af6bb19aa671a1aac9df52abb5d7125461c879e0e8a2791b8dfe279f0db76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62e977ba733b9211adae035a0e323f0f7e0d4474c181ba5972a881f4a55d8be0
MD5 0fbb61b684959151b3155b86358f9624
BLAKE2b-256 189a7ade67efaf1d6546dd707d74b78f4c7c9b4f9721e1ffab4c31def541eca4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b8a6364fdb505b5205337f2a24cd69477d858c461b10e96d3a7bc83e614924fe
MD5 7e4dc6301459b7338ee5dbf737aa296f
BLAKE2b-256 9ccb23bea1fac603fbe0789951029746be23c2e084e91a0fa7ed729607ad173f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 62d416cb038e042b3199b410d77a60c1b3995b12f85261a22f1f98543e2da14a
MD5 1082d76197072de37e859bc18dffe433
BLAKE2b-256 64ea03a4518e3d6584cc3cdde15ebcb42649b45ff751f66723ce73d96595741d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 296.6 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-1.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 abb1a3ace899dab230a10e75dbc4ac38ef434b5c0cef4124d49ac03ce27532ee
MD5 2cdd1fb8646f27d923aef574e5bcec6d
BLAKE2b-256 55c71bd45996ddca3cf696892d42fd34b86b42b18277bd7a481cc62ea27b10c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2600e781518396c8c5a11d5ed3f8b6886634cd7c7db2beeac10c02532862f45
MD5 fd9b57d417a31ea57b3477cd3d5f1670
BLAKE2b-256 a148cef28ffe1df894374000812a0f02ba551e30994398c47402267678d7570c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dcb588861c0b94971da980777a079ca115f2fa31db62c6285a7669d77b661093
MD5 b7692c389608ad9b6413cae71be3ac69
BLAKE2b-256 6b11d20d72c276e54f77acadecf7c4f09d972a3c9dea00e54f9c7f0ea2916f7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e412fda259d27032a3d0d33db1fbb5f9267d9e766ba9d5e504a108eff2b41e7b
MD5 16980ce5428f9ec192a600ba79591c6f
BLAKE2b-256 b7a81cef1746685b84a7929c959058375aa288addd60d3f1f7c588715001e48e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c18efef095293af95cd9ec7247af002e7073d59d9777e297dc82ad05ab296cee
MD5 7b4adcbfaac45422ca220abe2966bfcb
BLAKE2b-256 512dd62d7aa70ce5287377bc68b73d0d549c9e579bbf7b021cdee7603997c273

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4115da80e2260dd3619faca619662209831fa912d830ee8e2de5e69a90f7e0c3
MD5 1131bc529f295d706ff32b7e5c1a7075
BLAKE2b-256 96c7a78632e935d62a6b239091ce1380a874ea81da67179534e3640c192aee64

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 297.2 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-1.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ed5a1433f5e7434c52f59a4e2729fa52afc7f68433ecf32b05f22b85971d94f9
MD5 c254566eb8dc5432f5a59335824847bb
BLAKE2b-256 4f1402591cc0369293bcc90e4060db7841b326f6579d47aad03e1357ea572e8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9cd5134bb904be84f6cdd2127f39cdd4309df39b391f3ced12c98f718b86ee6
MD5 b3feab9c2bbae233331ede20cbf82188
BLAKE2b-256 cef8c8490f1aff28a82f16b59f768a9bfc7d2c94127911b4c26624e05f60fead

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67888b37a45cafd43a88b475ab8b4f3b602f4817bf877d2009deaad02eec081b
MD5 cb6c3ae05c2d29fb333968ace6d55e5c
BLAKE2b-256 8025d67be8bb15a70cb237d995b76447b2900386ca9d15297dcb40048ff4b29b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9987e7647987455662f53b87ce271ede64b0c84b96f8bae758156bf786e5f5bc
MD5 eec8bf6d73f796697579ab30b413b502
BLAKE2b-256 faf8371e5999d11e9b8cb4abf95c44653f3e4302cdd55cc50bc7c5bbf4362a54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1c0270b04ca984adb6719dcf04765540f9a4542599055b663e37a24ebc7dbc29
MD5 317406bc476b0494c03fef1c61afc6fd
BLAKE2b-256 be2a957ca5e300269ca20ee74fb35c0166e3c9e6b9b0e25f1d2bbd1cb99390b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 bcb8e30b26960ed7738601bfc418f4b84327bb749d9ae8e6d1e9e308f34dcba3
MD5 ce4e289f6142a2f6174329b3684eb988
BLAKE2b-256 ca9785eb9b0de85ea59a62c01573074860cf0adb65aab90e6aab2d90a080f158

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 299.2 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-1.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 db9cfc058682cb29fa861f66c6faf0929ab7c3913a94616c6a001755fddbee38
MD5 aac6fc77fe5a11f3457e38170aaf59ce
BLAKE2b-256 e5b3e57835cb263620dc848767a3659ca668175a49f12141211bc0c86355a69f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83ff62989eb8ded1ee437757b9cb494e0ab860cc6b6e46780d8b3439a2e8bc4f
MD5 63d969a98127f58130bc0cc5b485553c
BLAKE2b-256 80239445a64932d3f08784526fd30ca42d84b2cebedbb26fe60c51372c98124d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d604faeb7109ca4d4de89d2f14a43a2936aa4d5f8ca5bfb3cd75c4422c35309
MD5 1108e5e3660dc5e836ecd0c015a52073
BLAKE2b-256 51a5bb4d5a4a3fe85e3f8a580cdf7c5d2958f230f0fd58f14b52fb0086bb76eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7687e7d6b8762dd1058841b77f809bf94b739c66d7b14da22e78f71944e99067
MD5 1b72e8f1f6a84e313dc3099847f2cb3b
BLAKE2b-256 3a38d0a57e090684e5f3474d99ccbe9a787162be3d5bf17d2eb45389ac709e13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 66cde25d162466a5c73f2c0f097ace593e4e3c56a13504800291ee3a6440bf27
MD5 4f91124f88cac588e0f89516625de0ef
BLAKE2b-256 fe71a4b744fd52c3daf81b4ac20a23098c5bf1c13745a6d1b8137ab2fa6cb18c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 bf58d64eb2ef354055c03e55b2d89a7acc1c211f29333fd674fdc4fb62fc9d59
MD5 42aa2bb4133ff62cf59d5cc11ca5e55b
BLAKE2b-256 f32db6398a2f8db8079065838516693617d0d0857f85cf43ff5725f99f97c387

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 299.1 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-1.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 82aa685116159f6022b48f32264224431abfeb58073ef18164f772ba0db33af5
MD5 0298acd63189befdab2ef5007c0ef171
BLAKE2b-256 06aee65b8827fd28d701e5dd0bfd027c97c079f37081fa8dc1fe2386ebedb206

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3020f4119ccdf98b94a8dd1b4ad0b6308d567e3da12f546a36f69a57d261cd5f
MD5 fb6bdb3c1693e5a926acfd4439eb40cd
BLAKE2b-256 3eba934a1d256e0aa57654581981c4c3c169aa67755630d5b05e3b8c895919bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2782d9414a2b75fa6b182446b2584dbc3468786b8a1617e5faadd090d60b27d
MD5 d1925ccb5899639659c41c7791a706ce
BLAKE2b-256 9802d7ac51645175df877c54af79ac9db41ac9d1eb74c5bff9d32e344db00532

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8c9105d3d275a1decb7dc1810dd1dfea78c721da32d2b25b33be5c7d45b6349
MD5 5c9f6981f0ed9077deab8c097730fe85
BLAKE2b-256 3fd8f134b1e93d263784eabea8fb97976560c1bccc425dbf686d38fe33de5147

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 33c04c1e1ac4ef2c37c59a12302fc2806f0fe4e81b409976d397e838a5bb32c5
MD5 0b7678b00f051a47e073c99956d117ab
BLAKE2b-256 c1c4790e3f5940ce93580b06d3760ac737ba7386578b0ddf08b590b741619647

See more details on using hashes here.

Provenance

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