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.1.tar.gz (132.8 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.1-cp314-cp314-win_arm64.whl (279.4 kB view details)

Uploaded CPython 3.14Windows ARM64

lipilekhika-1.0.1-cp314-cp314-win_amd64.whl (286.3 kB view details)

Uploaded CPython 3.14Windows x86-64

lipilekhika-1.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (446.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (435.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.1-cp314-cp314-macosx_11_0_arm64.whl (404.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lipilekhika-1.0.1-cp314-cp314-macosx_10_12_x86_64.whl (410.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

lipilekhika-1.0.1-cp313-cp313-win_arm64.whl (279.3 kB view details)

Uploaded CPython 3.13Windows ARM64

lipilekhika-1.0.1-cp313-cp313-win_amd64.whl (286.3 kB view details)

Uploaded CPython 3.13Windows x86-64

lipilekhika-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (446.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (436.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.1-cp313-cp313-macosx_11_0_arm64.whl (404.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lipilekhika-1.0.1-cp313-cp313-macosx_10_12_x86_64.whl (410.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lipilekhika-1.0.1-cp312-cp312-win_arm64.whl (279.7 kB view details)

Uploaded CPython 3.12Windows ARM64

lipilekhika-1.0.1-cp312-cp312-win_amd64.whl (287.0 kB view details)

Uploaded CPython 3.12Windows x86-64

lipilekhika-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (447.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (437.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.1-cp312-cp312-macosx_11_0_arm64.whl (404.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lipilekhika-1.0.1-cp312-cp312-macosx_10_12_x86_64.whl (411.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lipilekhika-1.0.1-cp311-cp311-win_arm64.whl (282.0 kB view details)

Uploaded CPython 3.11Windows ARM64

lipilekhika-1.0.1-cp311-cp311-win_amd64.whl (288.8 kB view details)

Uploaded CPython 3.11Windows x86-64

lipilekhika-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (448.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (439.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.1-cp311-cp311-macosx_11_0_arm64.whl (406.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lipilekhika-1.0.1-cp311-cp311-macosx_10_12_x86_64.whl (412.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

lipilekhika-1.0.1-cp310-cp310-win_arm64.whl (281.4 kB view details)

Uploaded CPython 3.10Windows ARM64

lipilekhika-1.0.1-cp310-cp310-win_amd64.whl (288.6 kB view details)

Uploaded CPython 3.10Windows x86-64

lipilekhika-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (448.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (440.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.1-cp310-cp310-macosx_11_0_arm64.whl (406.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lipilekhika-1.0.1-cp310-cp310-macosx_10_12_x86_64.whl (413.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: lipilekhika-1.0.1.tar.gz
  • Upload date:
  • Size: 132.8 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.1.tar.gz
Algorithm Hash digest
SHA256 23166fb4e58448a703a648d085a5ccb823687aac9cc3d9cdbae3175cc00be7ac
MD5 09a79fe71be91e6b4400ae011c51d1d1
BLAKE2b-256 1526bea8e392c8e59739805fb959d619723fa453dbcd494c819a7192509f3701

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 190687f0bb20ecb582c8663b6b5e0f654207f31f8439bfd4369274d63b7f5ec8
MD5 e72f7aef02673750bcc8c93c56ac7038
BLAKE2b-256 2614d4bddabcbcbba2d65e1b533cb63f587567e30e971e74a1bde9817317933f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 286.3 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b9e3c4e03e26ed3d95658f8493911025040517055e3cc5959b6fe63a6870d5d4
MD5 fa7dccbf90ae01a69b83f367bb3c4408
BLAKE2b-256 ee776e164dc4ea0a37f38f0d43a4affca87f580b10c7ebb6f67e2a17ddf03adc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65b42adec739a858cbebdd457dd974021eefa69044c4498f2dd27958803d0419
MD5 fc2eac09730cebecfa40e5b5b8a2723a
BLAKE2b-256 440b25e7b30bb71eaa96711440bd66dd2dc1cd617c6f51817648a625728f3896

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ef5ac861125f74f8f420564d9bded57050ad41415564916ff67584774945bba
MD5 5b3b440e0644359814f533ccf6d4f75b
BLAKE2b-256 ef7e2258663d2c69c412a7710f13c07894c5e65eff5f3a0492044c5b2f66755b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e479e44a2ee47950fe3bf6afa79dd50f85c7c9ce1d35378a4638d73b67d19a69
MD5 712929047249a871c7b966fb1ade53ac
BLAKE2b-256 15a40ffc5eab2f1b1689d1d32e7603070c987cb50d28a7ec1173bb3df05b93a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 589a42f8a229f378c502b8a68871038b593804febddbd1d5d2033dd6c4911873
MD5 19d8fa32b461fbdc1f8937ac136f2544
BLAKE2b-256 6e5f0548c9c9afda6811c233da690a9ad9a737d6b5d2ca0cf75654dcd33288e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 be3e52132f01476720e7d27abefe31400fe6ee8a5a9b7999a45ca3ac9c9b02b1
MD5 05ddd77a63b370fa9d119c2877f83789
BLAKE2b-256 64e5b72ad7262742a98da540ecae8c049522bb7ed74d85c28a5169e91ab70a34

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 286.3 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f3182f48038d5193efe90e4fe643a7ddfc2a1ae13e762962382a01a0d9fd1d33
MD5 03d331c93bfedac01f41d8136a07bb8b
BLAKE2b-256 d53e000412869859181e7ea92b44b5ef6acddce69e5176c70ec30d7fb0f2e91b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 787ab23a2df6c7d470f06bdbe31001f04b3a70f354ff286acb6e038620237bae
MD5 5e469f423d69b538debe642b5ef08795
BLAKE2b-256 f3ec63981ce174dcb9a0b6cee9c12afc35ab6d2a7a46d8d063fdc4400fb0a072

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8cd40c7ffa8ef1f95deec5ee652f06baf35adf62ae89af040ca180229dc9ec75
MD5 7c9ae1c7ade3fda39284b5b5a85d3f00
BLAKE2b-256 120180cfdf988f3b467c8d2bbcdfd14025c77bff1664f541c98f4c030da53168

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cefcd005a1433c7cd111d63fa3aeeb866cc1042cdc0b0266971d96a2eae005d
MD5 caf73d60786ac217e6fc0c3a2fb5923d
BLAKE2b-256 fc63db1b89fd9947e649a5c50943cc0fdd8f3109b27c3c61d3e90530c07bea24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3a1d93b5da75abd185e60702604405eb75b986857050d00494563ec53d2c79ab
MD5 f59c9dd85401165552353e567130858b
BLAKE2b-256 c547ba2ad678b8f2414950fe470078a91e53d9af573c53ec81b7329f4ecb4f50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 785b28cb8e8f085d3004a6ad0cae9fc2665b6c603022ddcd3735d4808d464102
MD5 4c8bbb661e7a985bae56a21b43898265
BLAKE2b-256 da577e8fb03ada5291476a1cfb933d6d3f002ae84145daf969c661f8fc045286

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 287.0 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f1f785e09821031645b25bed4972f46cb74e055c3a72a57cd397c5c6d5c2db1a
MD5 2d1004888d6e45e1586de2d00751ea7e
BLAKE2b-256 dfa47e0b5bbcbbd073a1863ab660012fbd5a6bcb7f78e8b27601798521a83b92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 006349bedbf3efaddb8dc8091d7465a82b529323c7827798c96d17a8f96e10da
MD5 3a0586c06ca35af8b0e583dcf6a46a6b
BLAKE2b-256 33bbcde83cc458933c7010803efc295db35372e28ada3d1b460e85cca560208a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05fa04eab1fed360d6410e5463e4356f878f242cf39c0982efbe21de2b17f28d
MD5 6e467af171e3ef61acb9c63410bd2c97
BLAKE2b-256 46c2490434a6f8f54950bfc7efd2ab7b9b734fbe6322a740f9ff2121dfb0a2ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eeb50a7fd4266aac4edb5304fec4f59289134d420d3d49618aadbf3d644b6d01
MD5 652514fb1470c0e0137b45f02a84e577
BLAKE2b-256 223be5808bf86ce41502d4d9ac9f2d57943d116f3f82f78eb0d3706dd8ae39c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 12327ffd7e250ca905e1da30b9dd886cfad9cc3f85d3d6b9d620c2fc5e495c89
MD5 4ade1a39a66e0447061f8bc8f4a73811
BLAKE2b-256 0a325d61d6deade786fa393e19eea5e3f8ab9baf6179b5b49fa711c84a181be6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 629beeb008cfe3340a6addd21e940fd956a7b39d4b5d00b7f4737b289c6efddf
MD5 f0492a1f4918a67082ecf2a11ca380f4
BLAKE2b-256 0bf2f68c1d694a40f78abb6951e9841e657da8f9e79292a545ca6318f1f7e8d5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 288.8 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 170531ea2e233dccbb08d8c5deedfd3054c0f0f3dd09bfc6c6698ccccd7c286b
MD5 fa6f218a117aa2011fd6605c97f4ad7e
BLAKE2b-256 dbcbb8a9aef91b0e0c12148e3f78ede2f4089c25ac8ce85ed0c84eced2ef7074

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc83285d292526cbc6d911d20de6a8c62d266330d3a6a6be5c7903c28ea86a81
MD5 81c7b0f442c79f524df9a85aa3b058ac
BLAKE2b-256 24c7e669940fcf5e3c321f3290686fa63c68c0db2370c534d0b4f72d056a1287

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 772b45dddd7f858b16b218ea877fdc34c19cc83d973aadeed387df36533661a3
MD5 d849c6d71977fffa3fac0f56a1c7740b
BLAKE2b-256 d69b50c51c8b9c12f0946ba9e818146f2178431a5dce96f9a8fd0bba4d53667e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ab734db10ed19e71f865dd9e03b918db16f70a78ceeb90cc39349b17d01ba72
MD5 5644eee3cd80e699d2bf4ea3cf103a58
BLAKE2b-256 0d0bc4de4c7c511320d91cd27afb19055bb2ea5dc3a8ba558838e19bfa3f9370

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 31b410f2519927bbc8cd0fd2862fd03c1761b411bcefb4545a0e54c42e3bf9cf
MD5 7c9340214e27875e473e3d42188fe1e8
BLAKE2b-256 1b3ae83ecb8a9ac70d0e526e52aa3c39eaa8b4237ccb24588f773cc3c32d218e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 955fddb492332e9088f1b73d3e1576d6fdf1b1c7acfc6bebb76399eacf55df89
MD5 801a1b5fbd33b1dc6c80a46584ab864e
BLAKE2b-256 fbc61cbf9907bda33eef8c924dd7c99e28077d077a80c74e1a31f2bb324631f5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 288.6 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 11681015678f6f95522912d9e4ea1b50d1441695427f0d49b35f554226dafe35
MD5 efceff6dba34f5476e28274d45d587a9
BLAKE2b-256 f886968adf30fb03c956b4dae4d1260502912c11ce5f2cd186872df9c897ff66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 149bd7a3d3dac603adeb6cdadff55efd081f71e6219cc612fa2eca21c3349b4c
MD5 f1c918937619f23f1b986a0191645001
BLAKE2b-256 2809eb449d6eada2477f3268221b2258e0fcab829b9c99a007ddb87a0de69035

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3629b0bda36a568d7b908756e00e5c306e35d1105dbcff5ff8afc41981363501
MD5 5574ca47af8b85ee5a84fedba512043f
BLAKE2b-256 4e29f3604ae2ca2a40795004a298ad50ef8cab7bfa0ef6b3b7de4214a39f3649

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fb6ff4e8f5e1c143874f4b97a6be7be5fd9275e31710c28e74d8a060a508d53
MD5 8f664356fbf1b93771c0f234bfdfb412
BLAKE2b-256 16160e2f64e8633a0b98c8157578523ceeb37dd6262dbd6f1ebbb3122715fb96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b99b251f417683893355464b25dc015d9fa5c404db9115b622e8aecbe274d7b4
MD5 1b36afe11819ac9fcdf0ce99d0da1c50
BLAKE2b-256 60db524e1b424150f79f968e1391f733f3095600e1743e32a00a26e20d5c8602

See more details on using hashes here.

Provenance

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