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.2.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.2-cp314-cp314-win_arm64.whl (269.7 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

lipilekhika-0.0.2-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.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (394.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

lipilekhika-0.0.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (395.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

lipilekhika-0.0.2-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.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

lipilekhika-0.0.2-cp312-cp312-macosx_10_12_x86_64.whl (401.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

lipilekhika-0.0.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (397.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

lipilekhika-0.0.2-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.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (433.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

lipilekhika-0.0.2-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.2.tar.gz.

File metadata

  • Download URL: lipilekhika-0.0.2.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.2.tar.gz
Algorithm Hash digest
SHA256 60f5d875496cc046978dfc99b2754482cdbbd18d80fa1f0ad4edefa7324b2e56
MD5 1f55e4fcaaee23a00f055f49b17fd6b8
BLAKE2b-256 127323920020b87116f3357cd05a637e39dc1c629851a053dbc4acdc1de337dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 686baa8889f2b731e056b03aeca41d0dc35359bc378024241229670f34556b7e
MD5 92695b3733061cdea07f1910ecf60f5a
BLAKE2b-256 387e04ed01d697384d1b8abf872df622c6f43852e27e2e8bea0376fd131fe45f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-0.0.2-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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 32c334b10c21ee8e0973b36038a89d4045ac8b68f2a908a2a649041dedc857a2
MD5 6a7e2ac1b79a2afc7a3547f11db8bd8e
BLAKE2b-256 3f8dadc8c0263841ccb6a85cb9f9748a1bef86eb9347e76cbe0895e670172446

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03f953644c8eca15c304a99bbe9573995466a47229a253e5cf3b660e7a32ad7b
MD5 6a41a80ce811166989d401b1771ff612
BLAKE2b-256 e9c01ee3a644a6696112ee93c762323ae89b4ea8de2bc2d7d642ee44e5a2b139

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c282636a14a24029e7f15f11fcf0d338ceb59e64abc89769372cca7a3892ae9f
MD5 af7cf4cd58fa8fcaaff8ec288f11fecd
BLAKE2b-256 cc3e16af6354f574aa5c1edace96356eaeeaa3150688ce90afa526382651ba3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9485d2c55f3e0c1d99ad640ea58a31c0e4634e46197756c02e7fa8a1109fcbd
MD5 e78195fcff4faa8536f7663a7ab81cab
BLAKE2b-256 f6b2718c4e475508879e3945797c0c9d69669b813a91e63af681b8ee07902ae8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c922ab009aac6d4870c8666e478fbd52e260e0370ac9c6d6a98d4d1a62e7b38
MD5 b09cdc68d17860d1cbe514fee6b558ff
BLAKE2b-256 3741eeb8e146196db46b5814a4c849fc8bc64d5177a4e1aad124b2be4a039c76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e4aabe814b5c68cd806d4b9e09b6d932f3af13c396a3a676ec63c35b8e708b13
MD5 f90fdfc808d991ca2c9a835a1fcc4a02
BLAKE2b-256 b6819a18ad152727579d5d217b8f21ddc410fa5c510d806878502006bdcdbe64

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-0.0.2-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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f2e79f207e5042bf8262586a3601fa9cf5669110dc08069b5120fc9fd4689035
MD5 da8e4ff4890ff2f23100579a2fe4028c
BLAKE2b-256 39c0c256eea4842ad546c402fec501b0d07767f8d4525009bbcc3ca0f4a678e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dda3e86cd02ec29f03732805c89f1644c5f9df9fe6aa9c0dda2ae3c32a716d9a
MD5 cb2291cbb16eb96ebe09c0f2baa254a8
BLAKE2b-256 59b08c205cc73bd54984a8a151e8dc323831858ce80b5ddddbc2ce57c8f6c5bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1dc1d8a0473fcb2a7320d206f875d18294ae79bd91f8fbfd77c3eb7eaf5915b8
MD5 4e7da49c3181a9cc3caca340abb712c4
BLAKE2b-256 890d39bdde2c2efec00026eea0e720f2834127433d84efb98fdb016a9d88a39c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0eb8a95aa357d2aba993cd58333a827563e3451470c79ac880c35bcbc1c41ee4
MD5 5b75cc097c363efbef909cb4db86c5b9
BLAKE2b-256 a651129ff330fadf2c3e8d7ada1f0ba1ae620635498fe8deb224b37d8845edbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cccef20858d324afd80c4566dbf21b5e91a4b921e31d20bd2f90796dad457725
MD5 419c1b50782b9883f5e7aea46ee6ef14
BLAKE2b-256 11224dd6e471ee0630a8f656213c7507368203637b5d8ff772d1f4cd5568b99a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cddb7fd4d5980ff3a4daa1e98e16962c7867607813ba7939f1f388333977a585
MD5 1336210e036d0b373a88201cf0b67f0b
BLAKE2b-256 51f9776fec9f270334cb75209d0cbad5e5f2344ae3ee6434a9cde5180cf5df74

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-0.0.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d8e80f03b9c5713069200c084bc4f283b62224d41667421521954633b4426ab8
MD5 e8f7edcd6a12c9ce770ba78e1aedc05c
BLAKE2b-256 82091d4c94c82dbd9848beca206f59bc8c4dee1639e26ad33839ac7a2bc5bed1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d88b702f96a36781cba834e5aef89f4ab27206e4c7f4ffd2850bb2b3bc7faa7
MD5 5a54e7b6ca898cbf30d950b465484a1f
BLAKE2b-256 5e2cd9d0f4bdbd8022908c8e16c4c615caf6c5ab90921112f116b1c4ef8fd972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e26d5454df13eee79304a3561f2541f3f4f08ae9b469e97719886c68db7c371e
MD5 ad2013c31e46abdb86c7fe1369b0593e
BLAKE2b-256 d315ca2b34a6d701d02402f23e7e299cb550ede3e53bcf6f7fc337ffcb07d380

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6ddbd6cd2d07c970fa7b8810f42e287f4dcfea24ff764f3737e4c4a5b1ec50c
MD5 0859287bb25ede4b0331c7d89542b451
BLAKE2b-256 b2b8e846ef7c4e7dcd1450dd7fb1deb4868e6c41b9fa01074854523480834604

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 71e1e48289bbe3fd742653fd2fbd3847bc0aabb7ba6ce9e3ef915af96fa35306
MD5 13bb4b289137fe52db673f97c9fba2cb
BLAKE2b-256 c09c621434d6420619e6b9cbf0969943be8bdecbf9fa323df57fcf06c9ce636d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c192b294200cc93d9883d90966eddfbf7d1be0d40bb1200433da5d2005f92c10
MD5 3c75a21567fd08827b379cfba0879515
BLAKE2b-256 7a3adde76ccb004c34489a9a2f9762eae7d99e2109d34bea13ba0fb0dbe22b32

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-0.0.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ca633bfe5846566f6e51300ed07bd6372d9999059aab594876e465d99317ff29
MD5 8df629a661d6a90a7fdffe0badc32f05
BLAKE2b-256 8edea015d0ebe9aae7106410de1e3c4e9abef6a5a2b8db4c15ca122982f720ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16fc81877cc4c12a90dfe8919a3bb9d8f2910902fe0a322058b9ecd723630b50
MD5 62dc5375a2fe752226e3797e2ee86975
BLAKE2b-256 35f306022dae1fe2cfee4556d96394dd463d75275ba75150edd5a1e07fcead8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b20abcc57f336cef8aaa3d1b1015ac7a70a19728cb8f361a91da40129fc5cb9d
MD5 8161f29957215ec8a38468d0dff3dbd7
BLAKE2b-256 57d57a008f018c47c3124a56adf68a220583b704d59d68b879e90e176caec626

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27fb6898bed080bb87a4f6e2b24b059c9033f8a810e981baafa18772db5bd5e1
MD5 74a1c6da7f12b6a5b4e1875497b365cc
BLAKE2b-256 0e513706e366598b9355b5f205691738e5168fa6d0fd233d8b9d3c85907725e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da6dedfaaaf9a492d1eae92e0aab1c1d72ab9ded99d2ae7fbd03dac783830db4
MD5 5c7bdc70fb0caa9f1849b1ec74d3421c
BLAKE2b-256 cad71357baa1e2c128291f6d63f079b643abf01972c47ee54ae96312216ddbcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 55ce02214236f4d92ef441ea35c5a1b0895887751bb5c97fc4ca1c07a8b7c640
MD5 f2de90aea2c40a885839eca276a33b92
BLAKE2b-256 0cd0a732ab05dbe9c7d6bc5400c05f8520e42057098960b1cded210285b88f85

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-0.0.2-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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1928748cb6a1ef694d702d788a1cb6f9220200fa5dca483e0d2fc9d3c7cfd9c9
MD5 2125f44f06204bce4b87fe92cc7a7cd6
BLAKE2b-256 1c25733607c6aa1713c91bbd4983df0a265dabb08c53fd5ea8924738bdc16b05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52d40e6f1b4d41da8281a89e422fcd6742689df456008ec5e0eddb3a5936442c
MD5 e23692c5ad27678eadb4c35f95b58dab
BLAKE2b-256 7c63874ca70d1e102141de0ec5b543d8f53990e552c13522a648a1cfce5ee68b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1411043bf12c0ca02a20e6ea95c261a7460d81ae64bcdff693896be1a1db6b4
MD5 56810d9d1665a5dc71f669a5b131edb2
BLAKE2b-256 7a4599bbb25dbd16fdbda6065d4b1d4fedcbef7893b6e136a577b5237bf69d5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecc64c068a9ef7b6d6b9ed5ae09cb9b65c3e6d1d66cad8d32f3cef08b5e014d3
MD5 2e364bcae818ec72e73a8a7c98b8270a
BLAKE2b-256 93ac39ffa7eb92c7bbd8cbef69e9ab7a68d53cf09ed8db719d8dd2e78d6ca8d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6efa0e19c313e632cbad26c8d1a1c832172382554f14ee95f661c4d0e575aa91
MD5 52968c7a761f8592b270a610acbba6b0
BLAKE2b-256 7bc0b22a243514e77f42f1242015a24f3cfafc5271ec3b5b104471d8473ea9d6

See more details on using hashes here.

Provenance

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