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.7.tar.gz (145.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.7-cp314-cp314-win_arm64.whl (274.9 kB view details)

Uploaded CPython 3.14Windows ARM64

lipilekhika-1.0.7-cp314-cp314-win_amd64.whl (285.3 kB view details)

Uploaded CPython 3.14Windows x86-64

lipilekhika-1.0.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (405.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (401.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.7-cp314-cp314-macosx_11_0_arm64.whl (379.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lipilekhika-1.0.7-cp314-cp314-macosx_10_12_x86_64.whl (389.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

lipilekhika-1.0.7-cp314-cp314-android_24_arm64_v8a.whl (419.1 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

lipilekhika-1.0.7-cp313-cp313-win_arm64.whl (275.1 kB view details)

Uploaded CPython 3.13Windows ARM64

lipilekhika-1.0.7-cp313-cp313-win_amd64.whl (285.3 kB view details)

Uploaded CPython 3.13Windows x86-64

lipilekhika-1.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (405.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (401.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.7-cp313-cp313-macosx_11_0_arm64.whl (379.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lipilekhika-1.0.7-cp313-cp313-macosx_10_12_x86_64.whl (389.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lipilekhika-1.0.7-cp312-cp312-win_arm64.whl (275.4 kB view details)

Uploaded CPython 3.12Windows ARM64

lipilekhika-1.0.7-cp312-cp312-win_amd64.whl (285.7 kB view details)

Uploaded CPython 3.12Windows x86-64

lipilekhika-1.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (406.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (401.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.7-cp312-cp312-macosx_11_0_arm64.whl (379.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lipilekhika-1.0.7-cp312-cp312-macosx_10_12_x86_64.whl (389.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lipilekhika-1.0.7-cp311-cp311-win_arm64.whl (277.1 kB view details)

Uploaded CPython 3.11Windows ARM64

lipilekhika-1.0.7-cp311-cp311-win_amd64.whl (287.1 kB view details)

Uploaded CPython 3.11Windows x86-64

lipilekhika-1.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (405.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (402.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.7-cp311-cp311-macosx_11_0_arm64.whl (379.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lipilekhika-1.0.7-cp311-cp311-macosx_10_12_x86_64.whl (389.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

lipilekhika-1.0.7-cp310-cp310-win_arm64.whl (277.2 kB view details)

Uploaded CPython 3.10Windows ARM64

lipilekhika-1.0.7-cp310-cp310-win_amd64.whl (287.0 kB view details)

Uploaded CPython 3.10Windows x86-64

lipilekhika-1.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (405.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (402.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.7-cp310-cp310-macosx_11_0_arm64.whl (379.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lipilekhika-1.0.7-cp310-cp310-macosx_10_12_x86_64.whl (389.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for lipilekhika-1.0.7.tar.gz
Algorithm Hash digest
SHA256 b6b7cfee8755ad12e39af24c2e407034b2f5478f6e68f1097b503e0d8da60b65
MD5 8bde548afb587bb393a160f95feb4e20
BLAKE2b-256 b6babc26e08e2c707efc36212071f5b163a3a90f679222323af67fceefe9ad8c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.7-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 274.9 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lipilekhika-1.0.7-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 677463bfe9ccaad19baf778a76a77537616c0119ee233827ff43e1d76baf90a6
MD5 1521948e1d408f901024906cfcc38d93
BLAKE2b-256 7dee3d2651c700395073b21f1d6ae3a548164e0996f7d8c9093f8fa4e1f75663

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for lipilekhika-1.0.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 334377eadce20aaae5cec156538af1705104ea3e81b8c82d7ffa7bd631b3edfa
MD5 7b59bcf6c8d746b98ded88d3d99c79c1
BLAKE2b-256 eb767d825c1c4365953ea07bc6d3c3f27bc7790c837e8c9bf829a2aa7945f616

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24363129ffabfed1443051bf0bb9b3147fee3e84b34038a62579a7f056bd3426
MD5 47dc27e1f6f3ca0c85e731541fee5e49
BLAKE2b-256 421946de67ce982fe8133f6def8191d12896d94b16642ef62c70ebaa092bc867

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c8db28c31c40e8b3f11a81ba7d42aca1b26670c773355fdf879eadbbeaadeff
MD5 cb78256570a36f4420546243f0b20af9
BLAKE2b-256 b0f1610a5c0455f2e6dc6d42b48aa418d86b92adef7dd92fb98e7f106964b289

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2feaaed5a36d8644a55413ab4b6ca9caa8faba64e3dc3ef6173853523d1d3e24
MD5 6460a843fb8c3d8e5a8f4daa8d1e5f7d
BLAKE2b-256 5510e9b5d5e39e356c21eae8bf4a45b1a278dfbfa689ccc708c7027e5458e5ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bfd19ae06e0952aba826da57a104fbcf9b78e32510de03de83c778a0376ce4a5
MD5 b1b48b1546e9f77385e7b395c2d1ec2c
BLAKE2b-256 a354c96299d27536aff85299f0b0291cadd68893a3727f3e5bb345e4a528a6d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 e4f115440c73fc1e624d30858d945fcadee49e9621833e1d1945f8ec5b6ad05e
MD5 02b06eb69ba3ec9d0961ed4e04f39884
BLAKE2b-256 496dafa6213fe291017b35a49d9820544c7c861fca1096890d3c719020ba1874

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-1.0.7-cp314-cp314-android_24_arm64_v8a.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lipilekhika-1.0.7-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: lipilekhika-1.0.7-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 275.1 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lipilekhika-1.0.7-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3c95804584bcf74bfe356edb0bbc9e9e81f856c1edc321a35254325b148e1087
MD5 efee10af5e9ea43355b224123750f7e9
BLAKE2b-256 49fb06cefe28bdbc2cbadb2b99480bef64cc0594cc5dc75c906a22fcbc0eacf8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for lipilekhika-1.0.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4a4ffb8da8a62fbefba5bd275365742ace69c582ad98024a800cc7ad05a261b0
MD5 47169506f87943a0aa18813dad91c076
BLAKE2b-256 f5c45d94de2b77dd1c34c30a375a87fc76e78e4d35119286f6c89876038711b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 191fb71b1bcf6626ebf079166d2ea095861a690474b232e36e956b1324e401a2
MD5 15fea504583f1590d108320449f64cfd
BLAKE2b-256 a05e78af18803891bbdff7bd45b41bf8b8747942cf077f266292a41914f12f48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 970da4f407d74631fd13a2f56e8990cc3b5f7bdb6747d03cbaf2b7e4de28e3ea
MD5 6601b2753b31a2173fc0a8ae4507a739
BLAKE2b-256 c07e969fe52b9bd6a4750c6bae61754524056314651d22c1a50a3d4354485707

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12d6de7ee3c69b1d5597132ffed3bb8a18feda86f6d6e417d761066613da6a5f
MD5 d031dca2fec77b6866ef9e4ab94ed3ee
BLAKE2b-256 6667410cd142af7cd25251c029d0db94f50016640e40e9d03322f2c966958418

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f5b921e8d98414102073857c6d68b0dc0f5b79ff5a4f3a6e50844f4824ac3895
MD5 8c857e42cadc6203c1d7cedbad4abd64
BLAKE2b-256 d07d276fbb51f643c51b12d3d204fb70b53d419fd51055bdd8b091f9658cee83

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.7-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 275.4 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lipilekhika-1.0.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 1f9e14c91ae62a081e447e48ef849586f52b18a5d41f3958bddb63084f7e023c
MD5 401ebf15e3d5642c95bd5e55b883a5cf
BLAKE2b-256 95ada975e7c34d865c176ea33581abacee15430e8156a821acdc8236f329ad24

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for lipilekhika-1.0.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c47909ee590bfb5ad059a14207ede8fe26a6a66f2ceffe4c0bf100b783458dd5
MD5 c82d1f3b5d2f609b9573a6fe793d471f
BLAKE2b-256 cfa5fa884a9e17f7fcfaac07156f1769abd291a0172c19bb30cdd056066f1ed6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7bbd200b7ac378d57ebeac5a92444eb0380346da6486d4f47a92189b27ca012
MD5 664a349d670e86a95b6cbf48d11e583d
BLAKE2b-256 d65dcb3603e87c160417c35c15ab64efd3a6c0fcbc020dcc00b0be8860c9eb96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 472daa9bc71d6b3efd51869dfa705897ea3e1305fd49c476899f142d21c74a63
MD5 62d1bed4a360ead8701629aef834a0d6
BLAKE2b-256 6ce6bd1ced35da0ef421bc5ec625f9b64355b40b647146b3532f41399340d2dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff2f52efd2cdeaac1f3cff9bf2e82ad756ec16e67a50dc1c1d5e06172d322387
MD5 0b3fb6955f643246e7a8279ed41828ec
BLAKE2b-256 b8f6e42a73731c68fa9029cd6b13ac9fc3489102105275dd728fc5453456647a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 894c96d297b7bbd2cb76692d00630504cc996257b3840cd1e66736f9658a3ff3
MD5 6be0d0507df3a486af3e887fe91e1094
BLAKE2b-256 a3671d53106988ea996ddc958bc6afc5f9fb43d93ade860127fa7030258f8cce

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.7-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 277.1 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lipilekhika-1.0.7-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ec929647be0b54c84659d1a419f94cef0a129f2e79ab2fb55f902ecad4351426
MD5 2c745cc62fd068f7056cf43aaaf0eac7
BLAKE2b-256 04cc5f5d2b6f06fd15c20f6a3d914da2f2d492c85f384e9d3132b608edce17cb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for lipilekhika-1.0.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2206334e061c23b2ce052b187aae3c03f69ac631dd682c8f0d451a444d37df13
MD5 95a568eedf1a7ca50cc969dba222e46c
BLAKE2b-256 1014fb8465a25a9cefd00c75160369912e1aaa84d56f7fa5fc05bd461c9e703b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d8888905d652c123db42887fe7922f454489ecacc78c575c78e9561a91a6483
MD5 6a9512905ff4c399379e40ecc4f2321a
BLAKE2b-256 c9f51639dc679268fb2bd2c05ec4ab87215f42a58020962ae3a87ac5e7ed4f1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5047fec4e71d71ed6f06ee176ada388127c1f92e27d1d6434af67b5e601ea47f
MD5 85003ed31c6e623c2e6cc73b83b16beb
BLAKE2b-256 4e8bda684dbfa228c61618c552edd3c30b92c040efe433d495d12384ba4ed2bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a1c8ad4da09c6cc1c205c83aa1dba743798c759a4b9ec3273ff4cd50757ee81
MD5 e07332483fbdd412941b4acb2207b618
BLAKE2b-256 8cb18c83908a3000c65cc7e88d385be729dd1e84fd5a4e5c02beae6f973712a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 68dc177fb547a17d02a573d9cea617a2ac6e853083b8aa112c6daa59d980ce88
MD5 ff5f7ddf0709a2993322618bfa472362
BLAKE2b-256 9a5332842d370dfb50dbb444088630f6723db92ee779cb5219e90813c154fc79

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.7-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 277.2 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lipilekhika-1.0.7-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 515d897ad7aa1ba449d393f00f224842438d91c4e3b945cde7cb19ef184c72ac
MD5 29c9f87328e86fffe4a65f8ff5ffd97d
BLAKE2b-256 175d61a8b5425f1782d8821b7055b3894ebaac0dd85c3b54fed52231eb46c8ce

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for lipilekhika-1.0.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 61a73f86f0736e5d2fbedb851e976ff7cc5df4d35b2c090854ef7b7a79ad46f8
MD5 4c8c9bc68995121fc829fbae847dd0bf
BLAKE2b-256 0b10dd185691214204768c8c08ba72e02f4de7321547e4aadf08b5b06db57a64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b1c7eb82bf6d0fce170ff627287434413701cb2c6ba3cfab08d6515209e1a82
MD5 1dfc4d9807ef8cb7c421ebabcb5dfc76
BLAKE2b-256 170d82a84f4335465d337d07eacaa2cf680cfe86e1e69999ab1b225632dc5dff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a2cb9eb23015958ff18bdc9870f6374c09d67faebe8a2cc71d7d66a78d78105
MD5 d9e9bb940d341873485912d2472a0add
BLAKE2b-256 6cbac5ae747aa6d226aa9790bea789900c1c3cb04d42d701a2cee258fda11ed2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7975b588bd643109b2d0bcb673311f78aa06ea95add138350f69bcf06447abce
MD5 ecbfe3ee45a3eebd06cfc31c6ed070a2
BLAKE2b-256 530f94f622300a47a4737e6d16b771b18a37b415e579f172d0d80cc5a29497d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca859acdf4cffb21c6a1cadab83dc1f1ad5f6cc35308a5a8100c79fc73c79073
MD5 dcd4cd9bb4c60b2b5b1cabcdda6be288
BLAKE2b-256 2342eaebb9ca9c9321947fc58653e946d545eb316a68afd765e78ca1e55fb9ea

See more details on using hashes here.

Provenance

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