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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

lipilekhika-0.0.1b6-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.1b6-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.1b6-cp314-cp314-macosx_11_0_arm64.whl (393.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lipilekhika-0.0.1b6-cp314-cp314-macosx_10_12_x86_64.whl (398.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

lipilekhika-0.0.1b6-cp313-cp313-win_arm64.whl (268.8 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

lipilekhika-0.0.1b6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (439.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lipilekhika-0.0.1b6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (430.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lipilekhika-0.0.1b6-cp313-cp313-macosx_11_0_arm64.whl (394.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lipilekhika-0.0.1b6-cp313-cp313-macosx_10_12_x86_64.whl (399.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lipilekhika-0.0.1b6-cp312-cp312-win_arm64.whl (269.0 kB view details)

Uploaded CPython 3.12Windows ARM64

lipilekhika-0.0.1b6-cp312-cp312-win_amd64.whl (279.9 kB view details)

Uploaded CPython 3.12Windows x86-64

lipilekhika-0.0.1b6-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.1b6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (430.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lipilekhika-0.0.1b6-cp312-cp312-macosx_11_0_arm64.whl (395.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lipilekhika-0.0.1b6-cp312-cp312-macosx_10_12_x86_64.whl (400.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lipilekhika-0.0.1b6-cp311-cp311-win_arm64.whl (271.0 kB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

lipilekhika-0.0.1b6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (442.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lipilekhika-0.0.1b6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lipilekhika-0.0.1b6-cp311-cp311-macosx_11_0_arm64.whl (396.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lipilekhika-0.0.1b6-cp311-cp311-macosx_10_12_x86_64.whl (401.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

lipilekhika-0.0.1b6-cp310-cp310-win_arm64.whl (270.9 kB view details)

Uploaded CPython 3.10Windows ARM64

lipilekhika-0.0.1b6-cp310-cp310-win_amd64.whl (281.2 kB view details)

Uploaded CPython 3.10Windows x86-64

lipilekhika-0.0.1b6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (442.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lipilekhika-0.0.1b6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (433.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lipilekhika-0.0.1b6-cp310-cp310-macosx_11_0_arm64.whl (396.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lipilekhika-0.0.1b6-cp310-cp310-macosx_10_12_x86_64.whl (401.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: lipilekhika-0.0.1b6.tar.gz
  • Upload date:
  • Size: 121.4 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.1b6.tar.gz
Algorithm Hash digest
SHA256 685b01e0178323a4afe052f5f5cf6f1aaf91445858eb4d16d8ae6646dbdac06b
MD5 b84d817dc277fece39345b07038d673c
BLAKE2b-256 b17dfcfb61d3a1f520fecd641dcdb9115e1d22fd0c31381f09dc2f2d99197318

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 3e7013ca1c38328b22d5dc134bceb612ef0d95793fb448c295aeda7e0ee4ffd0
MD5 3ae1ccb3aff160a1253171ed5c4aa1e3
BLAKE2b-256 7c53eb7aed684bb28065310e4de93d7bc1b4a91b9d6a6434170ce63a7e136cec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a68baa729178e1136569a2098601ceb28daedf9325c85a8485fbea462e707a66
MD5 86f799edff083e0461585888a1c6b447
BLAKE2b-256 30f4679126141f9903f0161d0c9e290ebdff3f8a9f4036a3a401d00f99ca77e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 267a4d5b20fe9dd4a51177f2046b661c91582818204589146a5ab6114320fa02
MD5 e4b30a637617d2215f1e72bb23322ece
BLAKE2b-256 4bc2141089df0a541f5bbf6f79d707815173498107530a6edbf3978f5a27c4fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1b93d188fd8ac29cc37e9ef8e83f9c966780c91aa24a363096ca233a6db2291
MD5 c98ac7542a149c21071227ac38aa83e7
BLAKE2b-256 a310d994b20170f66de10a1895385dc811e0f6d4539ce3327a149893a91a205c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4ed25e9c52bdcf5774bc45fa1b3614e66c44e814016b959c731535e8c9abf6e
MD5 8f0e1157b548faa96f7654747cf121b5
BLAKE2b-256 8112a08ee81095756b85e061c46a9e61420fc46725092f4b73b679ef4b06ce09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 191c6efd4339f69c64378ec39cfebf6554e4a4f0f4ded011d44b5243f2924f11
MD5 4aa7c798dd54ba5a9532a14426944b4a
BLAKE2b-256 3d979ceaabf6e3099c9780712df9b3d4cded9ea09e3a426dda50811392da99c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 819a4e7de44ce9aacbc0052093089dd2698ef840e31f49d1ffad54fd99564cc7
MD5 2b740a41b835ef3c9cbcf40ba0f617c3
BLAKE2b-256 57fe4a7df57251a6afce39cc707a0814a8fde6968fbe0cd1407cc7902a796f04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2e1e1ce61db017dddf14dc38914a5a9d011742382cbe4f2608599e2486ee619a
MD5 50f1ce64efe8677a703c8407d7a239ca
BLAKE2b-256 173b8648768761ffe79ddaab4efb7fb19fc6ed237cf423bbb18c2d08e5565f93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9ea4cb80b6ca03f92c82ca19c6078919a96130598ed00576aee315460deb785
MD5 388b50c0b73e0abb4a28e0e9239c0d2a
BLAKE2b-256 8dd186fdddb796b9f028e334d80dbecd963c4f7651c1743e2c2336ee4dcd586f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b239a3d8717acef160a0e581c41a6581e594adf0002d69675615deea17c0111b
MD5 d888d3d88ab536caf45e2c93964b698a
BLAKE2b-256 7a8b90b95b24ccc56e0c3ec8cd9c6b5738ceacb092a23536bdded615873cf6b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67428d2e22ecdcc2b8459c67bfa0dc9c6b11a6a122d19fe0e781186f4adb78ad
MD5 686012f125a961b9bbe2aef82907bcd6
BLAKE2b-256 81e46828e5449d0d2a4af5e34b5b95dfaa5a151ed9dd71c143728c3ea3402199

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 39417055eebe77879da2da2e064a1d0e32b3a64f714411e2db6df76affffb22a
MD5 c8e908b258c0d30290c3a850e912b176
BLAKE2b-256 71bff5d31d0941f62e1233b3adb9fe6e88300e89adf1ac64c8cbfcafa887401b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c5fb731c556368a7901a8021ec17517c5fec2eef7f271db9827cf739d218c9e4
MD5 bb76bc0326b04b5852361bf57064e29a
BLAKE2b-256 053b1df050ae76363ed6959d0b3da2655a71e0f4fcb8a239765aedfe69e7d77e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 88a08d12e9531641306fc34ed3b39d1167df6607e7d4c3a049a99dfc1050d6bd
MD5 510a7ea870c7258bfc416355e147d24c
BLAKE2b-256 0a314d56c49fd89052e94c442492ef9e0c65c2ebb7418eb8f1f29486e98b2467

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6d913232a3b5e56534da3d1bb6bf93e448e9cb360ff54bf35f192bec1072c46
MD5 2ae70d152122cf9727a4b4cbe76df20d
BLAKE2b-256 81f76f41dfea518749192526f0d758e9b4664099d691672c851c304614b4e28b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87547d98372b47076b29cbc483221bd0f03eae0ebf782dd85a8b8c1af1acf587
MD5 e7706b2a6eef870e9ff563396517f4c8
BLAKE2b-256 85796fa5f350d686ed7aff63c54ebf261b68b92388ded83addbfd2e4b26cb93a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17da37da93a69744299ecb7dec544ce7c5ec618e8d06bf5597fdfdb71bdb96d0
MD5 18f89f5348cf1a8fc060d0ad924c4ef9
BLAKE2b-256 d5b509da52f672279233e3baffa339e5b413d5298ebff71c09b78fe78c1f303c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 08e3c67b37ece5d78651e96f4f1d62539618c73d126987a950a1f3e082caa60b
MD5 b65f0f788f3de23171b2440d78c58444
BLAKE2b-256 d9683141dd7db8acd013afbd82c30869c862aff72b5c905bd09dfd5d830e9c3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 665e46eb715e543b9e5f351a70c7badf46632e8eb1e61192b41287413ec0d66e
MD5 f0b6aef35ad7f467a9b2b2c2b7b380ec
BLAKE2b-256 623099bcde135af8c4c96d3ae27237a109bccc97ce9a8573d84aa5b91199b762

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b03bd467b050bcc0ab4a1b7ac2eb4ed7a972fe002361cecbcd03f5500711039f
MD5 0d02c43a31f7b0a13cb00e0b1bcf091d
BLAKE2b-256 e381bb3ce559fac78b09421d941ed95368a5519c23c55af6390f0898de89a818

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a554ffb25820570e83c72c88d0fe2bb0d384a46d89d9883d51f9ac1df00d631a
MD5 6a3044f8005d541a3bc24800a4bd9888
BLAKE2b-256 d1b67cd44e042295cda5954fc4ade5e92db71bca617919313ff12ba03ee95cab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c326bd8df3c24f7aced3b9754ad14cf54ff017ee8abbf91bb433f08fa7f2b8cf
MD5 d2d5bc3dc45347e58f81e40740f81113
BLAKE2b-256 5fda0f4ec810656da4e306841625919ffdf003265bc74f596db0c9bdab095c08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 079c8712a58e880d79a6d2a4571db5973a00d8a52d69298e651d3ce85bc32681
MD5 8b3c13de25cec99f95890f3b2d22d865
BLAKE2b-256 2049160554eb48d9665e3e504b741e42c5803fccaebb26f2a5e2f4a305ce9907

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 60d8a8be1076b0383a8f438e9aee08ee00f000aa7aaf44e30273fc87f194ae00
MD5 772bc56b42053fa35aaae99f0d0d7362
BLAKE2b-256 d5cc32e131ed4697ab6adeafedba5530ce361abc7de253bf6ecabe7bb545ba4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 cfb9dba79f7c60f1283b4130e1a49f63fdb738d273eb755179d916bf6c2f2a87
MD5 bbd46d229ada1704c9af07ca3ed4b47a
BLAKE2b-256 4453c1a00083f04741267412efd7da0b26c188ccc245cc4e72cc536da2c955ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b35a0a0d39ec60fab060c813515078261903064b70733c573a2551933f53eae4
MD5 0d96b4187e7e2767bad53072f3ba60d5
BLAKE2b-256 22ee3cf62c98c2be3b6ef88edc3d562c120fc00a0f0e1aadd2f2f5e5fa136574

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 303fd8f7e165602475e6899892c7857577d71db3adebcb94bb93c4ce7766b856
MD5 712bc367fb0a5ce0039ebf4857ac5ed6
BLAKE2b-256 88c14f4929ef99acee24058bf408268c06236faa313da2dfc8cf23d227fa267a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66577f9459fd1ae9569eb5553573cca1ea8397a111e034a056ab3226cd168be7
MD5 de6818d1942a81f6823cfc9ca0988e11
BLAKE2b-256 e3d994871c08ddad3446c0279fc081814edc8f653351b9625859616e27e057f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4642e2e40a92b2fb1c682d733f55a2f6c31e5d5baa42ff9daf0fa9af1174546
MD5 efad598272e0a331b47da1981c90f262
BLAKE2b-256 c03baa1fcc2f042d72a0f30820f748466f62cbc49cfa05e65e659cfe891efaab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b356364f9d565e101b610f56c26435efa3043fbe2031c96c6c7b97ab5c02261c
MD5 4a3351250340e033cf82a4d7367e11be
BLAKE2b-256 06108585e5ce2152a6a837ce54c5d8cb86b69282fe1487f5188e3fb867070ca8

See more details on using hashes here.

Provenance

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