Skip to main content

Fast RPC client library for Python in rust.

Project description

CuatroRPC

Fast Bitcoin RPC Client Library for Python leveraging Rust.

CuatroRPC aims to be a simple and fast RPC Client for Bitcoin compatible RPC servers.

Installation

Installation can be done with pip.

pip install cuatrorpc

Usage

from cuatrorpc import RpcClient

rpc = RpcClient(username="username", password="password", port=8033)

# Get the block count
print(rpc.callrpc("getblockcount"))

Arguments are passed as a python objects in a list.

from cuatrorpc import RpcClient

rpc = RpcClient(username="username", password="password", port=8033)

block_height = 1337

# Get get block hash from index
block_hash = rpc.callrpc("getblockhash", [block_height])

# Get the block details along with all of the trasnaction data for the block
block_details = rpc.callrpc("getblock", [block_hash, 2])

# Since the return for 'getblock' is a json object,
# block_details is automatically converted to a python object

# Get the timestamp of the block

timestamp = block_details['time']

print(timestamp)

For Async operations, use the RpcClientAsync class

from cuatrorpc import RpcClientAsync
import asyncio


rpc = RpcClientAsync(username="username", password="password", port=8033)

async def main():
  # Get the block count
  block_count = await rpc.callrpc("getblockcount")
  print(block_count)

if __name__ == "__main__":
  asyncio.run(main())

Usage CLI Binary

You can optionally use the cli binary to make rpc calls.

from cuatrorpc import RpcClientCLI


rpc_cli = RpcClientCLI(cli_bin_path="/path/to/bitcoin-cli",
                                data_dir_path="/path/to/.bitcoin",
                                daemon_conf_path="/path/to/.bitcoin/bitcoin.conf"
                                )

# Everything from here is the same as the http version except the method is called callrpc_cli

# Get the block count
print(rpc_cli.callrpc("getblockcount"))

For Async operations, use the RpcClientCLIAsync class

from cuatrorpc import RpcClientCLIAsync
import asyncio


rpc_cli = RpcClientCLIAsync(cli_bin_path="/path/to/bitcoin-cli",
                                data_dir_path="/path/to/.bitcoin",
                                daemon_conf_path="/path/to/.bitcoin/bitcoin.conf"
                                )

# From here everything is the same as with the async http version.

async def main():
  # Get the block count
  block_count = await rpc_cli.callrpc("getblockcount")
  print(block_count)

if __name__ == "__main__":
  asyncio.run(main())

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

cuatrorpc-0.7.2.tar.gz (12.6 kB view details)

Uploaded Source

Built Distributions

