Skip to main content

Lipi Lekhika is a library for transliterating text from one script to another.

Project description

Lipi Lekhika — Python

A powerful, fast transliteration library for Indian Brahmic scripts with real-time typing support

PyPI version PyPI downloads Tests License: MIT

📖 Documentation • 🌐 Website • 📝 Changelog

✨ Features

  • 🔄 Bidirectional Transliteration — Convert between 15+ Indian Brahmic scripts
  • 🦀 Rust-Powered — Uses compiled Rust functions for blazing-fast operations
  • 🛡️ Full Type Safety — Type hints for all functions and proper IDE support
  • Real-time Typing — Low-latency typing engine for interactive applications
  • 🎯 Highly Customizable — Fine-tune transliteration with custom options
  • 🪶 Lightweight — Minimal dependencies, fast installation

📥 Installation

pip install lipilekhika

Requirements: Python 3.10+

🚀 Quick Start

Basic Transliteration

from lipilekhika import transliterate

# Transliterate from Normal script to Devanagari
result = transliterate('na jAyatE mriyatE vA', 'Normal', 'Devanagari')
print(result)  # न जायते म्रियते वा

With Custom Options

from lipilekhika import transliterate

result = transliterate(
    'गङ्गा',
    'Devanagari',
    'Gujarati',
    {'brahmic_to_brahmic:replace_pancham_varga_varna_with_anusvAra': True}
)
print(result)  # ગંગા (instead of ગઙ્ગા)

📖 See all Custom Transliteration Options

📚 Core API

Functions

transliterate(text, from_script, to_script, options=None) — Transliterate text between scripts

from lipilekhika import transliterate

result = transliterate('namaste', 'Normal', 'Devanagari')
# Returns: नमस्ते

Parameters:

  • text: str — Text to transliterate
  • from_script: ScriptLangType — Source script/language
  • to_script: ScriptLangType — Target script/language
  • options: dict[str, bool] | None — Custom transliteration options

Returns: str


preload_script_data(name) — Preload script data to avoid initial loading delay

from lipilekhika import preload_script_data

preload_script_data('Telugu')

get_all_options(from_script, to_script) — Get available custom options for a script pair

from lipilekhika import get_all_options

options = get_all_options('Normal', 'Devanagari')
# Returns: list of available option keys

Constants

from lipilekhika import SCRIPT_LIST, LANG_LIST, ALL_SCRIPT_LANG_LIST

print(SCRIPT_LIST)  # ['Devanagari', 'Bengali', 'Telugu', ...]
print(LANG_LIST)    # ['Sanskrit', 'Hindi', 'Marathi', ...]
Export Description
SCRIPT_LIST List of all supported script names
LANG_LIST List of all supported language names mapped to scripts
ALL_SCRIPT_LANG_LIST Combined list of all scripts and languages

⌨️ Real-time Typing

Enable real-time transliteration as users type character by character.

from lipilekhika.typing import create_typing_context

ctx = create_typing_context('Telugu')

# Process each character
for char in "namaste":
    diff = ctx.take_key_input(char)
    # Apply the diff to your text buffer:
    # - Remove diff.to_delete_chars_count characters
    # - Add diff.diff_add_text

📖 Python GuideTyping Reference

API

create_typing_context(script, options=None) — Create a typing context

from lipilekhika.typing import create_typing_context, TypingContextOptions

options = TypingContextOptions(
    auto_context_clear_time_ms=4500,
    use_native_numerals=True,
    include_inherent_vowel=False
)

ctx = create_typing_context('Devanagari', options)

Returns: TypingContext with:

  • take_key_input(char: str) -> TypingDiff — Process character input and return diff
  • clear_context() — Clear internal state
  • update_use_native_numerals(value: bool) — Update numeral preference
  • update_include_inherent_vowel(value: bool) — Update inherent vowel inclusion

Additional Utilities

from lipilekhika.typing import get_script_typing_data_map

# Get detailed typing mappings for a script
typing_map = get_script_typing_data_map('Telugu')
# Useful for building typing helper UIs

📖 Resources

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lipilekhika-0.0.1b4.tar.gz (121.3 kB view details)

Uploaded Source

Built Distributions

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

lipilekhika-0.0.1b4-cp314-cp314-win_amd64.whl (279.7 kB view details)

Uploaded CPython 3.14Windows x86-64

