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.0.tar.gz (121.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

lipilekhika-1.0.0-cp314-cp314-win_arm64.whl (269.7 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

lipilekhika-1.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (439.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.0-cp314-cp314-macosx_11_0_arm64.whl (394.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

lipilekhika-1.0.0-cp313-cp313-win_amd64.whl (280.3 kB view details)

Uploaded CPython 3.13Windows x86-64

lipilekhika-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (439.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (395.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

lipilekhika-1.0.0-cp312-cp312-win_amd64.whl (280.6 kB view details)

Uploaded CPython 3.12Windows x86-64

lipilekhika-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (440.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (431.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

lipilekhika-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (442.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (433.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (397.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

lipilekhika-1.0.0-cp310-cp310-win_arm64.whl (271.6 kB view details)

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

lipilekhika-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (442.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lipilekhika-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (434.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lipilekhika-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (397.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lipilekhika-1.0.0-cp310-cp310-macosx_10_12_x86_64.whl (402.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for lipilekhika-1.0.0.tar.gz
Algorithm Hash digest
SHA256 24d1f12f43cfb121bb2d4fe3c3861a328efe783dc06f5924b892b59fb7a83cca
MD5 b1b733cc916712685cf137166327a83f
BLAKE2b-256 f6c0a5dd787c53bf57d84e371d867938de6862d3c115a6f319dee51af197ecb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 111db5ea7e5e0acfd2c376a74ff49ef1fc27340b1ff333fbb3eebc5d0d1d80b4
MD5 94c3fe05eaa5d69393a2c2e37e2b07be
BLAKE2b-256 fab2426687552bcfd6ddccb471b998187675a2933528f66fa21b8fcece2c6245

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for lipilekhika-1.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9a01262eb4a271c25b8f9bf128fd65da056cd18a11c68ab4739ce0e212439266
MD5 279b54bfcab7c98ac38f111c76e24564
BLAKE2b-256 e22899e7ff3109a2236305b788b23733d268424dcc6f6008f04cba52b2e95765

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb9a670e3c0306017d6725f58573ac491346952642590a7c661ec9337c6b3bde
MD5 e5bd8b67f50ec11b303011f1c228a946
BLAKE2b-256 1b83e1860bafd6f1de75e008d04128b570e15ebfe69c535b1c8421005ca67fae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2cdaa092e3ab73dd159b8d919decb460cd2fd67beb19ac780446dc34851f71b
MD5 2bcb83391c18031624bede49bf8ec379
BLAKE2b-256 a4831d9ed560cd59e85f2df40097b88b99329795fccfa6408b2dba56a29907b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29f8cbc505354ce0a67af282ae2da38d0522df99622746a100a68442ea4acf29
MD5 0a540749b64059850b5bd4159e50285a
BLAKE2b-256 47cd63123dce5994dbf61acbf5c5b25a39d4fbdea85b23cbe861b351035eef3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8db67bdcba0ce8a12c24dcc49e0973e9b9906585f6816553f5ea64294f5bc769
MD5 815131b9b28fc0a309dca1909170bb85
BLAKE2b-256 c4160b77be80ca898c0430af213b9e5d0d576eda62ea92fd9f1a94c840c791b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 48bc82f32671c1435063040dc4ac764fa904455b78216d8684037a1b4e8dc724
MD5 03aed1ef57f8bbee66ff0a0ea14c93a2
BLAKE2b-256 cd1bf2940181f42e1bd450e391ba110559388dfb6dd1ba428cb8627a808c1ff1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 280.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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0b4a9b9dfce0455bb2aa7231d7725face34db4b546ddd3ae12bfc4ad045f623c
MD5 9d299587fcf1776c6b2bdc88e72d2fad
BLAKE2b-256 1b4cd2f432dc8a8a9c3d419392e55c30e6a83d4e80fa35bc26e638b8fdbee0a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c228b620383d766c855a5bcd764382c61d50c91c38d679b66cb219ae0b26423
MD5 6cd2996f9930d044c09718748bf460d6
BLAKE2b-256 132c96a1173a8dce3fdc231e264941e044e669f330326bf0e616f4895a76a4bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 defdf88f2b46256e16d35c0cb7a186bfa9f6fe2ceda05efbdfa7213d6c85411b
MD5 2b0583b0145e1cb54a703fa95199c0de
BLAKE2b-256 9c3602be7b46a163841926262c60bc6cb41c84081799c5578557ac2f61e8b3e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69e571886e0dc3ee0297d1542ca6e758c4dafb2c144deb95cd018ba46481531a
MD5 fb955fecb631683a42283672100109d5
BLAKE2b-256 694910331ad3113a60fc08f305c51ba29154cb0c0baea3463a647985186183c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f8f61169373e8a5496c72406d83e72cf99550ddea4e9dda2e7cec5c15fe7004f
MD5 dcc6a0b3eb41740d62e372166aaa6081
BLAKE2b-256 0a73273858c338165fc93d351afb527948124e6c326fccd4304a263de8dad167

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e9ad0fd737878062d1b6dab2e91831fc3c335f04d8f52baca68cf7e72bac1a21
MD5 294c73fb765a8443f2411c9bbbeadec8
BLAKE2b-256 6835db47beae317fea6a2ed20e7b9128754458e1337a746667a70a59550dd227

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lipilekhika-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 280.6 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ac1576581c6ff3437aaeb6fe96cb37755e8ea9de3c6ba9d356307dad3b347b7b
MD5 6f2876db25bbd86fe653b918b16b9e7a
BLAKE2b-256 2e5a69de0a04b03bcd17794f3818af4aacd741552d0eff42c812b8b6ef236616

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1252aa36f161dec71345cb14e18601fe4f44f79a8cd21bd37c95f0bdd531033e
MD5 4e2716ffb4b7e61b4c435aba98e1982b
BLAKE2b-256 d752df5ce6941225dce5ac9198bde8c5ca6f910dec7afd3e4b34bc4baf324d8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ddbe37140f9e41041334ef1e1cc3cde601f14e46306a4aaad9528e54b422274
MD5 f1e9c36ba7e70d7effeafb20a8bb52e7
BLAKE2b-256 57cf5724daa94d4a18f4e73ffbb28081765b681d4dd1b7321bdb5460f742da05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78bca83f0ff7719b28afa64eefc3144a6baabd3ed7a2cf737537ddb9036a7f16
MD5 5f1b789b5aa84cc0e2be0954c67b271b
BLAKE2b-256 f26bb65ac1808422d845178380e922a9a368bdd0782546f8b3318999db97b55d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 90f76e8fe4b54221a722836561634fea1098767ae4ae7ab630263c9240e926d1
MD5 43dfad74854d72e9adf78dafb788f671
BLAKE2b-256 d4c3b4447f4061e8036674a7e7f0b0543c0b4962fff851b3fc5e266a66ee21b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 473198e454bf72857f998abf5b72b14f6960bfd229947d854f0fd3c6d3798b30
MD5 eba3537d674aeca5302af2f8990792b9
BLAKE2b-256 c5aa809fe96d6349e18c35b62cf89f5902008aa60768a4f0d5096d53555d1fb3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for lipilekhika-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 271aac6104ca727b88215fed7ebc73ea50870fcc79e5c8c370666833b6ce34d5
MD5 03c55610fe6eee48d19abac036b41c5c
BLAKE2b-256 bca7ebe80f951c64328f6edf8df15507254c1b5dcfddc1de96e73bda1982d5f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b4accf8acaef4ad7b883786c57707b5c8973620569334ad8dadc1a16729d466
MD5 32cf6bee3ca5bc6a56e8c91d2addd7d8
BLAKE2b-256 b9d968f7161d3d800c1eed490c0fcfcbe3e6ad5a321f343018e20c313dbc8925

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e096f3dd26a7dfb6aa9d00260d0bbfd426999e82f303795acf386b3fa597f199
MD5 1c7dbf9131a9cfa133691dce6c934d36
BLAKE2b-256 9e9ef0aaeeac2aebb849e0840ad233f8f4f609081a1e716721e451d89a7cb9bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 840c38c1ce478e0408c67d2a1bfceb6e05a08646d6afafa39f46c11ecf56c11b
MD5 a88caebbfce402e8c5ffce5370666395
BLAKE2b-256 e54d7b4e97d395359ebcb0f19f5d202778b1b7576c2c668884a6501547653756

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c2e9a34a6344cd1d4342df4554b76f04887a42a487f73036d048ad1b66a72ae3
MD5 ed50b9b1eb95e7480df46295f3b68d6e
BLAKE2b-256 700e8f40f2d3b0095c1b447a1103b35003c74dc941e17a9805b8e76c140c670b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f4bf5c5a49fe1673cf6c292b94d1569d971df1077eafb5748eb3e1b0635c1b5c
MD5 4f0fc13a77a8fdf17ed881d23faef3e1
BLAKE2b-256 ad0ae068b6939a99b9087f5c87e9ffd5689c3c6158d836308935a7f1358e0291

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for lipilekhika-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8dd809c3486256f22fae4aa6b209156e9cc81c0f75a75745d1d5517bd98fa746
MD5 1b861bcc06763afb507f81de9a65269a
BLAKE2b-256 30d99e7d3633eea46c2c9a1e727f9d6f5d9ee9f8e962f9c0b55e103d276a6617

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0358e83f3ab29bfe0f8f593beb3629a90f8c46ef36b239e35f3df4243a5b8d6e
MD5 4db9d0917b7214d799956294e473ac59
BLAKE2b-256 3551918dc943033cabc7143b380d6cd3f042c302b4819cb5989fcba8f77a93ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7481e847bb5565274977391fd294c031cca4de16b9082f79de8d525ccf7283ae
MD5 53a71ce3bc1c15f60b6cfe5586ecc8e6
BLAKE2b-256 12653dc0ca72d928d9bb9ba0da0b04f2dbfe90905b2895c80aba2fc42c35f477

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14f33c4380f15662f758c4e3a0cbf9eaa06d7fd82304210da83631b8575f0d8c
MD5 295152030a3c30fc6a80c33ce6d3055b
BLAKE2b-256 08b01c6677fa799680a2fdede45b1988595ab5edad104dd6bac0829a7d1f2316

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-1.0.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f335171e716ff3f27b02e7f2172d017a5e3ccfa403fc85608e9a5ed239f1fae7
MD5 49aa2c803a109a896100fa08cb8c8c6a
BLAKE2b-256 1d69537ed86bec9fd62732650590c8ba29cb48db213a6aef8b7aa541e221119d

See more details on using hashes here.

Provenance

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