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.8.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.8-pp311-pypy311_pp73-macosx_14_0_arm64.whl (1.2 MB view details)

Uploaded PyPymacOS 14.0+ ARM64

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

Uploaded PyPymacOS 14.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

pyrime-0.0.8-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.8-cp313-cp313-musllinux_1_2_s390x.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

pyrime-0.0.8-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.8-cp312-cp312-musllinux_1_2_s390x.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyrime-0.0.8-cp312-cp312-manylinux_2_17_x86_64.whl (68.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

pyrime-0.0.8-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.8-cp311-cp311-musllinux_1_2_s390x.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 14.0+ ARM64

pyrime-0.0.8-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.8-cp310-cp310-musllinux_1_2_s390x.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyrime-0.0.8-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.8.tar.gz.

File metadata

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

File hashes

Hashes for pyrime-0.0.8.tar.gz
Algorithm Hash digest
SHA256 06abacfed072610201723868f1434214eb910ea3f319c3eb60ff168a4771fcb3
MD5 866067cec497784dfcc15b0d096813cb
BLAKE2b-256 46a5685173a7f8b56ab8a35af81f87dec24e40534d39810e1df2160c7dbfb744

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-pp311-pypy311_pp73-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e64a3ce9787747b96ce15b5c0d2c9b790cf63874d2a33d6928ca9fef6762a210
MD5 2e7f1dcc4494406e44fced19e62b0bc2
BLAKE2b-256 d2362b3fa397286c177a6ada5476fb0051276813e6bee91671e0f04594d7c977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-pp310-pypy310_pp73-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 fb01f4c8503c4de2cb7338ac67f8a1f1982abb0d7c76ad2616091f19e862446e
MD5 239a890ce88487bbdf96660e6cdfbac1
BLAKE2b-256 d8b0c2d55942454de16cd19a054baccf40e4df8edc8290d4552631959e83c12d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrime-0.0.8-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.13.3

File hashes

Hashes for pyrime-0.0.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b549fb6f804425b0f76ce516f1c5fdd4532beb060b72ed30b300c5dfc601e47e
MD5 1b1cb015e12c958c2b18176d84565503
BLAKE2b-256 4d017260d5c137302551f714fe92c7e8d372376e1bd21f0a3a06705ce4ac1fcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96b52d767378978d503940d307ea797453ab97cef201ab8730e2820d844b9623
MD5 cff9245734eb35c2bfe5df9f3c1fef68
BLAKE2b-256 ab3dd72d31de6e5657172dde8ca97af78a5ef97ad9b51dec8366a009ffb03641

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a35ec1a3b79bf263ca9f61d8433cdea31f48f6758230cfa2eb8a6c41f73e9b89
MD5 8c79d2fdc041ceeca582bb1af66d0f9a
BLAKE2b-256 4d44664d357588e5596101cca843367f882402be0a382a971dc92ed793ed6464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c49ee8151e39ec95b38de06d9e9e1ff0aa7f228390ed727ce144253e491617fa
MD5 dffac7a104bb422c61f3cdc3e7833fae
BLAKE2b-256 ed2cea31c405c72f79e16d423f6b857e655e90fd81e018c20e97deb24be1f21a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8566d01d84181451f093966e3598aba7acac31d158d92f467f8e21f3589734c1
MD5 c7d30a71d7d07d61bec291a2ce5c5df3
BLAKE2b-256 f146aea458f9ff5fbd8e551ee713837cf6cf1a5ef7b9beaff4c219c5e62c6273

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 056ed83b57803e0d9352c514de5c3da03d97255f2c31adfd19946fa69683a2a0
MD5 a59af0f4b95400a7a8e931f615f2c2d6
BLAKE2b-256 fdd70ffbc70e05180431d04f7246f12a29d8f1ef23889d97ac6fa8c7b29da83f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc7da4387d25b7a4899d8487e38a65f4967f786357fa48700be980ba6342ae1e
MD5 cb5a3fffa0690172e7b7fa47215fe014
BLAKE2b-256 180983b708d0e4325625afea33939b6be6334e1af69a8e18136c41c9e5ffeb69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e2e8cc71395e719b28008b35ac6f519ba1d0b4667f7918b3c25bed747196b2d0
MD5 bc16c7a8e97f91eb1377c950c5c03820
BLAKE2b-256 69403d1fbdb684815e28d9af04c2772bcaa6459bf515373286d43b358dbfddb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9dcac722e725439ccdd3d10521404ffcf79a436a307b6d94aa8eeb1a4ff47b4d
MD5 af9d5836a8fdcd0c054a405906f3364f
BLAKE2b-256 63d3c71b428e596181846cf508f108e65a7399993b3582f3134404fea708967a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5abf7bc1457d25ae1b54f37c7070edd32078f05f2ed35b387d547f3187e86ed4
MD5 50d0989be87b7a219a69501e9cfa7bff
BLAKE2b-256 f96b6fcd0a5729814e36c4b408e63c8c9fffb11cff4d191052d015f41ee31975

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9c76a7bda1524079e5bbe0b3f6c96e4bd9caa94ed5d0cbea1e7dd815f9779af1
MD5 4f050cdeb11f3f714b36b08d46c9d0e1
BLAKE2b-256 07188b027941b836f65880ca0199d512945bed821a5ecb29f062c288bff64974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1d5711faa70bbeba43ee737a0701a4a017bccc41aaf59997785b8397b7e94667
MD5 9c9dfdef9abc20a288e3aebbe2f65ee0
BLAKE2b-256 03d10d990b1bec7bcd776e79e2a910aa95a2de5312ea685c430641748fa28429

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0c6ef3e62a4f43b84f32d9d07a114cd9700639a8a2d62526ba4e0a216bef1f70
MD5 f3c66379d4911d3b91c2e298cc022b10
BLAKE2b-256 d392d29681688d30e6b54b40f78354658c632b48fe09454ef1676d716b0a4289

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd71f8b890f8a7203794b5678acba9f1980ceea3640609d9c2ffb09fe0ab9d8a
MD5 18b9ed51f480e87b179f28923c0cda6c
BLAKE2b-256 be59f841131d4a823d7305496d07c72d8bf7cdc2ecaadfa69ae94eb7a8571dd6

See more details on using hashes here.

File details

Details for the file pyrime-0.0.8-cp312-cp312-manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pyrime-0.0.8-cp312-cp312-manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a479fb97ee07f627f33c7b837bf71c7fbbe14a5909b4ba0f3a662f6062959bfa
MD5 bd1d13f525775563a690d60c4e6769e1
BLAKE2b-256 0fa9add7ce6203e86308b03c3238e62199555255bb75806c2fa00b91fcc946f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d34c6301eab46934ae15928db94fb894d423615ef2b49da81535ba3d664640d7
MD5 0c31cf3b2ad8669c9e6f7cbd3e41bdd9
BLAKE2b-256 55770f8827b69ebf9a26c83dc7d4654a206de6c5ed2a2a688b999f09b6c99f77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74536d1948d21325bb03fcc64f2cf4ec1feee8be71fc39e0342cf8829fe1a147
MD5 66ba90539e22f0f5973e8630b7a1e3eb
BLAKE2b-256 0c98576eff9caa0a76966213f7148de7cf7ee5e4a8393c0760df15a19838e643

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b8b1386ef2005b5482d4a38b81e32f81669ad52dd044841b69f84e52e59ee32d
MD5 db2c18731bea818e1de81b1653f4b45c
BLAKE2b-256 02714331c1f55dcb37ddf6df64650cf190b9981d13cc1187c2173ac987b767fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 666dd4ee559138e8f1e76b528325c10de7b25e70cf7ffbc7d9e934c0dc17d0bb
MD5 1245bd437f0e5610aecb1fedbe5fa7b6
BLAKE2b-256 ec7291d3ced7eddff4b1e2ac318afeed60537d5e9f770bffbe660ed4514d2a42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5ab7d8c95dc86601e803d1ca089361ba9f96a95f1288ec63070c23b702a0395a
MD5 520ed91851ec30d5c5ebee6dd23440bb
BLAKE2b-256 ea40e17d043697de21232c2a763df9bc808bdb9dcbb1b8463df864d8b662b3a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 86bc4fe2c40977a88ead448df223c9b53909e1623ec945848900ddac50d49880
MD5 a8c8393490206bc40e9adc9709114143
BLAKE2b-256 2dfaba0763997c89d314fc371369debf7c33eec5bec16fbc8bbad9e97514b90c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6cf2f7017c5e22e2bcdb811073892f0765f038f5de012fd28b7c2398ca4d190
MD5 33351df11bc7c2845c16aa7b7beb77c0
BLAKE2b-256 a721c9493751b0d54376043378b695b1d4308d9a3bbba0311df31a57b2da6834

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d653e7df7484a54595f2ad5b1cab1622fd94f2e73583ab9ed17ddc8f5aaf3c0d
MD5 3014f75189eb737b5352f777d68f0e3a
BLAKE2b-256 f780ba85080338b1e566a9daf6baafda1f22598ef64114c33ecafdd4df36e27f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6ef9c01fb8dc7ea03e206602a9da5ffc7cc674e6081585d67597d350219abed
MD5 2542815c2d7faeba89a3264bba9ebf0f
BLAKE2b-256 c6efe0297240a11f1427a8964943f7d61880636f89fcdde98ff3a685124b38e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 213d1a4c5c23bc15f7b971729c44e65e33f7497849a66b2bc6fbace256861ddf
MD5 d6fe9901f766e9492843f3d368e38e03
BLAKE2b-256 7242b672d0250b9424fe727d23078737ccdca92b4a34929fbe05f94ad93c9898

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2b6c6af26a1d30abfbd99bee1727d2a370ade70705ce6e4057b7410b793ec5aa
MD5 49437c9d4f9a77719d4d6d821491bc38
BLAKE2b-256 d70af9ae43011e031bfa4d9893b5ff3b10033f23dcb57a18ed7dc031fa51f9df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 827a13378daedcf078eba73d070971cef820591d8ca79adfc0e878b8c3884254
MD5 e69e825d3b38e9ced52cdf35b3a7845f
BLAKE2b-256 4f00fec71bd81ae91834d3040c9879b6ad7f4e921afe0f9c7600b3d353c83e08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 192643dbbd9357e6b731170ea41c17621437c07b5b7235c2ab32eed1e6d1b2c2
MD5 8d63ae87446be430b1f3b5e96975628f
BLAKE2b-256 0d433e2511dc36e71e8c3be0d0aaf6b98080961513ada672dab3aca9d4b7dae1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9bb59702fcccad088beb161c9c585f0a62b73519ec0b2b1c3e6305f0669e6754
MD5 c166e4f8f39af50ea6071c73b216e601
BLAKE2b-256 bfa84ff54a769a83d7071f9777993aa5270c5a385bf629e3d887293d13a3780a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyrime-0.0.8-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3fd80b3da95e0a2274c07992c5c4b19594674475cf6463da31cd8eb17494940a
MD5 de22c2bfb82561f69d687d16c1783828
BLAKE2b-256 fd03632ae4c4ead12fc82fe3e0919172a9c5fdeb27e3960c5cc13354f5fe0d19

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