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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

lipilekhika-0.0.1b1-cp313-cp313-win_amd64.whl (278.8 kB view details)

Uploaded CPython 3.13Windows x86-64

lipilekhika-0.0.1b1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (438.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lipilekhika-0.0.1b1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (429.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lipilekhika-0.0.1b1-cp313-cp313-macosx_11_0_arm64.whl (393.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lipilekhika-0.0.1b1-cp313-cp313-macosx_10_12_x86_64.whl (399.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lipilekhika-0.0.1b1-cp312-cp312-win_amd64.whl (279.1 kB view details)

Uploaded CPython 3.12Windows x86-64

lipilekhika-0.0.1b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (438.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lipilekhika-0.0.1b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (429.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lipilekhika-0.0.1b1-cp312-cp312-macosx_11_0_arm64.whl (394.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lipilekhika-0.0.1b1-cp312-cp312-macosx_10_12_x86_64.whl (399.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lipilekhika-0.0.1b1-cp311-cp311-win_amd64.whl (280.5 kB view details)

Uploaded CPython 3.11Windows x86-64

lipilekhika-0.0.1b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (441.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lipilekhika-0.0.1b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lipilekhika-0.0.1b1-cp311-cp311-macosx_11_0_arm64.whl (395.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lipilekhika-0.0.1b1-cp311-cp311-macosx_10_12_x86_64.whl (400.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

lipilekhika-0.0.1b1-cp310-cp310-win_amd64.whl (280.4 kB view details)

Uploaded CPython 3.10Windows x86-64

lipilekhika-0.0.1b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (441.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lipilekhika-0.0.1b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lipilekhika-0.0.1b1-cp310-cp310-macosx_11_0_arm64.whl (395.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lipilekhika-0.0.1b1-cp310-cp310-macosx_10_12_x86_64.whl (400.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b5a3d55694a86f39319041bd8e36827ecc5c90b6ad642ac51d6a7d812771a567
MD5 21a81897ab6011bac39cd4286126af4b
BLAKE2b-256 7d7e235a8faa40251c5272f6d1945accdcb272b9a6fdc2fb71c4bf7f0289e5f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f27359e64490ba0f1c8470cc9c1b37e0bbd559080315f210c4bb63993fc1b663
MD5 035871cf2d5765d8a54c71221e2689ac
BLAKE2b-256 f5dbc2d42293c979888b5027ebee73a6a0aa3209f1a9b6f874c4d945db3d53de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a154e330f26b8cbf0a248397deeaaf994b0fee5b741e1434abdc691a6ee45faf
MD5 0b0857500699d2656b592087afd7f3d8
BLAKE2b-256 2195fe0997bcf4a5f51e9bc6749ea380ea3ce861c024ba6bcadbc851af7f23e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a6b822382a4331348e04cf48e9d50593fbdf0a322e7e1b6d538ff00904714ad
MD5 8c39ef6e4589814e8dd2bcaa715bc75a
BLAKE2b-256 94c6d2927bd6ca89f06d07785b441c080ee0cf89d00a5dc10121f9644152cc35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b26e34569a8305715087ac3876fb77b8310271496b2880a9fb7c02f69bff995d
MD5 980498d86c39ab60ce192fcac0e08aa5
BLAKE2b-256 b0394d0e7c634b7cc73933602050e26fc7650f7da57f06b659700b0895f5ba59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 aaaeaad25eceb3ec55ec5936fb3eae4d01d7ba4cac69bb21395bc9b45b6ce813
MD5 157209aa7952da77c91d3f1f5a037dad
BLAKE2b-256 294ce175675dd3ae3e27261a84e2da82aac6c9af8431b115784979b851221856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f543b003602f67bb81e535da83aa0c7f3048affd0419889f92ad11f42cf740c
MD5 2c83eb30b8ee681d05da31a6ca51ea8c
BLAKE2b-256 a4587c60c8dd57a4fa5bf82e692d3cdd02e9ca48149ff4a0c2102a5c21611533

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7649abae36cd8b53acbb986ce35c8867f6cfcb5146e0dddc75d43bc32a56991c
MD5 31a3dae4c95b940a4060ce08707d204d
BLAKE2b-256 1c2fb964b957eeaaf185f6dd3a24143790597b426c61189f3de3a23504dd0da2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 201736b1d3920424969b23c62996255d52c928ce1e493a53c4f794cc9c2792bc
MD5 78954b8b3a78865c3dc28d4ffa04bdd9
BLAKE2b-256 502a0603f56afa0af45323321d41b025158fe2abc11841cb6f03fbfb744d9525

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e6332074c412dd9fd54fd76f47bec945aa80573f4c78df98ae14ebd8699f5160
MD5 a724f7adab65ef83aa6cd0460e992377
BLAKE2b-256 d4fde637db35abd620e95213864de3357b1dd771b4f65b03662de5afe57b3cb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 177b19965a55d9e4b5d3a6bba15fa0227af65157c11fbd7739d61435471ccf86
MD5 7924db3bc408d63b77d66396e64a813b
BLAKE2b-256 5ddbc0cb2eeb5f04ba028627c577652d1fedb96f610b99cb178b9891df1e8596

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f606d92fb452946892d0fb8385465694b38c1974e30adbbf4bb8367c66876d57
MD5 10442fd84fd162900c17d66d185e743f
BLAKE2b-256 80f892015b704862b164eccb7d9b2c0fc59f07a4362f59da08bd298853f7b072

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 010ea319e288c09ce45161b45f3c8cd8d7417cf7ca47d63e840e21ea3dcb810b
MD5 c0ad976c98d3460a3e0179ae29fe490c
BLAKE2b-256 9ff48cd60e9d2dc552b1707e1baaff7f8f78149b7e515103c657312751746151

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 089dc85a4a9e4bbd4aaa3de7d7adcdac6c562cd87de350157c428756e815ddb9
MD5 80d49d20395fab176a18fb21178301ea
BLAKE2b-256 ef505e4bb71e806135722bd718b9225f1b85bad6a162e32610332e2db8f7aa5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9222fd2960e3096bffc14ac778ade681621befe5e7cb360e8687b28e40b0bd1
MD5 bfe9bf3af273487ed00b0b1545e46faf
BLAKE2b-256 ef685523cc6354bc15b53b0f33599f88e4a6834845c389584357fd5d617806a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7730d2ec70aa37f57a6631591afdaf0364382de6582577af7fc0f4806d77af56
MD5 78a0dd41574bb1aac716f326f55defd9
BLAKE2b-256 98ede2b09f44d9ab59ffc73efa4a968b613b1016c6565fdb9fa40fcf273f9fb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78fc56f053bbeb7547fb278257468ebfd03235206bd5abe2f925be0b90012cf6
MD5 2e03ce34b53022f5ccf3edc7bea5db4a
BLAKE2b-256 7e07b03384bdedeeda5902730023f7e21d02159c2f74da1de9d69531512e87df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55bbc559dd6b61cbf9661ec8a35d023d10f2a8163f7f6fd8ab1036f4d1fe4a71
MD5 c3286b2c49a12349f5ad12a0a4a9dd6b
BLAKE2b-256 a60b10fca1a579e824f1150cd53a5f5c6dd2e7384ed43360ba4dbd74fb3207f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f07897fc70623d230c9db9ad4c81ed252bbeaf425e4b833cca43c40582f8c8e4
MD5 da5074c701c6fe0287865f46871d553e
BLAKE2b-256 9f24f0de4fbd81120064d807e77f2c450f5d738dd81c126f61ad65e6b7df00c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lipilekhika-0.0.1b1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 be248d7d6c03cbb8ccd34c52715e4e028b6f67b680143add7b3edadf92f4c1db
MD5 0a443532de72ab02f8afa1077acd943d
BLAKE2b-256 5631fbf5ac8d24abdf8ae157866b8f9a9c6742ed9343fe82865d0c36aeaec2b5

See more details on using hashes here.

Provenance

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