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.3.tar.gz (134.0 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.3-cp314-cp314-win_arm64.whl (291.5 kB view details)

Uploaded CPython 3.14Windows ARM64

lipilekhika-1.0.3-cp314-cp314-win_amd64.whl (299.3 kB view details)

Uploaded CPython 3.14Windows x86-64

lipilekhika-1.0.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (457.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (447.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.3-cp314-cp314-macosx_11_0_arm64.whl (415.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lipilekhika-1.0.3-cp314-cp314-macosx_10_12_x86_64.whl (421.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

lipilekhika-1.0.3-cp313-cp313-win_arm64.whl (291.4 kB view details)

Uploaded CPython 3.13Windows ARM64

lipilekhika-1.0.3-cp313-cp313-win_amd64.whl (299.4 kB view details)

Uploaded CPython 3.13Windows x86-64

lipilekhika-1.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (458.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.3-cp313-cp313-macosx_11_0_arm64.whl (415.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lipilekhika-1.0.3-cp313-cp313-macosx_10_12_x86_64.whl (421.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lipilekhika-1.0.3-cp312-cp312-win_arm64.whl (291.9 kB view details)

Uploaded CPython 3.12Windows ARM64

lipilekhika-1.0.3-cp312-cp312-win_amd64.whl (299.9 kB view details)

Uploaded CPython 3.12Windows x86-64

lipilekhika-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (458.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.3-cp312-cp312-macosx_11_0_arm64.whl (415.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lipilekhika-1.0.3-cp312-cp312-macosx_10_12_x86_64.whl (422.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lipilekhika-1.0.3-cp311-cp311-win_arm64.whl (294.3 kB view details)

Uploaded CPython 3.11Windows ARM64

lipilekhika-1.0.3-cp311-cp311-win_amd64.whl (301.6 kB view details)

Uploaded CPython 3.11Windows x86-64

lipilekhika-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (460.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (451.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.3-cp311-cp311-macosx_11_0_arm64.whl (416.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lipilekhika-1.0.3-cp311-cp311-macosx_10_12_x86_64.whl (423.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

lipilekhika-1.0.3-cp310-cp310-win_arm64.whl (293.7 kB view details)

Uploaded CPython 3.10Windows ARM64

lipilekhika-1.0.3-cp310-cp310-win_amd64.whl (301.4 kB view details)

Uploaded CPython 3.10Windows x86-64

lipilekhika-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (460.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (451.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.3-cp310-cp310-macosx_11_0_arm64.whl (417.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lipilekhika-1.0.3-cp310-cp310-macosx_10_12_x86_64.whl (423.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: lipilekhika-1.0.3.tar.gz
  • Upload date:
  • Size: 134.0 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.3.tar.gz
Algorithm Hash digest
SHA256 e4260c747855a3a8f8357325a723ba7ac15f82e59469dae23e885b3534c7614b
MD5 adca9c4598d1498c80b3b9a18969b633
BLAKE2b-256 57ba9624c2145b924640bca220502b33c8a146bd3c62d293d06438376a6c42f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9c9b0501a15983fae9e81c5b40644d18af4b18fa8ff87ee3335b502013ce2048
MD5 def01adf976c227c83d57b14bc178675
BLAKE2b-256 d4cbe171be49b3ad7882781024e1ee739e475dd8b78ff4c509c6e82551685a12

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 299.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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 70ce23d1c40a3e078c375e45d6ed954a89c3ffc88a6462be90e207ed597d2b82
MD5 e6c1ef4ab530f644d09b8e7de0ecee49
BLAKE2b-256 28d93c77a81345f48d20799b22b786f4ff8475ee16a07ac491007f368627d129

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09ce965f0343ba6612fc14a626f3e3463c31bacab1a0e60aa44cbba41b34ffdc
MD5 769df1819eb21deeb73c9fa89ebaaaad
BLAKE2b-256 a463e4954c2cf9bc10cd878ea93ebf7f77608f46c06eb84ec47e5ac814ea4eef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94ff964e13a00f6e814a6ffc208b0e263bb5b756a599dcc3d17b89e37c2e6e40
MD5 5b7b261c5a60c5c7f8ad975085e4bf04
BLAKE2b-256 7dd1ad123dd8faead261c6181bd50e336b0c50a7a271ed443d8c8de93f3bed42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c5657c522215583787add43a26a1639459d244dc7c8e534744779b5786d91b1
MD5 cdf7944077e7b042800e8b592a8fda6d
BLAKE2b-256 537be8c69a94c20e4fd564bea1c496ec55436d3ebde943080a66850b15ea871e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b3c691334a48a5221efceb0715135a9eb968c359f0f21517d0c86c00ecda3713
MD5 cb4fca00adcca1d0628e5fb790cfdbfb
BLAKE2b-256 6deb2018f4ec4dd875745bdfb8b19297dde3867db75a23e94ee37d0b4b9cfae2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8f1b9214c067a0116c6ebf7f147979e486deac8abbffdf789455ba684f5f2e47
MD5 7a7f92aa59e052643b27125593829d18
BLAKE2b-256 23ad9379ec68037b5fb4ef539ab9371eb015a6f616b5909598d32a01b1019d04

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 299.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-1.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 191c7d09c215b3686de69c30fa65b5c0e18dbbb832791c95b7e943291cf232da
MD5 3a8004d540a1c192e12a2d226c92b8c4
BLAKE2b-256 1ccbaf18af8745f0b1bf118955adbf2b10f6a2c8aa5ec414ce5d28cae3ef882c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0933ce3b108ad9c723bc93d6e11a8ca8f4f52534610d69cad03758cdf800de21
MD5 53573f8015223612f3e7a605a125a981
BLAKE2b-256 24946e93477a48db6e67e0a13eeb077d9be1f19a8579a9f96d42864360291573

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc1ff6dc5e5f76d8dfa21f97109df081fd14ebe701df527db879ac7616386277
MD5 7ddcf3fa882e3ba3664445af5e876111
BLAKE2b-256 0e088e9c905f7e19800837663b1cd2b2878faf2ccf34f23d66fd7353f3e3e7ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 131168dc768d2767dc99dd7bcbb2f0d379adb2f99b383741d76f5e4b0d77c629
MD5 761c067e9807f9ebf2e01a1102f68145
BLAKE2b-256 1f6f2b40fe35d77cc8919f8c3c5dcab8514fdf2bb5239a8071a379941c258422

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da459b3a86fc5b08a68cddf1dd65d903c1de216ea3dcb3a06c08ec248484a29e
MD5 520dc28265882ae5763efa3445f861e1
BLAKE2b-256 4012791d009e9258d0dacdfb71a2614a825dc2a9a726c2e1170c1abe9ff79fa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f9e7dcbd473227314563e7204eabc88546e7d45ad8c4750b091ffbc92642239a
MD5 f418838abebe38cdcaa7cdd68c1dd167
BLAKE2b-256 11ebc285ec2c310bb543888a209203a5c12d34a753d209a2212ad46880819a21

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 299.9 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dd435129e5bb935336ade7cea431c6997fd4badbeaa51a8522f3bd3d3954ef83
MD5 290b2b786e36f8fde7043bebe3946f8d
BLAKE2b-256 0d76d6800a35cb11c9cf43f67c10c84a3efadb43c4c27b9e8744cdce0f506340

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f5910662471c252d592e65eb4ceb98d867a6a6c82d3b8f5df8c7c50a2cdd575
MD5 7b7cfad159b58ac2c9714769ba6e6ddf
BLAKE2b-256 1d5b75008134ad2b583735978572b45c3186204964718c219d9b0da11517655f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07ad8daf301c0a0c84f8dd7824f2aaee9ac6fdf5a4724c628bc452dc0a4215ed
MD5 eb98e5b201b64366bcafa598c1679c80
BLAKE2b-256 79452228b8f793d069a631376c37e3b15edc854fb5e5cb93e85ac932c0dbb4d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14bf1d73243069cdeb7f0327c2d66a1c93f294bff5ad0af65ca29d3c113607b6
MD5 76e76e3d46bafdd2a2fc35a94865ca9d
BLAKE2b-256 b367876223d84f093369eff4e94b1a4fe9b5e835c233bac86847ff98b65cb35d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c55a729ac907118fe9e7e1517d998c51dd0fc952a73685a902d74263617ad52e
MD5 699521be8f76eec789de9689a43e9a7f
BLAKE2b-256 edbe6f50e96ec96471fb2972f8855a826544c58688092edd4c13d2bcbc0ceb5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 8b75d8a86bba6521c369016416e3710253b57eb0b52bee7c6b8fe165dddd7d72
MD5 5e0bdc165fff043d43fde75e64001062
BLAKE2b-256 e48d3ee338f4220c485a95e0ad39c49d41a753b06af287aa761db9fb31497f89

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 301.6 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6631de6fcc5738b5a0d2cfa422a90254f29f277ce993b803a8a1c5e956f74812
MD5 3419acea34ba718e808930b4d7916976
BLAKE2b-256 e19a8de8ae818987d8c4675f02befbd1dd361051fdc85bda0771d4fb8b8f3d3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4dee03cc919c2ab929c3d048977a83450ed5c515e1eff54d7d828ce9703391e7
MD5 3dfa2b1e804face789c2fc709718ceb0
BLAKE2b-256 523c1c945ce58769fd8f38b809dd1522bcd9fde7d27dcebe79c01daab03b4ad1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 344fb0eca6f267468e2039e8d845f7ad3bb6cbcdd1e28f476eb935756935b83d
MD5 879f153e66684caf7977149aaa008769
BLAKE2b-256 28fcb79f5a07e6ced1e2baa4923f85d9bebafd7a0b872dc6930c70525d9da6d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df7c0abd0afc711ff6b2406fb8cfd96e199ff43eb4f26685f187cfc73d2df321
MD5 cbc8a6ee08660d3ad4d13812d86df6bb
BLAKE2b-256 0ebfb5764a4ffc95afa2b6379c5ccd7a899ed316154a44200189d61b30d8a05e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 902615538f1614f93b6c29d967bbc1666dd9a8c59cb46dba22dc219862bffa97
MD5 dcd4a13bcc552c1e06a893861a772a1d
BLAKE2b-256 9b8a6328a6fdb3383d7198318bcf4b09c6d594fcc559e3621305d35be62a3ae1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 04a4d46e8799021e93d7fe758e1595e806ef12a8910fec5d27c1ca7ea6782cef
MD5 6a631d6ce537e496691b84e5aa2c454a
BLAKE2b-256 e5c9b3357f37fd2e18e423c206e4811215273f915318b367173e5ccc29234c1f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 301.4 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b03c386e17420b8f50f4aade94cf186be384bb897e89391637114755c4e32092
MD5 c758061be458f30355cbdc69cdb628ba
BLAKE2b-256 bc0525fee9ab2a826723b9bffd2ef0464159921ba26a73db75309a0e7e23dbd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 447f8bd7bff5df902f28d56a38239474bd836a7815dc84e29648b58639291f0a
MD5 e77b2dd84a3c40be0b119824e5f44bd5
BLAKE2b-256 722fe1d62d6bdb16298dcbfe8ffd34d33a52fa080f758b739159b8a74cf3d190

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6354409748519b6fd65111f39a1a467d0ef576efe3d4edcd1088dd3c715c5384
MD5 39627f0e4b4393a98adbc29b1790d350
BLAKE2b-256 7de6e08e35882e15b3c1e491565da4663b20e74849c1f23a75d0d04fd8c3b0bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f36878906ea164840e8a1ef04408c3b26a9de4a4153ec651049b3bd17359f554
MD5 b4c102bc3f474d8fc531f8c43debc4ea
BLAKE2b-256 2d67e8bc7e1c0b87440290aed4df647c851aa53bf6150a3a02d50b2cd30f12f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1fac9a55c2fbcb0b852faef64473464b5c40be0377f4d0fb86c874a8a295e89c
MD5 a1ced9b0d371d43a13617717275ed13c
BLAKE2b-256 d15451c5164136590dd8231f8024e5887c2243f19b9a1f5a7831c9a109a52e29

See more details on using hashes here.

Provenance

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