Skip to main content

rime for python, attached to prompt-toolkit keybindings for some prompt-toolkit applications such as ptpython

Project description

pyrime

readthedocs pre-commit.ci status github/workflow codecov

github/downloads github/downloads/latest github/issues github/issues-closed github/issues-pr github/issues-pr-closed github/discussions github/milestones github/forks github/stars github/watchers github/contributors github/commit-activity github/last-commit github/release-date

github/license github/languages github/languages/top github/directory-file-count github/code-size github/repo-size github/v

pypi/status pypi/v pypi/downloads pypi/format pypi/implementation pypi/pyversions

aur/votes aur/popularity aur/maintainer aur/last-modified aur/version

screenshot

rime for python, attached to prompt-toolkit keybindings for some prompt-toolkit applications such as ptpython.

Dependence

# Ubuntu
sudo apt-get -y install librime-dev librime1 pkg-config
sudo apt-mark auto librime-dev pkg-config
# ArchLinux
sudo pacman -S --noconfirm librime pkg-config
# Android Termux
apt-get -y install librime pkg-config
# Nix
# use nix-shell to create a virtual environment then build
# homebrew
brew tap tonyfettes/homebrew-rime
brew install librime pkg-config
# Windows msys2
pacboy -S --noconfirm pkg-config librime gcc

Configure

~/.config/ptpython/config.py:

from ptpython.repl import PythonRepl
from prompt_toolkit.filters import EmacsInsertMode, ViInsertMode
from prompt_toolkit.key_binding.key_processor import KeyPressEvent
from pyrime.prompt_toolkit.rime import Rime


def configure(repl: PythonRepl) -> None:
    rime = Rime(repl)

    @repl.add_key_binding("c-^", filter=ViInsertMode())
    @repl.add_key_binding("c-^", filter=EmacsInsertMode())
    @repl.add_key_binding("c-^", filter=rime.mode())
    def _(event: KeyPressEvent) -> None:
        rime.toggle()

If you defined some key bindings which will disturb rime, try:

    @repl.add_key_binding("c-h", filter=rime.filter(EmacsInsertMode()))
    def _(event: KeyPressEvent) -> None:
        rime.toggle()

If you want to exit rime in ViNavigationMode(), try:

    @repl.add_key_binding("escape", filter=EmacsInsertMode())
    def _(event: KeyPressEvent) -> None:
        """.

        :param event:
        :type event: KeyPressEvent
        :rtype: None
        """
        event.app.editing_mode = EditingMode.VI
        event.app.vi_state.input_mode = InputMode.NAVIGATION
        rime.conditional_disable()

    # and a, I, A, ...
    @repl.add_key_binding("i", filter=ViNavigationMode())
    def _(event: KeyPressEvent) -> None:
        """.

        :param event:
        :type event: KeyPressEvent
        :rtype: None
        """
        event.app.editing_mode = EditingMode.EMACS
        event.app.vi_state.input_mode = InputMode.INSERT
        rime.conditional_enable()

It will remember rime status and enable it when reenter ViInsertMode() or EmacsInsertMode().

Some utility functions are defined in this project. Refer my ptpython config to know more.

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

pyrime-0.0.9.tar.gz (43.8 kB view details)

Uploaded Source

Built Distributions

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

pyrime-0.0.9-pp311-pypy311_pp73-macosx_14_0_arm64.whl (1.2 MB view details)

Uploaded PyPymacOS 14.0+ ARM64

pyrime-0.0.9-pp310-pypy310_pp73-macosx_14_0_arm64.whl (1.2 MB view details)

Uploaded PyPymacOS 14.0+ ARM64

pyrime-0.0.9-cp313-cp313-win_amd64.whl (95.3 kB view details)

Uploaded CPython 3.13Windows x86-64

pyrime-0.0.9-cp313-cp313-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyrime-0.0.9-cp313-cp313-musllinux_1_2_s390x.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

pyrime-0.0.9-cp313-cp313-musllinux_1_2_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