lipilekhika-0.0.1b4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (438.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

lipilekhika-0.0.1b4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (430.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

lipilekhika-0.0.1b4-cp314-cp314-macosx_11_0_arm64.whl (393.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lipilekhika-0.0.1b4-cp314-cp314-macosx_10_12_x86_64.whl (399.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

lipilekhika-0.0.1b4-cp313-cp313-win_amd64.whl (279.6 kB view details)

Uploaded CPython 3.13Windows x86-64

lipilekhika-0.0.1b4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (439.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lipilekhika-0.0.1b4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (430.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lipilekhika-0.0.1b4-cp313-cp313-macosx_11_0_arm64.whl (394.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lipilekhika-0.0.1b4-cp313-cp313-macosx_10_12_x86_64.whl (399.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lipilekhika-0.0.1b4-cp312-cp312-win_amd64.whl (279.8 kB view details)

Uploaded CPython 3.12Windows x86-64

lipilekhika-0.0.1b4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (439.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lipilekhika-0.0.1b4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (430.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lipilekhika-0.0.1b4-cp312-cp312-macosx_11_0_arm64.whl (395.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lipilekhika-0.0.1b4-cp312-cp312-macosx_10_12_x86_64.whl (400.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lipilekhika-0.0.1b4-cp311-cp311-win_amd64.whl (281.3 kB view details)

Uploaded CPython 3.11Windows x86-64

lipilekhika-0.0.1b4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (441.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lipilekhika-0.0.1b4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lipilekhika-0.0.1b4-cp311-cp311-macosx_11_0_arm64.whl (396.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lipilekhika-0.0.1b4-cp311-cp311-macosx_10_12_x86_64.whl (401.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

lipilekhika-0.0.1b4-cp310-cp310-win_amd64.whl (281.1 kB view details)

Uploaded CPython 3.10Windows x86-64

lipilekhika-0.0.1b4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (441.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lipilekhika-0.0.1b4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (433.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lipilekhika-0.0.1b4-cp310-cp310-macosx_11_0_arm64.whl (396.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lipilekhika-0.0.1b4-cp310-cp310-macosx_10_12_x86_64.whl (401.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file lipilekhika-0.0.1b4.tar.gz.

File metadata

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

File hashes

Hashes for lipilekhika-0.0.1b4.tar.gz
Algorithm Hash digest
SHA256 492f32b9d41ef951a79453c1e796278fe1260fac892dedf58f155d550498e8c9
MD5 bac0a4cce4a2e785af275216509684ec
BLAKE2b-256 6ca11307c0a8d0514346abd36e72d51b35314e91ee9536fc16970848be957bce

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4.tar.gz:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 06c5939b8f90d94b754abc2070ba6c97802222572f54570d6d592aa70ff89300
MD5 933f67253a2619f153c5baaaad6408f7
BLAKE2b-256 f456d77c423b30e6350f1a0f93116e5f34b4399319674624901f20a430e5db17

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp314-cp314-win_amd64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85be0ba45dd2364abe06850c4c61e1d06735025ccbc67744b57e4a7b8d4e165a
MD5 5c621d6270b20420ee47bcfeda1f7129
BLAKE2b-256 258426346b34724b3b39e73bcde03bf61c3890efe968d4724588aa9720616d9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9561c003c0335459f3a23912d310dacbfdb18d8ec1a5ef832455a333377b6144
MD5 d3ca82a468b8e60091f5bd4bf82c30ef
BLAKE2b-256 19b192c67dd720afe265fe12a5fcebac441344ad6cb52c839c088c51afaf4e1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9448dc0416f784698091c30349b52973e9c534cb43ad7c809af7e92ff7fc752f
MD5 5df130cf82335483d366740a1694fe9b
BLAKE2b-256 199b9e377e5b6a7c0f214013aec12f5ed482406658eb61e41aa399558a039085

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b15a1f022c2c69e07d3ec23f342c42729cc05c29815e36d0150d898ddc2c2a6c
MD5 88f766bf2bd255826f48290cdc215e03
BLAKE2b-256 72dbb926c23eacd8a4f27b6bebbfb0d410f423e1ff9fca34b8aafc8866965331

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2a8993f9d8adf0cf713d8fff6fb2baf6bfd5293f45edf5981198403aaf5e1e96
MD5 a2ebefd82972b3a1b8d5dd22deeb1ff3
BLAKE2b-256 96785be92cf4c2f04210ba1fe6f02060ad1ac22edf451e4c61f9eaee7ed843a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp313-cp313-win_amd64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b68c32d904c3222148217840cb4571f2aba85c9568c194bb5304b649de4c2de1
MD5 17e1e29c8321c5be67a3923ee266b2c6
BLAKE2b-256 f57994f97dbbde40011ddd33a7b99b10d4f5b0103e50fb632a8552056462d48b

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0cd286471d907f53ba64c4e33d841547eea1df73305222e0b3e952c07fbd66a0
MD5 1504b0453846dc6477bb163b10a0bec7
BLAKE2b-256 f24fb8c9b62c42f527672352112011b3b3218d63555babb95850a0694f0c21be

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef8a06134c451a4835838ade355253a9f63c59e7ec5cdc5bb0d6ee09d6a48fdb
MD5 473845d1629ff8fd7d874c6c8bcdcadd
BLAKE2b-256 11d2323fe9fab7ee9f08db7d7e8621d66b72792c99e9d08699888b9ea27a3c2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea73ed4a0afa4cc57468017aa87a770bef5bd281f824f47e3d0fb93c92559bee
MD5 aa6cd49d08a214057af84b7a646c92df
BLAKE2b-256 478c58310e21972c8d384e318822aa1847dc4028c207e5a589e3771332d0eb88

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 650449d59cfce2821afc1670a0f4181a36fb6c076c15876549e78d747ace66cd
MD5 e6cf1cd8dce9f9d85f1e9d2280748dca
BLAKE2b-256 c3f9a6f78ac8d9ad0403f173d4596d0a21c400f4c740db52ed8319107a5e851e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp312-cp312-win_amd64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b06c2bf2e16fc72a6327ce3b70832caf0b87fbfc07a26b70fa23a96940fee69c
MD5 e92edfc7b3be3d091106fc93511ddea2
BLAKE2b-256 8edcded24a9375b1cb48613f0bbcbfaae48092362378dafc2cadc526de085959

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a1e1cf4636172d3ed934d151c858b372179e0e29fd0901f47b3e5f43b8c0ee90
MD5 b57de63f25dd23d8b18e373db6fa1a43
BLAKE2b-256 76c4f601d79e09dd3531cad64ba846ed0b4d56eb52895e0ed046812d1d6543e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e26af8c3eccd9ec22317e797de77234c8bda9fb232dc4809ef9dbe7ecdc78a9
MD5 95f75bf644c9e17fcf0cc6c24339287b
BLAKE2b-256 3070a5acafbdb9e0db0f968c8c4d7d13df8aa5ec8dac56550f45c88bd3ed04c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 47e4b039e6e20a63ffe8ee75584385e78a3aaca25f77dbc7c69e8711d58ba602
MD5 de9fbd64d3645eb36e17b63e37b9063b
BLAKE2b-256 fab8826825ebd14a38c2d2c7ffef5032161b16107c73e92b9c0c7777e5a86ece

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a809a4e49c15cea99b8cd487b079af737ee1c7d6cfc731c3932f56851dc32750
MD5 f209b494e394feac3aea7ffdf518b3c6
BLAKE2b-256 c59374e520f150aeda149c57d7fd389910893d03fd773e379fa1a3ff85dd22a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp311-cp311-win_amd64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45e778dd66ec84b535e608d5403a8436c8b9c76838792f5f479d6f35c592cb96
MD5 623da0e42d9fa4f2f8d0bb588874e241
BLAKE2b-256 99fba6db9dc1057a03a773052dc18881cab4cbcc9c6fe0ee80d0f085a24bf78f

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf8b4f1ebac58af18e92330b093a5e01130e2e8e0625c92990000bb662922500
MD5 a90174587675e8ced470037ad7999c26
BLAKE2b-256 8fcb5adbc41a514ae0f2490101ccd03e83dcd594f5ad78e5ecf1e9bbb92abe5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3be6514529aac3a9db9915a8b5d74e0c4ba6ac9090f4e0b507f9e11d50f34f06
MD5 4d60df21b90f3743b0f1c9be6eba6012
BLAKE2b-256 777036830e6f2a28202f7a969c6a3fb603a317277280aee7e16b14e247fc7591

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5d2ecfb31ab301e9a9e925d44203681beae361b819ce3392800094a78aa469ba
MD5 e4a94c803877223606a2f8338457a769
BLAKE2b-256 03e7425fac965422ab644845cab452ce12ebd3d0f466764018c9bc97516fb1a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a4c4bf14a67542f7d6d40bb2903452385bfb7b5ac0ea5f4caeff0c7fe1620680
MD5 9a0a8a9e1ade4b8b231efa6c167e22e3
BLAKE2b-256 04988f2d27dd64595bd09990f9dbdedc2c1006676ab6e7eec6090b9e792827f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp310-cp310-win_amd64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fd5de7ea2693ad957358ebaf34354be3d4d8eeed449ccff362eee05419d68bb
MD5 6d0ed693df58d0aea5980793420a5f73
BLAKE2b-256 596fbe85ebd2c8a41d8b6e233d884a801d0adb0972223c280dcf9f4b318662ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 384e1e1ca753ea0b12744edf18547f45579d31f16c4cab49aa2b11f239a6a597
MD5 693f85aa341b72d57a05cb3555417194
BLAKE2b-256 34a80259f20338afd7ee75e0ff937064377cbfe86dd238043791f326e011f795

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ced84c5c3318a90f2491b8ecfd05db019fbec3ee548b951af9287d624e21aadc
MD5 8852c78872f3d99299d8f66c32f613c5
BLAKE2b-256 bb0100a6ee3ba493ba62f02c553eb045a5ba297d177b09efc814c8ea3ac3fe5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lipilekhika-0.0.1b4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release_python.yml on shubhattin/lipilekhika

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

File details

Details for the file lipilekhika-0.0.1b4-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lipilekhika-0.0.1b4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0381f216ef57ddddba3c2f1c5d4ad904565f1132ed23ecccf6c314732e92e9f4
MD5 d2763adf26f6d2e0ac92d92946c963e8
BLAKE2b-256 f31cf1d10762a37e5ba9e62e27d8f4f524ae110947de9007c1762c91c53e266b

See more details on using hashes here.

Provenance

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