cuatrorpc-0.7.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (2.9 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

cuatrorpc-0.7.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (2.6 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

cuatrorpc-0.7.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cuatrorpc-0.7.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

cuatrorpc-0.7.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (2.9 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

cuatrorpc-0.7.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (2.6 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

cuatrorpc-0.7.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cuatrorpc-0.7.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

cuatrorpc-0.7.2-cp312-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12 Windows x86-64

cuatrorpc-0.7.2-cp312-none-win32.whl (852.1 kB view details)

Uploaded CPython 3.12 Windows x86

cuatrorpc-0.7.2-cp312-cp312-musllinux_1_1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

cuatrorpc-0.7.2-cp312-cp312-musllinux_1_1_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

cuatrorpc-0.7.2-cp312-cp312-manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ ARM64

cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

cuatrorpc-0.7.2-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cuatrorpc-0.7.2-cp312-cp312-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

cuatrorpc-0.7.2-cp311-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

cuatrorpc-0.7.2-cp311-none-win32.whl (852.6 kB view details)

Uploaded CPython 3.11 Windows x86

cuatrorpc-0.7.2-cp311-cp311-musllinux_1_1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

cuatrorpc-0.7.2-cp311-cp311-musllinux_1_1_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

cuatrorpc-0.7.2-cp311-cp311-manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ ARM64

cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

cuatrorpc-0.7.2-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cuatrorpc-0.7.2-cp311-cp311-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

cuatrorpc-0.7.2-cp310-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

cuatrorpc-0.7.2-cp310-none-win32.whl (852.6 kB view details)

Uploaded CPython 3.10 Windows x86

cuatrorpc-0.7.2-cp310-cp310-musllinux_1_1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

cuatrorpc-0.7.2-cp310-cp310-musllinux_1_1_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

cuatrorpc-0.7.2-cp310-cp310-manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ ARM64

cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

cuatrorpc-0.7.2-cp39-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

cuatrorpc-0.7.2-cp39-none-win32.whl (852.6 kB view details)

Uploaded CPython 3.9 Windows x86

cuatrorpc-0.7.2-cp39-cp39-musllinux_1_1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

cuatrorpc-0.7.2-cp39-cp39-musllinux_1_1_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

cuatrorpc-0.7.2-cp39-cp39-manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ ARM64

cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

cuatrorpc-0.7.2-cp38-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

cuatrorpc-0.7.2-cp38-none-win32.whl (852.2 kB view details)

Uploaded CPython 3.8 Windows x86

cuatrorpc-0.7.2-cp38-cp38-musllinux_1_1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

cuatrorpc-0.7.2-cp38-cp38-musllinux_1_1_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

cuatrorpc-0.7.2-cp38-cp38-manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ ARM64

cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

cuatrorpc-0.7.2-cp38-cp38-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

cuatrorpc-0.7.2-cp38-cp38-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

Details for the file cuatrorpc-0.7.2.tar.gz.

File metadata

  • Download URL: cuatrorpc-0.7.2.tar.gz
  • Upload date:
  • Size: 12.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for cuatrorpc-0.7.2.tar.gz
Algorithm Hash digest
SHA256 5ab2751f59b7de7181e2b0850f5984f18cc3167063f805e075bae1515db670f1
MD5 ce9fad3bbdb5803d9b48ae3cdda9af84
BLAKE2b-256 b29464aa6bb7e3945aed1dae1ac81e786cc2f8d41bff1c703edd5858b6bef821

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 70917460d60fd7f094249f8a653389cb438e458d431cf8df89632e818645542f
MD5 92d590d22f898a0ba75030ff3bee17a1
BLAKE2b-256 68742e61c23dd6d3875253c76ab8670540c1f76fd2a6ae464c03280f8670819b

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 65cb2e98679c6bd6ba6455a6bc097757e93441837076bb22cf2e0c085e23a44c
MD5 acc6be9743583e40319c507e41db5908
BLAKE2b-256 4a7b6376140ab2f4ee270e07e2255703251f8af7de1eb06e1fbded35ebc4cb03

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 252e114e64e39d5be45e86048ebffd2d71713c2f123898641386460e7225c64f
MD5 3e5257c48c44c557a2769188c34a5b4e
BLAKE2b-256 41408386a319ce336aeb1ae9db10428c2c345738ed95d35752e27f3ca54f29dd

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d9c545eb963eb9953cb4de0f57305c806b20a49b57ce99c22b68cdd30de89b64
MD5 d3c9f6549243b9b35a4b9709b924d7d9
BLAKE2b-256 ed1ae20905defc4e5499110d6b92e303c1f0c3b22e5b6a7e35f1f1f14e717125

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3fb1187a115e3c4baf5907f784c318b941b5fa866b031b5dd1a94ccefd20dbc0
MD5 40614b1eb49131053fcbb862965d2e11
BLAKE2b-256 567afeac753e4e9ca4a741619d07fcb5cb37178fd0efc66b4c0b8e553b9bcdc5

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2d4bbddd481cef8cf69b19152d5594a37a9073061dd83ee1dbf56f6d3dd6f1da
MD5 a68b90f6ddcf681c7c7ccc307d7557e7
BLAKE2b-256 76b10302d692075350dfaf1b6992da1c663dc92a9565417077cbf9cc71348d47

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16ce11c61ca54404d517ef30e2a0213445dc1341738414c8915d788307086ae8
MD5 32f615eb454b674316e26f1cbf55ffe7
BLAKE2b-256 a0c9a3df82926935eec9274e924062df90edc167a50dcc572de839b24006139b

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f7048dde4db5ca878f998932c24a2a047673d9b995d7148e6a2287570095228
MD5 3dd9ae9149864007f890191b34e8baaf
BLAKE2b-256 ff00fa4e17cbe3c44dcd97b280169a5fc6581b9cb86d24f5174187c8be70eedf

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 0747786ac9367a6938e7afb906a2b2f6bfdc6c0d3c33807877a06fd9b8916f8a
MD5 f40e8f1dbacde3b062dc82c235f62536
BLAKE2b-256 4ddd8ed18ccf6c7756fc75cc7c64269efe36f075214390a05822d298f928b422

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp312-none-win32.whl.

File metadata

  • Download URL: cuatrorpc-0.7.2-cp312-none-win32.whl
  • Upload date:
  • Size: 852.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for cuatrorpc-0.7.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 72e326517bdcb565c26137538d54c63587749b52343e9fb1eab84fe6665b1577
MD5 f5ad6439d2c30456198071bda20b2723
BLAKE2b-256 7a983e577291fdb1c43130b37a64fc3b531dee305239c6e5234ba4e92b582e8f

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 33569a077527f8ab171b68bedc5eaaf7f74982111745ac773917684d4f6bd921
MD5 d4948dfb935f35e66fd1446beb2273a5
BLAKE2b-256 e3997c3c96332622deff243d76214a072179b708216376c1f12bb9137a8f8f07

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 14d4078c3842718403b071ca800c5808f02a5d9c25c8ce49a8671d7577248332
MD5 3f438dcdc0dc0da0cb30aa04be5c9dfa
BLAKE2b-256 5c5d7d0e3d9a4c5457668bc5f19d8e31f48a23adac86eed92a6f434ef943952a

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 710766059286ba6c0027e6b6b9cc296647e7d5484423b4f359f03bc388deda99
MD5 b9f4ec285b91d5e162fc9a4381847823
BLAKE2b-256 5102b63784b1188db21963beb89757cc96b5592fad42e6bdf418d988f66cdb37

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93cc299acdb81d2707b5f556e7875bed5c8b9a0f61a27ecb9b110f9f3475c9ba
MD5 bfffbafd29b484f652bd85de1d3f86de
BLAKE2b-256 be5e1f042fd4673a5274f700c7f17ffaa54525f59884645e19311db7bad3c901

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a2eea2d6b6242da0117cd1b39782adaa3126d964ac1bfa3d4c304e453c3039f3
MD5 1786e0f81ad142ba9512c61af4872833
BLAKE2b-256 29338f95cd81513138bf997bf6880e1097cd178c84b141ad83a9d70851872d97

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db73f928b39f918205ea3a3abfc478796870741c48660ac4514872b9b42f5a49
MD5 1f8bfab552aae0f0d14533b1ac834b94
BLAKE2b-256 6271a199eba2900371f59843520544b019ff03ad8d5b7f008ac037d11771b239

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 743b8294d12577e06f674bf29b1b9a161aaf45abf8a7410db5d052e8dda2f698
MD5 00eaabe8fe893a14dd05bb2c59b7cad6
BLAKE2b-256 608859f0599a455844e11a08751d60d387e0016aa53d2705623e41ba5c224f8a

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 90e61b3b6a270afb9077cdb7143d81cd4b09390bd63b4046cf1faf07dd3ee662
MD5 f9ceb189ff85c3ca671739e451f130e3
BLAKE2b-256 1a4f52d7dbf04c8a30f424512b2f1ee44e79c9c719b2b8b156cf90665cf04977

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad6e2246f5dff1c1ffad347ca636c05bbfab56467b1439a5f0150b2c8d502545
MD5 6fb5c5c396bc3ca6af418b7795b67ab8
BLAKE2b-256 790f3f3a345d0e1b014dc46f3544ad8e38e3ec45109ce0cf4e590b583600e9de

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0df1e945f40491238b21274e7e0f886a45e8cd15c973e107b0de1fbc01468be8
MD5 7bb43442adb2830a54b1a85336051f8a
BLAKE2b-256 c38a2f6808d494170c2d5f3019ec824fa55d49aff8cb81e14d10d2fce94347a4

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 c3dcb1e335c7260d530c04236e854cac798f54dfd2ebc47e6dd59139633664b1
MD5 9033982ad8995fe3ae2d185577dcb634
BLAKE2b-256 79fb628f4f0ebe82ab6f55a3d30e6798e04e7d082875e939ce6c87ad354bcd9f

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp311-none-win32.whl.

File metadata

  • Download URL: cuatrorpc-0.7.2-cp311-none-win32.whl
  • Upload date:
  • Size: 852.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for cuatrorpc-0.7.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 737accc276c2f680aeec91ea38e7063adaee6c8aa7aac3c9ed6e7a88434bae9c
MD5 295a2fab55159225853cf46e955ca0c2
BLAKE2b-256 120ff432e9e9e95481828cc2a0ee1870b18a364b63e9f6e6a83dda3c1eb67e95

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8c5a138a94cebf620139586c73d062beab5ab9df8c1b84ad2f5680d280ea8274
MD5 753d4139381b3d9dd45e8b8b4147ec4f
BLAKE2b-256 30a4721ff7b23d731c30402411670d8c82d4de5714e1f4c318171ac7b124fad5

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 74ccd484f96036d23987704d0fc8b4dffb8cf0cfa57ad93d1df03ea94d5060f9
MD5 690135d2801b2e318f1314d310ac7c9b
BLAKE2b-256 bf98861d04defe985cd585be9442d2c08ce36d739974e40c8fd6f6696d484a33

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 078e87a4830af80c0ffa883d81c04b4d59b0bb9b7235adddbabf96bca57f71b9
MD5 7ecbfb4cbfbca3026e084021e2584d5e
BLAKE2b-256 e3003e6e780a8ec8a47c7c70e37884fcf0d5a2d64edc8754607534ba57e37dd7

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aabdc473c0ad556ef930a5f2f172e8ee24276d64afd287a8b4ac4f1adf22a26a
MD5 7479b7cf8005bf6e252684fddca1f713
BLAKE2b-256 57d2bd5090d9d4ff8237075de7a2703ddace01f731aa71d173cf6711c2bda569

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8fbaac47c2cfe6a99f3b0ca7895dedde17cc8878041c6bb0f46c613d9ba756d
MD5 9a22f4919c8696fa8978ba984ac8a340
BLAKE2b-256 c402a344fd985dec0dc912f2a40dbc25850f0b3c421e51330306cc7aac1d6a7e

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f539336f79072eb557312e08f5443efe754f4e45dc9b491c0c3c6badd86e42e4
MD5 340a6b0cb22541b42241bb31f57d406d
BLAKE2b-256 57d8f42d453a6230dd61452701ef2e8f26accd9e43ddd94a7895631def44ca91

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2397d2d33d255d2eb1e9667549e85ccfe6467ea995dc6d7415d3a8677bfe5a95
MD5 cc0c0bee711ee64b6c9833994320247a
BLAKE2b-256 08ef9ba1cf1e175a06e09c93ecf59d08756b6c2a13c3a689a06aa7bf2a440216

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e6e9005b67fd4145179be9ff3b1b619a8c01de10f7aa74a5b23c7e585a9d5a4e
MD5 512224c589b5f1114cc33110886723f0
BLAKE2b-256 d718117914de2b432923c14f3f9237760fd552196c4a908985bb9e94dec3ce78

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f493e119fd91325b0c68ebb89d4fd51db4083530fb7ee6d7004a9f77a924cc2d
MD5 f3e9187e324529b68efd325078e16450
BLAKE2b-256 893cfee23461ad3f6fb38ee04568df7d9b7fc74938441301bb934a2dcb26b278

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ccfdfad1037f7dba46306d7726cd956601c07825049ba72c93a12ae366ab6a1b
MD5 2e63c802b53ecf3533106e4c66a5357c
BLAKE2b-256 d38f97fd22c294415e44368c8d452bcd0470dd60457bcaa3eecacaabe5a14151

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 9409eb54a690131d433c0e4479f1f0129f5b13cb4f0ef62b1aada1c6bb30e316
MD5 ba250874654dda2a721d6d147f3024d2
BLAKE2b-256 fd098683f3efd1eb3e271a58030a799929471adc5177a2806128a81903828ac2

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp310-none-win32.whl.

File metadata

  • Download URL: cuatrorpc-0.7.2-cp310-none-win32.whl
  • Upload date:
  • Size: 852.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for cuatrorpc-0.7.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 ddaa0645c1db2fc2d7ea92a29d0750de764cda43ca1800822ef2fc9cd77c8158
MD5 3bc2785e35d1af2a7e12aabbbb29c4b5
BLAKE2b-256 630eb4d8bbd569d0b6eafd7184d19de0f3395faba1d6544824f0c46e9bbcbfd4

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 94816613b66d47375d4af22ee1629807563a698089675ce025e38ca81be3870d
MD5 0260f0f4ad222dba236cd59d6f3fe4cd
BLAKE2b-256 40d11226cacb43bc7571633045a346313bd77575b8b133e9f803dc015ce129e1

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f67d225c7177f1347be28911936cc9c9b6709dc30dedd0f2f40b43e8fd2b033f
MD5 337a149d875787b401bc125a18751733
BLAKE2b-256 bd7e5ca728efbaf6de1dd36a59ae7ee1a7ef8294f127d35595d894c773264397

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 45c5725f060e0ccb2d3d67fcc31213d7e8987db3bd7a2cfb3576fbbed0a97d69
MD5 d41d84b22d444e2e54e8d1c6589c4947
BLAKE2b-256 16c2ec2665924af4ba161cea8aaa8ae2d426918627322c76d5ec4e0747badc0b

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b801ced7c02ae3e09e9df22d4638e4fc41af69aaf10020d6f64a38f27f7f32a2
MD5 3c64597c4b1803d20842547ec66ccb82
BLAKE2b-256 46cbbd44fb73ee91846608da1824cae496b73d720cc23adfcee5b29589e3e5b2

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b59900821e877e376a70f18ae0de1547845f10ef92f04d9ee9e4e4071e571b3c
MD5 31a68cf75c488bc1d5ac0adcb97a08fd
BLAKE2b-256 dcf65da607b78586dff566b33a5061cb259d68eb62203a07cad286b7b27ccd4c

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 268a76e3f25b2e92b53c16683b9c9b0a8cf9e8d3b9c0fe980d318daf35b8b8bb
MD5 9e4e93203b7310ff435c38cfa13aee96
BLAKE2b-256 aa7d5ee1fdca1e7f6e7f28916e8e514f2594627f18d3862b00168962487341f0

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0430c9e0bea80d130d32debb970cc0cbf3b011a77438f789b4209e8f5b8424f
MD5 6d753ccb5ce767756a167af7138b5066
BLAKE2b-256 6f349429dcdac3eea239104795c98c40583a266b14693a2ec1a86a3eccc7330a

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0bc1228ca50a4bf36af24b12e81670719f39b0fbd82668a0bd3e9a85a9ead99b
MD5 e282689ece9c6b7cb65fff587950cdfd
BLAKE2b-256 c8ccbff700bf63271ef61f72d697969e9ad325320f1b3f0179d49b72b844eccd

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 7e55d921425c8c25593f2f3c8b5aeb0a8a850334559284aa0d239420f1acfb9a
MD5 a58a98426bd37a72d66406be0e8a281b
BLAKE2b-256 f13bc349cc3f23eae04f5bbc469f6ce675143ff4b3746bd8e1b5bf9a5134e63f

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp39-none-win32.whl.

File metadata

  • Download URL: cuatrorpc-0.7.2-cp39-none-win32.whl
  • Upload date:
  • Size: 852.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for cuatrorpc-0.7.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 00b405988bdf62e035c6b5d292cd201efb0402dcb2e33f6a9bf19d49e705223a
MD5 af9c8ab38cc9d81381025e4835aba1c0
BLAKE2b-256 0dc7ac3e8d580cb88ce617329c597debe97a0514e1c08da7cfebab3c85dd990a

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 110eac481f62250d8aef2b2d9031433e93737841fe22018d81026493db681054
MD5 c7d36d17df8004ed31c26fa98e012ae6
BLAKE2b-256 1ec4f2ea7899c12a936f2aa46db981cd75e0cff9be205827c721faecf9047795

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 604fbbc9561df3c3174238b5af5ffabade2f63a005c10de70768eda2edbac0c6
MD5 c9f44814330148a40655fe02fbcf75d7
BLAKE2b-256 431a08474d9148f4a95378c337d9663f54c6b325563ae4e98b2c7592535c877e

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 441b05962f5b33b2897b9918b04aba29f7e54f17326351e36aef2b6bd85d4e2b
MD5 2b5c4458eac097c0e29dfc9b4487372c
BLAKE2b-256 c42df4a4bd1fe6b16f18a3c1d45a5f529964f2d2313f67cbc5eb118772b77c47

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7379135c4fc105bda0192a3cea8a1ea1a88105588e697f904c05f5ef3ff6ea35
MD5 fcb2f8c5a6546769f76003e4e56e4433
BLAKE2b-256 9d124a5bab4a41b6b989b1dcc7425a2e875e5e1e8ed550cdcece1b69423c023a

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bbba31be45ec12bb996f48fa29159855de120fa82bc6fa47b54fcdb983100651
MD5 0b0c8c9b12474b65b985904d07bf2662
BLAKE2b-256 64a0d5d95720a82c2a0d3898221a5d5aadf01bf673bd8ad860293120a54f2e3a

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f973531d658b2d6cfd6c1a9b4a0b9ac07cd021b3ca93abc44e6dad63846fa2bc
MD5 5c84047ea7da05ce3b6fbe9124ea13eb
BLAKE2b-256 44ee4f317a9c5350541122509dc8a8c3398b376df96cbb3e4c827bc6c9563cf3

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c719becccb92a06c2fc0525976e46f63448e3fb4f5254237b32ed0e0d3afb3e
MD5 dcbd6502f89c1121be41af45ce59d369
BLAKE2b-256 c47f82f864645457a2a4a5826083ea201d96046eaa45fe053014b8b9bd243036

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 06d9dc77fef7d58ab073f0c190a66bf16a14a61877b3b1fdcf1c79ae2b542da0
MD5 a28c374a192d5ae4acab9dc9cd306a2b
BLAKE2b-256 7631fab2b52401c77530bd8833a9a0df694187537397ef8d34d71991a37003bf

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 f7bb268d737e5f0f071b0559c9d5d02f56f84ad558fd688410a6995017bd026a
MD5 52b02c313b0ebbfc799f7c3d95202558
BLAKE2b-256 038e572ec847c7abc68eee09ff757d274686872519e28b93e51ed0bfe50c19c7

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp38-none-win32.whl.

File metadata

  • Download URL: cuatrorpc-0.7.2-cp38-none-win32.whl
  • Upload date:
  • Size: 852.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for cuatrorpc-0.7.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 b362fc5a763fea61f39d93f087767ffcdaddc98db7f7e8026038974e8d9a1902
MD5 a9958a56ca689e0feba566dd2f914e11
BLAKE2b-256 0fab43f4a33443b34267b0ad0903faf8fb2c801e273b045f195a5e02dc4b5afd

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1821addb34d9630bb9b07b6c555065f34cf5bbf73e8fbbd200aa480dc1a83a5f
MD5 2afeed9aa61065fc7f5cbe2dd609bd93
BLAKE2b-256 68668e6474f0c8dfe29aa4c4bf21c9ba8f1f647c62bb3f45c3b73cacf1b81983

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4dc7d1721a9ac70c84a5078f6bdcac7e614c33db3139a1065a4498393d6cc27b
MD5 b2bd1c2aedb8c17302dfb092e6cb51b9
BLAKE2b-256 c2a0bb65d7e1a0d6c77d4760bef3b8affd81212fe3aa435ef061417599a4044b

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 266267ddf57a21bd80e1e0eeecf752d1485c5f7948e454fd6d5d3f2c578dbe11
MD5 6d9f98c1dcd43609984669aa86c5614c
BLAKE2b-256 a5f4c651f56342cb996f3a2569585fd9f1270d6e79c33cdb92557fd101ce8938

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1b805e29c5c906ed1e8f4517be6550a22c6fc451214c914a3f5b40aeed25fb4
MD5 975fcec1d2f294ca8a63b219cc7391b5
BLAKE2b-256 cf6740807d37d4a65ec2afec92e63d31cc699f6dc7144974067c8db41c1d78d7

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 561929cb21346a7ee714307ed6a2f792d5653d7700e0f9e5c06a40600052f748
MD5 3cae9c468004cc43839741740534fa0d
BLAKE2b-256 b000e545b8c2007f1b278ea909926c2d645d6a2ba2b194a46afacc1082e31cb6

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ff872b1ed0f42130701d0f8dad472a44bc0b1e38f70e656f5e95cd77000f7ad
MD5 4ff2f1108627ef0a8cf613b2fefef9cd
BLAKE2b-256 5980dae3799315b0b143d1d48bab42abad515eae4e1f74a3775467907b632f4b

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 682e988cc7f1f7f24d19bede7c15ac0e5a69d996b7a1f0dc9ced3098c39dc6e9
MD5 61a629841dc6c4d7ed86d467b02644d7
BLAKE2b-256 940b44d8a825a7741bf9f77c271a0f3554c132ee6fdfe38d515b0dd761c04dce

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6381eacb27a702a52709206b7b4a005e227b3339724c3292d7bf3d6317c4082b
MD5 4b209e69953a30ecefbc96f517f61d19
BLAKE2b-256 8e1d7ef61ac0282f0f32d89820f8a0d7826c4762b5cc060a3bf336c1af044097

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29db2b1a2870be52c5e52a1390e5b7e9fe5e3d8cf911c4e3e1d1593791f781bf
MD5 a50512d5c7abd5bbd00c236f54287954
BLAKE2b-256 eea605b865a53a50290ec53afc1596d7174043439c0c21c5474b4bdbea44a5a0

See more details on using hashes here.

File details

Details for the file cuatrorpc-0.7.2-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cuatrorpc-0.7.2-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eca6178a2c4a5929e99030104a323d7ffd8af65d6c8b13c1413d7a643af7adfb
MD5 23f709a649fcfd186244ad6bc81920b4
BLAKE2b-256 3d8dbe23e7fd065863b8301bdbcff8d1f092e9fe7600d6adfa014ed78f3d99bc

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page