pyrime-0.0.9-cp313-cp313-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyrime-0.0.9-cp313-cp313-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyrime-0.0.9-cp313-cp313-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyrime-0.0.9-cp313-cp313-manylinux_2_17_x86_64.whl (67.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyrime-0.0.9-cp313-cp313-macosx_14_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

pyrime-0.0.9-cp312-cp312-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyrime-0.0.9-cp312-cp312-musllinux_1_2_s390x.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

pyrime-0.0.9-cp312-cp312-musllinux_1_2_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

pyrime-0.0.9-cp312-cp312-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyrime-0.0.9-cp312-cp312-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyrime-0.0.9-cp312-cp312-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyrime-0.0.9-cp312-cp312-macosx_14_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

pyrime-0.0.9-cp311-cp311-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyrime-0.0.9-cp311-cp311-musllinux_1_2_s390x.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

pyrime-0.0.9-cp311-cp311-musllinux_1_2_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

pyrime-0.0.9-cp311-cp311-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyrime-0.0.9-cp311-cp311-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyrime-0.0.9-cp311-cp311-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyrime-0.0.9-cp311-cp311-macosx_14_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

pyrime-0.0.9-cp310-cp310-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyrime-0.0.9-cp310-cp310-musllinux_1_2_s390x.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

pyrime-0.0.9-cp310-cp310-musllinux_1_2_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

pyrime-0.0.9-cp310-cp310-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyrime-0.0.9-cp310-cp310-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pyrime-0.0.9-cp310-cp310-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyrime-0.0.9-cp310-cp310-macosx_14_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

Details for the file pyrime-0.0.9.tar.gz.

File metadata

  • Download URL: pyrime-0.0.9.tar.gz
  • Upload date:
  • Size: 43.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyrime-0.0.9.tar.gz
Algorithm Hash digest
SHA256 4e8a7f548b8aa169f41f2a5877b8a1092f961704ec299e9b89991401645e6fe1
MD5 86120504adea517f82e537f635faaf6f
BLAKE2b-256 c752d00363e56c0ede6710ac74572547d351f69362630022afcb9306fda4ff41

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-pp311-pypy311_pp73-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-pp311-pypy311_pp73-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a9ba891b023bc87b93af49e31448a99e5c255ff56f4650b824d0b239a77f7811
MD5 7e90b42b13fc9ea7826d8629a02aeeaf
BLAKE2b-256 2cb962278dc70397ee28515734400ebb56c3c3c8e1ca488c64e008e2bbf51d8c

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-pp310-pypy310_pp73-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-pp310-pypy310_pp73-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c00f3147cb7d0dfea8120fa3a6257f80e620a251458b0559f5e36ae5cc98792d
MD5 d984049f05ee2a437e430f99c5d59229
BLAKE2b-256 700810bfc974fce374f2236a797b482b546e48fee3d4f92a16fa2eb6a86eb221

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyrime-0.0.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 95.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyrime-0.0.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 89aae0a01e250d9d492ee21f6b48ebaea1c42d50775e731523cd48b4429af312
MD5 57f04956b4998ce6121b3649c4f86c3b
BLAKE2b-256 fe57191cdd9557f427ef8a4614b279217c83198f88cebd4d16f88004d170d7c6

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87987cd980e0c113a6b1f304159a6fbcea786e5c115224e9e8028cf5ba7342f3
MD5 b294034711074d4fec2a9789a9d4c5a9
BLAKE2b-256 a1efa094bb55befded6debe7002695155f752eba45d2f7838b960aafdaf2ea7e

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a767ecb2ac703fb8b3f379436b27ca1bb53ac624250e721ab852aeaa39177374
MD5 3be9e92187c60f77da1f786d0967d363
BLAKE2b-256 bf072e499beb8e1d4a0c4a21630dd7e3feb60623d7e2e08400dc03dac1d66b76

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e022d421a6298044a62429210f780ba7275859fc4a75be6f6d6c427b9cfe7512
MD5 207a91c08de8e0f1b09f4ba38c6f6d6f
BLAKE2b-256 5a1e27bb9bc400ab26fdc13ed4c45c6719d55e2136ef824dfb804bb166f612d2

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cd3f7c58a40bf80353f459f4b339cf82fd51017fcdf6c865b46767215ae11b72
MD5 50dd999911eff043abd8e12fdfbbb24b
BLAKE2b-256 16cfc3bb82069fc87048c175e64d21560b817261b591d98a901dcdb1ceb16b79

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4e56c70acf06c780ee559326ea6eff498f0d139fb6bf48a2411e920097478118
MD5 dfadf047cef88eed6be88705b7df3f58
BLAKE2b-256 b3aba3231313b69968404085efa0bccdce150eb4174f5e5d2f48fed2cc2e3d92

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78e330ab1bc6aff5155008c723f7490f4e9092c9a6de0933832a99916b927914
MD5 fb73c8fe2c0b4bf70492b649486c8b80
BLAKE2b-256 8096fd9ef015ab1fa5f6dae20abb57d6eda2e87d21928a9cf2233120f3486cdc

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp313-cp313-manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp313-cp313-manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 19ffdb74015dd3dd2ed6e96a2fc6e444c1fa8811d17a59f6a489fc3091037dfa
MD5 ff5cfd5958852e92986858b11df70813
BLAKE2b-256 4f88fdc11ff9ce2eec2303727a355f3889ccad767af2ee36edecf350a4e25e33

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a088e0c75faf17e957a691cef53841ac5061c301907d4db587e665c7197c950c
MD5 924ebdea3bd096e139d0e1941548f1bf
BLAKE2b-256 9fbd138bc7ef192f6c82003d476f240d5db4ab9b3c359878ad316e03dc7b7c40

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 577513b9b586a4a514adb13d3a03599629b5a04fa1d4cbb5da735dfc9d88feea
MD5 9257bdc77c4e7adf0c1dcd0a1fb1fdd0
BLAKE2b-256 ebe97f4c9d1582078204f3c0a3b6c32a2878af6194a80bce6637e166665958ee

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8121580e640748b2cf106d8dff36e7df0bdc641b4ee8e2ee1d2d493e333ca6bf
MD5 9641efa10e7d0eb248e08dfec7d3e507
BLAKE2b-256 f9764c45fb101dc4e1050e4d28a72c9993a566365d02a3dbc821b6b1d503fda5

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4af7cd1ce0be24c00e30a877f5477c39cfd0df8117ee082f236430d6b0ac3068
MD5 87f5c05f5009b8f72220077c943cd71c
BLAKE2b-256 d69d2d52bc721cb112a17b31b019dc863f38ada12d26f46edc3d19f676aa391a

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f44a77dee1dd3283762e7d27d2dc77137b44effaef98ff4ffdbdc571fbd7723a
MD5 5df8b54b8057eea57e26ec66dd493a61
BLAKE2b-256 e7443f1022368a5b47533e3c2c10e26c44dbc50b7cbc0eb24118a4a24d88cecb

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa520190151948d9e5a666ffaa6df560edba30f6855c44caf022ef24a7c4427e
MD5 f8fa8996a72cbaa75d227820ef950006
BLAKE2b-256 9f6b39900f8a68b61921ce32d45086f21de1a218c16fd7af91cb65a9164aa2ee

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e32990b6d7b33e699c247741dc5e4543df4c68ac4591680e731de9161c086e97
MD5 8209c261f6651c240a8c9234a1ad355c
BLAKE2b-256 0139abf447c9d47c5cafe5304f8b95778b17fb3e8b1cd1ad49ad40623b4788ea

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2fc833c34671143b7d10caf65212a40354566a51cf99e25e5394e838bf484ffe
MD5 9bd162e8853ff3d05d23b79d135aab7a
BLAKE2b-256 dd8a1c70a647404c5b5c0ce44f60de929463dfb61dabab03459ce96465c111ad

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 648f7124295de38ee61e97b90b0f66072512a1868743d680c8cac174e857ba05
MD5 8c4799e692712d910b6d23e0f01764d8
BLAKE2b-256 868cc445e48fe57808f2eb2f7e1794041ed1fb5361a0e1138bdcde3f30a79515

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6063c1ce57992a1f046b1cb3fcfae6e38054b75e977efa340101b1a539fcad8f
MD5 904dc520bc7d8ff73d1bd08e26c4dc8b
BLAKE2b-256 668a73147ffcd91e5988e7a1808eb7b3b17c25b51304e86c0b2fa2c3f99ce424

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5d484b6ee014e84e857f3f3f1441b84a9e76bf7e8ccdf36f62f4c4c079fca710
MD5 d9ad4540defc403d539844ef25de24c5
BLAKE2b-256 ea08d01621b4f1e510cbb7b65de8bbdff9655a439f57554e4964cb7af74b4e16

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 beef7a30b6b8f75688d681894a4c8bd925387936ec696bc1eda8acc4e0e0b129
MD5 ff2a5eae5941185f5aa033ef5cc58a7a
BLAKE2b-256 cf557e7ed92a2f5a8b7956bc5c22feb79a51cc89abb394e74692ee848abbc0d2

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ffdd32d7e7dd0e7316af23e9a485de91c2172a8ba3bd0a0c58b2285d3cabb9d
MD5 13f122c2d8c6be5ba601db3cb1d28c59
BLAKE2b-256 975c34e86ce8e0b2bc1c8efa519622833dcaa39f68e82b4dbb2bfd4dd69feab9

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79a3140a2e3bf1b387f0d7d504b15e6cbbc3affba6e1bbe921ee9a5cd5ae7ecc
MD5 d4f5009ab3bd8db694f04735d861c6b5
BLAKE2b-256 89214ef0620613c633ce995be7e28d2afb8e9dd8d50640d09f5495cfa6fc90f6

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 4ee38733e5cfae1445cdfd1cd05b3967716ec60c25452f8cbabf72b107c8afab
MD5 9c6e426ba61839fe2a1f94e3dac1fd1c
BLAKE2b-256 9b9c319b3ac006dd0eddb967ce9195bd4e497ad6078502057460ed2caacba3b3

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5905e9d76966fdc7e81d6a645c128c5c19257be60418a1b6dc17b23aa3a035ca
MD5 d6bc5b7b9a1a70e801140372ac609e31
BLAKE2b-256 56b0733a3db7123e54ec4a0e2f0c4c564d2fb05cea00d2c256c9c8aa8d21fbb3

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a9497317735f0854e88ca14ce9c76f19678d7d2da0ce7819607cddebc7ee3362
MD5 8695d12b5756d597e67712ea4119f889
BLAKE2b-256 e0e914f66a224d2a7377b26911d184b3b40e88290b7f54063dc13c2f803e15f4

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a99d739375abf0c27f7a3c301f9cf908ca68cf69f970d492661ec00330a802b6
MD5 bf99f577f9c505b2845bfae27f9100ae
BLAKE2b-256 ec64cc7b4b204f54532e3bd8885ffd3e842c821e9ba0052d2e35af88771a048d

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 20d8353232ea96f4b83a791ab77d77423a1f9189a310fd22a9afcf95223c454a
MD5 7973a8c13dbfa0ad9defc2d83e345545
BLAKE2b-256 17672efc78b02b27f2fae96afa150027b587a06ee4b48a50358b9e6fa5bb7235

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 081b2510a02f61dff3c8ac35a29b8d8f0eae19712505821c111469d4cb61a824
MD5 16ca052025a30998eed12f760bac4f58
BLAKE2b-256 7ee87f06bb050dd4b3b75da8e4bb3a8713dab4e6d4ca66f865dbb2c09938611b

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b73545b61a7467275c83e65e093fb4e4cdbb4a4605f5a5815de94e481a8199d
MD5 d5e26f06beae5abcbc4fd64ee884c112
BLAKE2b-256 255a38b1e29de1771f238c20bcb664510ee6e1de969d017e6ff6edf880418d15

See more details on using hashes here.

File details

Details for the file pyrime-0.0.9-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyrime-0.0.9-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0d50c13367591d316a2e5727718315eae8416b85502bf441bd59d8df243c12b0
MD5 2083f9b35c99049250a56498ae72272e
BLAKE2b-256 bdd6a21310e2912802909d0d88c74ccd7bd3daeebfc234b4356d5f6ba84d1d64

See more details on using hashes here.

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