cuatrorpc


Namecuatrorpc JSON
Version 0.7.2 PyPI version JSON
download
home_pagehttps://github.com/bleach86/CuatroRPC
SummaryFast RPC client library for Python in rust.
upload_time2024-01-23 23:00:22
maintainerNone
docs_urlNone
authorbleach86 <tux@ghostbyjohnmcafee.com>
requires_python>=3.8
licenseMIT
keywords fast rpc bitcoin
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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())
```


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/bleach86/CuatroRPC",
    "name": "cuatrorpc",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "fast,rpc,bitcoin",
    "author": "bleach86 <tux@ghostbyjohnmcafee.com>",
    "author_email": "bleach86 <tux@ghostbyjohnmcafee.com>",
    "download_url": "https://files.pythonhosted.org/packages/b2/94/64aa6bb7e3945aed1dae1ac81e786cc2f8d41bff1c703edd5858b6bef821/cuatrorpc-0.7.2.tar.gz",
    "platform": null,
    "description": "# CuatroRPC\n\nFast Bitcoin RPC Client Library for Python leveraging Rust.\n\nCuatroRPC aims to be a simple and fast RPC Client for Bitcoin compatible RPC servers.\n\n## Installation\n\nInstallation can be done with pip.\n\n```\npip install cuatrorpc\n```\n\n## Usage\n\n```\nfrom cuatrorpc import RpcClient\n\nrpc = RpcClient(username=\"username\", password=\"password\", port=8033)\n\n# Get the block count\nprint(rpc.callrpc(\"getblockcount\"))\n```\n\nArguments are passed as a python objects in a list.\n\n```\nfrom cuatrorpc import RpcClient\n\nrpc = RpcClient(username=\"username\", password=\"password\", port=8033)\n\nblock_height = 1337\n\n# Get get block hash from index\nblock_hash = rpc.callrpc(\"getblockhash\", [block_height])\n\n# Get the block details along with all of the trasnaction data for the block\nblock_details = rpc.callrpc(\"getblock\", [block_hash, 2])\n\n# Since the return for 'getblock' is a json object,\n# block_details is automatically converted to a python object\n\n# Get the timestamp of the block\n\ntimestamp = block_details['time']\n\nprint(timestamp)\n```\n\nFor Async operations, use the RpcClientAsync class\n\n```\nfrom cuatrorpc import RpcClientAsync\nimport asyncio\n\n\nrpc = RpcClientAsync(username=\"username\", password=\"password\", port=8033)\n\nasync def main():\n  # Get the block count\n  block_count = await rpc.callrpc(\"getblockcount\")\n  print(block_count)\n\nif __name__ == \"__main__\":\n  asyncio.run(main())\n```\n\n## Usage CLI Binary\n\nYou can optionally use the cli binary to make rpc calls.\n\n```\nfrom cuatrorpc import RpcClientCLI\n\n\nrpc_cli = RpcClientCLI(cli_bin_path=\"/path/to/bitcoin-cli\",\n                                data_dir_path=\"/path/to/.bitcoin\",\n                                daemon_conf_path=\"/path/to/.bitcoin/bitcoin.conf\"\n                                )\n\n# Everything from here is the same as the http version except the method is called callrpc_cli\n\n# Get the block count\nprint(rpc_cli.callrpc(\"getblockcount\"))\n```\n\nFor Async operations, use the RpcClientCLIAsync class\n\n```\nfrom cuatrorpc import RpcClientCLIAsync\nimport asyncio\n\n\nrpc_cli = RpcClientCLIAsync(cli_bin_path=\"/path/to/bitcoin-cli\",\n                                data_dir_path=\"/path/to/.bitcoin\",\n                                daemon_conf_path=\"/path/to/.bitcoin/bitcoin.conf\"\n                                )\n\n# From here everything is the same as with the async http version.\n\nasync def main():\n  # Get the block count\n  block_count = await rpc_cli.callrpc(\"getblockcount\")\n  print(block_count)\n\nif __name__ == \"__main__\":\n  asyncio.run(main())\n```\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Fast RPC client library for Python in rust.",
    "version": "0.7.2",
    "project_urls": {
        "Homepage": "https://github.com/bleach86/CuatroRPC",
        "Source Code": "https://github.com/bleach86/CuatroRPC"
    },
    "split_keywords": [
        "fast",
        "rpc",
        "bitcoin"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8ccbff700bf63271ef61f72d697969e9ad325320f1b3f0179d49b72b844eccd",
                "md5": "e282689ece9c6b7cb65fff587950cdfd",
                "sha256": "0bc1228ca50a4bf36af24b12e81670719f39b0fbd82668a0bd3e9a85a9ead99b"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e282689ece9c6b7cb65fff587950cdfd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2453402,
            "upload_time": "2024-01-23T22:57:50",
            "upload_time_iso_8601": "2024-01-23T22:57:50.178194Z",
            "url": "https://files.pythonhosted.org/packages/c8/cc/bff700bf63271ef61f72d697969e9ad325320f1b3f0179d49b72b844eccd/cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f349429dcdac3eea239104795c98c40583a266b14693a2ec1a86a3eccc7330a",
                "md5": "6d753ccb5ce767756a167af7138b5066",
                "sha256": "c0430c9e0bea80d130d32debb970cc0cbf3b011a77438f789b4209e8f5b8424f"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6d753ccb5ce767756a167af7138b5066",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2736655,
            "upload_time": "2024-01-23T22:57:52",
            "upload_time_iso_8601": "2024-01-23T22:57:52.992819Z",
            "url": "https://files.pythonhosted.org/packages/6f/34/9429dcdac3eea239104795c98c40583a266b14693a2ec1a86a3eccc7330a/cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa7d5ee1fdca1e7f6e7f28916e8e514f2594627f18d3862b00168962487341f0",
                "md5": "9e4e93203b7310ff435c38cfa13aee96",
                "sha256": "268a76e3f25b2e92b53c16683b9c9b0a8cf9e8d3b9c0fe980d318daf35b8b8bb"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9e4e93203b7310ff435c38cfa13aee96",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2891369,
            "upload_time": "2024-01-23T22:57:55",
            "upload_time_iso_8601": "2024-01-23T22:57:55.093135Z",
            "url": "https://files.pythonhosted.org/packages/aa/7d/5ee1fdca1e7f6e7f28916e8e514f2594627f18d3862b00168962487341f0/cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dcf65da607b78586dff566b33a5061cb259d68eb62203a07cad286b7b27ccd4c",
                "md5": "31a68cf75c488bc1d5ac0adcb97a08fd",
                "sha256": "b59900821e877e376a70f18ae0de1547845f10ef92f04d9ee9e4e4071e571b3c"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "31a68cf75c488bc1d5ac0adcb97a08fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2855553,
            "upload_time": "2024-01-23T22:57:57",
            "upload_time_iso_8601": "2024-01-23T22:57:57.861002Z",
            "url": "https://files.pythonhosted.org/packages/dc/f6/5da607b78586dff566b33a5061cb259d68eb62203a07cad286b7b27ccd4c/cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46cbbd44fb73ee91846608da1824cae496b73d720cc23adfcee5b29589e3e5b2",
                "md5": "3c64597c4b1803d20842547ec66ccb82",
                "sha256": "b801ced7c02ae3e09e9df22d4638e4fc41af69aaf10020d6f64a38f27f7f32a2"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3c64597c4b1803d20842547ec66ccb82",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2701180,
            "upload_time": "2024-01-23T22:58:00",
            "upload_time_iso_8601": "2024-01-23T22:58:00.467949Z",
            "url": "https://files.pythonhosted.org/packages/46/cb/bd44fb73ee91846608da1824cae496b73d720cc23adfcee5b29589e3e5b2/cuatrorpc-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16c2ec2665924af4ba161cea8aaa8ae2d426918627322c76d5ec4e0747badc0b",
                "md5": "d41d84b22d444e2e54e8d1c6589c4947",
                "sha256": "45c5725f060e0ccb2d3d67fcc31213d7e8987db3bd7a2cfb3576fbbed0a97d69"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d41d84b22d444e2e54e8d1c6589c4947",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2273257,
            "upload_time": "2024-01-23T22:58:02",
            "upload_time_iso_8601": "2024-01-23T22:58:02.982335Z",
            "url": "https://files.pythonhosted.org/packages/16/c2/ec2665924af4ba161cea8aaa8ae2d426918627322c76d5ec4e0747badc0b/cuatrorpc-0.7.2-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd7e5ca728efbaf6de1dd36a59ae7ee1a7ef8294f127d35595d894c773264397",
                "md5": "337a149d875787b401bc125a18751733",
                "sha256": "f67d225c7177f1347be28911936cc9c9b6709dc30dedd0f2f40b43e8fd2b033f"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "337a149d875787b401bc125a18751733",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2594298,
            "upload_time": "2024-01-23T22:58:05",
            "upload_time_iso_8601": "2024-01-23T22:58:05.768160Z",
            "url": "https://files.pythonhosted.org/packages/bd/7e/5ca728efbaf6de1dd36a59ae7ee1a7ef8294f127d35595d894c773264397/cuatrorpc-0.7.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "40d11226cacb43bc7571633045a346313bd77575b8b133e9f803dc015ce129e1",
                "md5": "0260f0f4ad222dba236cd59d6f3fe4cd",
                "sha256": "94816613b66d47375d4af22ee1629807563a698089675ce025e38ca81be3870d"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0260f0f4ad222dba236cd59d6f3fe4cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2854946,
            "upload_time": "2024-01-23T22:58:08",
            "upload_time_iso_8601": "2024-01-23T22:58:08.680045Z",
            "url": "https://files.pythonhosted.org/packages/40/d1/1226cacb43bc7571633045a346313bd77575b8b133e9f803dc015ce129e1/cuatrorpc-0.7.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "630eb4d8bbd569d0b6eafd7184d19de0f3395faba1d6544824f0c46e9bbcbfd4",
                "md5": "3bc2785e35d1af2a7e12aabbbb29c4b5",
                "sha256": "ddaa0645c1db2fc2d7ea92a29d0750de764cda43ca1800822ef2fc9cd77c8158"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "3bc2785e35d1af2a7e12aabbbb29c4b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 852593,
            "upload_time": "2024-01-23T22:58:11",
            "upload_time_iso_8601": "2024-01-23T22:58:11.120361Z",
            "url": "https://files.pythonhosted.org/packages/63/0e/b4d8bbd569d0b6eafd7184d19de0f3395faba1d6544824f0c46e9bbcbfd4/cuatrorpc-0.7.2-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd098683f3efd1eb3e271a58030a799929471adc5177a2806128a81903828ac2",
                "md5": "ba250874654dda2a721d6d147f3024d2",
                "sha256": "9409eb54a690131d433c0e4479f1f0129f5b13cb4f0ef62b1aada1c6bb30e316"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ba250874654dda2a721d6d147f3024d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1079611,
            "upload_time": "2024-01-23T22:58:13",
            "upload_time_iso_8601": "2024-01-23T22:58:13.479136Z",
            "url": "https://files.pythonhosted.org/packages/fd/09/8683f3efd1eb3e271a58030a799929471adc5177a2806128a81903828ac2/cuatrorpc-0.7.2-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d38f97fd22c294415e44368c8d452bcd0470dd60457bcaa3eecacaabe5a14151",
                "md5": "2e63c802b53ecf3533106e4c66a5357c",
                "sha256": "ccfdfad1037f7dba46306d7726cd956601c07825049ba72c93a12ae366ab6a1b"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2e63c802b53ecf3533106e4c66a5357c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1249637,
            "upload_time": "2024-01-23T22:58:15",
            "upload_time_iso_8601": "2024-01-23T22:58:15.411341Z",
            "url": "https://files.pythonhosted.org/packages/d3/8f/97fd22c294415e44368c8d452bcd0470dd60457bcaa3eecacaabe5a14151/cuatrorpc-0.7.2-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "893cfee23461ad3f6fb38ee04568df7d9b7fc74938441301bb934a2dcb26b278",
                "md5": "f3e9187e324529b68efd325078e16450",
                "sha256": "f493e119fd91325b0c68ebb89d4fd51db4083530fb7ee6d7004a9f77a924cc2d"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f3e9187e324529b68efd325078e16450",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1200206,
            "upload_time": "2024-01-23T22:58:18",
            "upload_time_iso_8601": "2024-01-23T22:58:18.557778Z",
            "url": "https://files.pythonhosted.org/packages/89/3c/fee23461ad3f6fb38ee04568df7d9b7fc74938441301bb934a2dcb26b278/cuatrorpc-0.7.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d718117914de2b432923c14f3f9237760fd552196c4a908985bb9e94dec3ce78",
                "md5": "512224c589b5f1114cc33110886723f0",
                "sha256": "e6e9005b67fd4145179be9ff3b1b619a8c01de10f7aa74a5b23c7e585a9d5a4e"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "512224c589b5f1114cc33110886723f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2453760,
            "upload_time": "2024-01-23T22:58:20",
            "upload_time_iso_8601": "2024-01-23T22:58:20.679819Z",
            "url": "https://files.pythonhosted.org/packages/d7/18/117914de2b432923c14f3f9237760fd552196c4a908985bb9e94dec3ce78/cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "08ef9ba1cf1e175a06e09c93ecf59d08756b6c2a13c3a689a06aa7bf2a440216",
                "md5": "cc0c0bee711ee64b6c9833994320247a",
                "sha256": "2397d2d33d255d2eb1e9667549e85ccfe6467ea995dc6d7415d3a8677bfe5a95"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cc0c0bee711ee64b6c9833994320247a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2736608,
            "upload_time": "2024-01-23T22:58:22",
            "upload_time_iso_8601": "2024-01-23T22:58:22.991854Z",
            "url": "https://files.pythonhosted.org/packages/08/ef/9ba1cf1e175a06e09c93ecf59d08756b6c2a13c3a689a06aa7bf2a440216/cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "57d8f42d453a6230dd61452701ef2e8f26accd9e43ddd94a7895631def44ca91",
                "md5": "340a6b0cb22541b42241bb31f57d406d",
                "sha256": "f539336f79072eb557312e08f5443efe754f4e45dc9b491c0c3c6badd86e42e4"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "340a6b0cb22541b42241bb31f57d406d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2891535,
            "upload_time": "2024-01-23T22:58:25",
            "upload_time_iso_8601": "2024-01-23T22:58:25.014633Z",
            "url": "https://files.pythonhosted.org/packages/57/d8/f42d453a6230dd61452701ef2e8f26accd9e43ddd94a7895631def44ca91/cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c402a344fd985dec0dc912f2a40dbc25850f0b3c421e51330306cc7aac1d6a7e",
                "md5": "9a22f4919c8696fa8978ba984ac8a340",
                "sha256": "b8fbaac47c2cfe6a99f3b0ca7895dedde17cc8878041c6bb0f46c613d9ba756d"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9a22f4919c8696fa8978ba984ac8a340",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2855709,
            "upload_time": "2024-01-23T22:58:27",
            "upload_time_iso_8601": "2024-01-23T22:58:27.506922Z",
            "url": "https://files.pythonhosted.org/packages/c4/02/a344fd985dec0dc912f2a40dbc25850f0b3c421e51330306cc7aac1d6a7e/cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "57d2bd5090d9d4ff8237075de7a2703ddace01f731aa71d173cf6711c2bda569",
                "md5": "7479b7cf8005bf6e252684fddca1f713",
                "sha256": "aabdc473c0ad556ef930a5f2f172e8ee24276d64afd287a8b4ac4f1adf22a26a"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7479b7cf8005bf6e252684fddca1f713",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2701407,
            "upload_time": "2024-01-23T22:58:30",
            "upload_time_iso_8601": "2024-01-23T22:58:30.329552Z",
            "url": "https://files.pythonhosted.org/packages/57/d2/bd5090d9d4ff8237075de7a2703ddace01f731aa71d173cf6711c2bda569/cuatrorpc-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e3003e6e780a8ec8a47c7c70e37884fcf0d5a2d64edc8754607534ba57e37dd7",
                "md5": "7ecbfb4cbfbca3026e084021e2584d5e",
                "sha256": "078e87a4830af80c0ffa883d81c04b4d59b0bb9b7235adddbabf96bca57f71b9"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7ecbfb4cbfbca3026e084021e2584d5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2272715,
            "upload_time": "2024-01-23T22:58:32",
            "upload_time_iso_8601": "2024-01-23T22:58:32.565067Z",
            "url": "https://files.pythonhosted.org/packages/e3/00/3e6e780a8ec8a47c7c70e37884fcf0d5a2d64edc8754607534ba57e37dd7/cuatrorpc-0.7.2-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf98861d04defe985cd585be9442d2c08ce36d739974e40c8fd6f6696d484a33",
                "md5": "690135d2801b2e318f1314d310ac7c9b",
                "sha256": "74ccd484f96036d23987704d0fc8b4dffb8cf0cfa57ad93d1df03ea94d5060f9"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "690135d2801b2e318f1314d310ac7c9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2594178,
            "upload_time": "2024-01-23T22:58:35",
            "upload_time_iso_8601": "2024-01-23T22:58:35.280395Z",
            "url": "https://files.pythonhosted.org/packages/bf/98/861d04defe985cd585be9442d2c08ce36d739974e40c8fd6f6696d484a33/cuatrorpc-0.7.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30a4721ff7b23d731c30402411670d8c82d4de5714e1f4c318171ac7b124fad5",
                "md5": "753d4139381b3d9dd45e8b8b4147ec4f",
                "sha256": "8c5a138a94cebf620139586c73d062beab5ab9df8c1b84ad2f5680d280ea8274"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "753d4139381b3d9dd45e8b8b4147ec4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2855084,
            "upload_time": "2024-01-23T22:58:38",
            "upload_time_iso_8601": "2024-01-23T22:58:38.481554Z",
            "url": "https://files.pythonhosted.org/packages/30/a4/721ff7b23d731c30402411670d8c82d4de5714e1f4c318171ac7b124fad5/cuatrorpc-0.7.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "120ff432e9e9e95481828cc2a0ee1870b18a364b63e9f6e6a83dda3c1eb67e95",
                "md5": "295a2fab55159225853cf46e955ca0c2",
                "sha256": "737accc276c2f680aeec91ea38e7063adaee6c8aa7aac3c9ed6e7a88434bae9c"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "295a2fab55159225853cf46e955ca0c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 852621,
            "upload_time": "2024-01-23T22:58:40",
            "upload_time_iso_8601": "2024-01-23T22:58:40.885604Z",
            "url": "https://files.pythonhosted.org/packages/12/0f/f432e9e9e95481828cc2a0ee1870b18a364b63e9f6e6a83dda3c1eb67e95/cuatrorpc-0.7.2-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79fb628f4f0ebe82ab6f55a3d30e6798e04e7d082875e939ce6c87ad354bcd9f",
                "md5": "9033982ad8995fe3ae2d185577dcb634",
                "sha256": "c3dcb1e335c7260d530c04236e854cac798f54dfd2ebc47e6dd59139633664b1"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9033982ad8995fe3ae2d185577dcb634",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1079676,
            "upload_time": "2024-01-23T22:58:43",
            "upload_time_iso_8601": "2024-01-23T22:58:43.411592Z",
            "url": "https://files.pythonhosted.org/packages/79/fb/628f4f0ebe82ab6f55a3d30e6798e04e7d082875e939ce6c87ad354bcd9f/cuatrorpc-0.7.2-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c38a2f6808d494170c2d5f3019ec824fa55d49aff8cb81e14d10d2fce94347a4",
                "md5": "7bb43442adb2830a54b1a85336051f8a",
                "sha256": "0df1e945f40491238b21274e7e0f886a45e8cd15c973e107b0de1fbc01468be8"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7bb43442adb2830a54b1a85336051f8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1248133,
            "upload_time": "2024-01-23T22:58:45",
            "upload_time_iso_8601": "2024-01-23T22:58:45.901673Z",
            "url": "https://files.pythonhosted.org/packages/c3/8a/2f6808d494170c2d5f3019ec824fa55d49aff8cb81e14d10d2fce94347a4/cuatrorpc-0.7.2-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "790f3f3a345d0e1b014dc46f3544ad8e38e3ec45109ce0cf4e590b583600e9de",
                "md5": "6fb5c5c396bc3ca6af418b7795b67ab8",
                "sha256": "ad6e2246f5dff1c1ffad347ca636c05bbfab56467b1439a5f0150b2c8d502545"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6fb5c5c396bc3ca6af418b7795b67ab8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1195537,
            "upload_time": "2024-01-23T22:58:47",
            "upload_time_iso_8601": "2024-01-23T22:58:47.697719Z",
            "url": "https://files.pythonhosted.org/packages/79/0f/3f3a345d0e1b014dc46f3544ad8e38e3ec45109ce0cf4e590b583600e9de/cuatrorpc-0.7.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a4f52d7dbf04c8a30f424512b2f1ee44e79c9c719b2b8b156cf90665cf04977",
                "md5": "f9ceb189ff85c3ca671739e451f130e3",
                "sha256": "90e61b3b6a270afb9077cdb7143d81cd4b09390bd63b4046cf1faf07dd3ee662"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f9ceb189ff85c3ca671739e451f130e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2451334,
            "upload_time": "2024-01-23T22:58:49",
            "upload_time_iso_8601": "2024-01-23T22:58:49.600904Z",
            "url": "https://files.pythonhosted.org/packages/1a/4f/52d7dbf04c8a30f424512b2f1ee44e79c9c719b2b8b156cf90665cf04977/cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "608859f0599a455844e11a08751d60d387e0016aa53d2705623e41ba5c224f8a",
                "md5": "00eaabe8fe893a14dd05bb2c59b7cad6",
                "sha256": "743b8294d12577e06f674bf29b1b9a161aaf45abf8a7410db5d052e8dda2f698"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "00eaabe8fe893a14dd05bb2c59b7cad6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2735783,
            "upload_time": "2024-01-23T22:58:51",
            "upload_time_iso_8601": "2024-01-23T22:58:51.982495Z",
            "url": "https://files.pythonhosted.org/packages/60/88/59f0599a455844e11a08751d60d387e0016aa53d2705623e41ba5c224f8a/cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6271a199eba2900371f59843520544b019ff03ad8d5b7f008ac037d11771b239",
                "md5": "1f8bfab552aae0f0d14533b1ac834b94",
                "sha256": "db73f928b39f918205ea3a3abfc478796870741c48660ac4514872b9b42f5a49"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1f8bfab552aae0f0d14533b1ac834b94",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2890538,
            "upload_time": "2024-01-23T22:58:54",
            "upload_time_iso_8601": "2024-01-23T22:58:54.547360Z",
            "url": "https://files.pythonhosted.org/packages/62/71/a199eba2900371f59843520544b019ff03ad8d5b7f008ac037d11771b239/cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "29338f95cd81513138bf997bf6880e1097cd178c84b141ad83a9d70851872d97",
                "md5": "1786e0f81ad142ba9512c61af4872833",
                "sha256": "a2eea2d6b6242da0117cd1b39782adaa3126d964ac1bfa3d4c304e453c3039f3"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1786e0f81ad142ba9512c61af4872833",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2837305,
            "upload_time": "2024-01-23T22:58:56",
            "upload_time_iso_8601": "2024-01-23T22:58:56.664908Z",
            "url": "https://files.pythonhosted.org/packages/29/33/8f95cd81513138bf997bf6880e1097cd178c84b141ad83a9d70851872d97/cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be5e1f042fd4673a5274f700c7f17ffaa54525f59884645e19311db7bad3c901",
                "md5": "bfffbafd29b484f652bd85de1d3f86de",
                "sha256": "93cc299acdb81d2707b5f556e7875bed5c8b9a0f61a27ecb9b110f9f3475c9ba"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bfffbafd29b484f652bd85de1d3f86de",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2699658,
            "upload_time": "2024-01-23T22:58:58",
            "upload_time_iso_8601": "2024-01-23T22:58:58.820824Z",
            "url": "https://files.pythonhosted.org/packages/be/5e/1f042fd4673a5274f700c7f17ffaa54525f59884645e19311db7bad3c901/cuatrorpc-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5102b63784b1188db21963beb89757cc96b5592fad42e6bdf418d988f66cdb37",
                "md5": "b9f4ec285b91d5e162fc9a4381847823",
                "sha256": "710766059286ba6c0027e6b6b9cc296647e7d5484423b4f359f03bc388deda99"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp312-cp312-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b9f4ec285b91d5e162fc9a4381847823",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2272814,
            "upload_time": "2024-01-23T22:59:00",
            "upload_time_iso_8601": "2024-01-23T22:59:00.911045Z",
            "url": "https://files.pythonhosted.org/packages/51/02/b63784b1188db21963beb89757cc96b5592fad42e6bdf418d988f66cdb37/cuatrorpc-0.7.2-cp312-cp312-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c5d7d0e3d9a4c5457668bc5f19d8e31f48a23adac86eed92a6f434ef943952a",
                "md5": "3f438dcdc0dc0da0cb30aa04be5c9dfa",
                "sha256": "14d4078c3842718403b071ca800c5808f02a5d9c25c8ce49a8671d7577248332"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3f438dcdc0dc0da0cb30aa04be5c9dfa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2594144,
            "upload_time": "2024-01-23T22:59:04",
            "upload_time_iso_8601": "2024-01-23T22:59:04.106350Z",
            "url": "https://files.pythonhosted.org/packages/5c/5d/7d0e3d9a4c5457668bc5f19d8e31f48a23adac86eed92a6f434ef943952a/cuatrorpc-0.7.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e3997c3c96332622deff243d76214a072179b708216376c1f12bb9137a8f8f07",
                "md5": "d4948dfb935f35e66fd1446beb2273a5",
                "sha256": "33569a077527f8ab171b68bedc5eaaf7f74982111745ac773917684d4f6bd921"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d4948dfb935f35e66fd1446beb2273a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2853799,
            "upload_time": "2024-01-23T22:59:06",
            "upload_time_iso_8601": "2024-01-23T22:59:06.293517Z",
            "url": "https://files.pythonhosted.org/packages/e3/99/7c3c96332622deff243d76214a072179b708216376c1f12bb9137a8f8f07/cuatrorpc-0.7.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a983e577291fdb1c43130b37a64fc3b531dee305239c6e5234ba4e92b582e8f",
                "md5": "f5ad6439d2c30456198071bda20b2723",
                "sha256": "72e326517bdcb565c26137538d54c63587749b52343e9fb1eab84fe6665b1577"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "f5ad6439d2c30456198071bda20b2723",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 852058,
            "upload_time": "2024-01-23T22:59:08",
            "upload_time_iso_8601": "2024-01-23T22:59:08.210273Z",
            "url": "https://files.pythonhosted.org/packages/7a/98/3e577291fdb1c43130b37a64fc3b531dee305239c6e5234ba4e92b582e8f/cuatrorpc-0.7.2-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ddd8ed18ccf6c7756fc75cc7c64269efe36f075214390a05822d298f928b422",
                "md5": "f40e8f1dbacde3b062dc82c235f62536",
                "sha256": "0747786ac9367a6938e7afb906a2b2f6bfdc6c0d3c33807877a06fd9b8916f8a"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f40e8f1dbacde3b062dc82c235f62536",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1079720,
            "upload_time": "2024-01-23T22:59:10",
            "upload_time_iso_8601": "2024-01-23T22:59:10.156970Z",
            "url": "https://files.pythonhosted.org/packages/4d/dd/8ed18ccf6c7756fc75cc7c64269efe36f075214390a05822d298f928b422/cuatrorpc-0.7.2-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d8dbe23e7fd065863b8301bdbcff8d1f092e9fe7600d6adfa014ed78f3d99bc",
                "md5": "23f709a649fcfd186244ad6bc81920b4",
                "sha256": "eca6178a2c4a5929e99030104a323d7ffd8af65d6c8b13c1413d7a643af7adfb"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "23f709a649fcfd186244ad6bc81920b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1249485,
            "upload_time": "2024-01-23T22:59:12",
            "upload_time_iso_8601": "2024-01-23T22:59:12.206784Z",
            "url": "https://files.pythonhosted.org/packages/3d/8d/be23e7fd065863b8301bdbcff8d1f092e9fe7600d6adfa014ed78f3d99bc/cuatrorpc-0.7.2-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eea605b865a53a50290ec53afc1596d7174043439c0c21c5474b4bdbea44a5a0",
                "md5": "a50512d5c7abd5bbd00c236f54287954",
                "sha256": "29db2b1a2870be52c5e52a1390e5b7e9fe5e3d8cf911c4e3e1d1593791f781bf"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a50512d5c7abd5bbd00c236f54287954",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1200738,
            "upload_time": "2024-01-23T22:59:14",
            "upload_time_iso_8601": "2024-01-23T22:59:14.299991Z",
            "url": "https://files.pythonhosted.org/packages/ee/a6/05b865a53a50290ec53afc1596d7174043439c0c21c5474b4bdbea44a5a0/cuatrorpc-0.7.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e1d7ef61ac0282f0f32d89820f8a0d7826c4762b5cc060a3bf336c1af044097",
                "md5": "4b209e69953a30ecefbc96f517f61d19",
                "sha256": "6381eacb27a702a52709206b7b4a005e227b3339724c3292d7bf3d6317c4082b"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4b209e69953a30ecefbc96f517f61d19",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2454287,
            "upload_time": "2024-01-23T22:59:16",
            "upload_time_iso_8601": "2024-01-23T22:59:16.437338Z",
            "url": "https://files.pythonhosted.org/packages/8e/1d/7ef61ac0282f0f32d89820f8a0d7826c4762b5cc060a3bf336c1af044097/cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "940b44d8a825a7741bf9f77c271a0f3554c132ee6fdfe38d515b0dd761c04dce",
                "md5": "61a629841dc6c4d7ed86d467b02644d7",
                "sha256": "682e988cc7f1f7f24d19bede7c15ac0e5a69d996b7a1f0dc9ced3098c39dc6e9"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "61a629841dc6c4d7ed86d467b02644d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2737947,
            "upload_time": "2024-01-23T22:59:18",
            "upload_time_iso_8601": "2024-01-23T22:59:18.536814Z",
            "url": "https://files.pythonhosted.org/packages/94/0b/44d8a825a7741bf9f77c271a0f3554c132ee6fdfe38d515b0dd761c04dce/cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5980dae3799315b0b143d1d48bab42abad515eae4e1f74a3775467907b632f4b",
                "md5": "4ff2f1108627ef0a8cf613b2fefef9cd",
                "sha256": "9ff872b1ed0f42130701d0f8dad472a44bc0b1e38f70e656f5e95cd77000f7ad"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4ff2f1108627ef0a8cf613b2fefef9cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2892747,
            "upload_time": "2024-01-23T22:59:20",
            "upload_time_iso_8601": "2024-01-23T22:59:20.654004Z",
            "url": "https://files.pythonhosted.org/packages/59/80/dae3799315b0b143d1d48bab42abad515eae4e1f74a3775467907b632f4b/cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b000e545b8c2007f1b278ea909926c2d645d6a2ba2b194a46afacc1082e31cb6",
                "md5": "3cae9c468004cc43839741740534fa0d",
                "sha256": "561929cb21346a7ee714307ed6a2f792d5653d7700e0f9e5c06a40600052f748"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3cae9c468004cc43839741740534fa0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2858019,
            "upload_time": "2024-01-23T22:59:22",
            "upload_time_iso_8601": "2024-01-23T22:59:22.785249Z",
            "url": "https://files.pythonhosted.org/packages/b0/00/e545b8c2007f1b278ea909926c2d645d6a2ba2b194a46afacc1082e31cb6/cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf6740807d37d4a65ec2afec92e63d31cc699f6dc7144974067c8db41c1d78d7",
                "md5": "975fcec1d2f294ca8a63b219cc7391b5",
                "sha256": "a1b805e29c5c906ed1e8f4517be6550a22c6fc451214c914a3f5b40aeed25fb4"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "975fcec1d2f294ca8a63b219cc7391b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2701083,
            "upload_time": "2024-01-23T22:59:25",
            "upload_time_iso_8601": "2024-01-23T22:59:25.461945Z",
            "url": "https://files.pythonhosted.org/packages/cf/67/40807d37d4a65ec2afec92e63d31cc699f6dc7144974067c8db41c1d78d7/cuatrorpc-0.7.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a5f4c651f56342cb996f3a2569585fd9f1270d6e79c33cdb92557fd101ce8938",
                "md5": "6d9f98c1dcd43609984669aa86c5614c",
                "sha256": "266267ddf57a21bd80e1e0eeecf752d1485c5f7948e454fd6d5d3f2c578dbe11"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp38-cp38-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6d9f98c1dcd43609984669aa86c5614c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2273044,
            "upload_time": "2024-01-23T22:59:27",
            "upload_time_iso_8601": "2024-01-23T22:59:27.672029Z",
            "url": "https://files.pythonhosted.org/packages/a5/f4/c651f56342cb996f3a2569585fd9f1270d6e79c33cdb92557fd101ce8938/cuatrorpc-0.7.2-cp38-cp38-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c2a0bb65d7e1a0d6c77d4760bef3b8affd81212fe3aa435ef061417599a4044b",
                "md5": "b2bd1c2aedb8c17302dfb092e6cb51b9",
                "sha256": "4dc7d1721a9ac70c84a5078f6bdcac7e614c33db3139a1065a4498393d6cc27b"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b2bd1c2aedb8c17302dfb092e6cb51b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2594166,
            "upload_time": "2024-01-23T22:59:30",
            "upload_time_iso_8601": "2024-01-23T22:59:30.299344Z",
            "url": "https://files.pythonhosted.org/packages/c2/a0/bb65d7e1a0d6c77d4760bef3b8affd81212fe3aa435ef061417599a4044b/cuatrorpc-0.7.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "68668e6474f0c8dfe29aa4c4bf21c9ba8f1f647c62bb3f45c3b73cacf1b81983",
                "md5": "2afeed9aa61065fc7f5cbe2dd609bd93",
                "sha256": "1821addb34d9630bb9b07b6c555065f34cf5bbf73e8fbbd200aa480dc1a83a5f"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2afeed9aa61065fc7f5cbe2dd609bd93",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2855876,
            "upload_time": "2024-01-23T22:59:32",
            "upload_time_iso_8601": "2024-01-23T22:59:32.381990Z",
            "url": "https://files.pythonhosted.org/packages/68/66/8e6474f0c8dfe29aa4c4bf21c9ba8f1f647c62bb3f45c3b73cacf1b81983/cuatrorpc-0.7.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0fab43f4a33443b34267b0ad0903faf8fb2c801e273b045f195a5e02dc4b5afd",
                "md5": "a9958a56ca689e0feba566dd2f914e11",
                "sha256": "b362fc5a763fea61f39d93f087767ffcdaddc98db7f7e8026038974e8d9a1902"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "a9958a56ca689e0feba566dd2f914e11",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 852166,
            "upload_time": "2024-01-23T22:59:34",
            "upload_time_iso_8601": "2024-01-23T22:59:34.371064Z",
            "url": "https://files.pythonhosted.org/packages/0f/ab/43f4a33443b34267b0ad0903faf8fb2c801e273b045f195a5e02dc4b5afd/cuatrorpc-0.7.2-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "038e572ec847c7abc68eee09ff757d274686872519e28b93e51ed0bfe50c19c7",
                "md5": "52b02c313b0ebbfc799f7c3d95202558",
                "sha256": "f7bb268d737e5f0f071b0559c9d5d02f56f84ad558fd688410a6995017bd026a"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "52b02c313b0ebbfc799f7c3d95202558",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1079222,
            "upload_time": "2024-01-23T22:59:36",
            "upload_time_iso_8601": "2024-01-23T22:59:36.503137Z",
            "url": "https://files.pythonhosted.org/packages/03/8e/572ec847c7abc68eee09ff757d274686872519e28b93e51ed0bfe50c19c7/cuatrorpc-0.7.2-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7631fab2b52401c77530bd8833a9a0df694187537397ef8d34d71991a37003bf",
                "md5": "a28c374a192d5ae4acab9dc9cd306a2b",
                "sha256": "06d9dc77fef7d58ab073f0c190a66bf16a14a61877b3b1fdcf1c79ae2b542da0"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a28c374a192d5ae4acab9dc9cd306a2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2454239,
            "upload_time": "2024-01-23T22:59:38",
            "upload_time_iso_8601": "2024-01-23T22:59:38.515683Z",
            "url": "https://files.pythonhosted.org/packages/76/31/fab2b52401c77530bd8833a9a0df694187537397ef8d34d71991a37003bf/cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c47f82f864645457a2a4a5826083ea201d96046eaa45fe053014b8b9bd243036",
                "md5": "dcbd6502f89c1121be41af45ce59d369",
                "sha256": "1c719becccb92a06c2fc0525976e46f63448e3fb4f5254237b32ed0e0d3afb3e"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "dcbd6502f89c1121be41af45ce59d369",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2736753,
            "upload_time": "2024-01-23T22:59:40",
            "upload_time_iso_8601": "2024-01-23T22:59:40.584994Z",
            "url": "https://files.pythonhosted.org/packages/c4/7f/82f864645457a2a4a5826083ea201d96046eaa45fe053014b8b9bd243036/cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44ee4f317a9c5350541122509dc8a8c3398b376df96cbb3e4c827bc6c9563cf3",
                "md5": "5c84047ea7da05ce3b6fbe9124ea13eb",
                "sha256": "f973531d658b2d6cfd6c1a9b4a0b9ac07cd021b3ca93abc44e6dad63846fa2bc"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5c84047ea7da05ce3b6fbe9124ea13eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2892906,
            "upload_time": "2024-01-23T22:59:43",
            "upload_time_iso_8601": "2024-01-23T22:59:43.586734Z",
            "url": "https://files.pythonhosted.org/packages/44/ee/4f317a9c5350541122509dc8a8c3398b376df96cbb3e4c827bc6c9563cf3/cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64a0d5d95720a82c2a0d3898221a5d5aadf01bf673bd8ad860293120a54f2e3a",
                "md5": "0b0c8c9b12474b65b985904d07bf2662",
                "sha256": "bbba31be45ec12bb996f48fa29159855de120fa82bc6fa47b54fcdb983100651"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0b0c8c9b12474b65b985904d07bf2662",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2855650,
            "upload_time": "2024-01-23T22:59:45",
            "upload_time_iso_8601": "2024-01-23T22:59:45.687763Z",
            "url": "https://files.pythonhosted.org/packages/64/a0/d5d95720a82c2a0d3898221a5d5aadf01bf673bd8ad860293120a54f2e3a/cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d124a5bab4a41b6b989b1dcc7425a2e875e5e1e8ed550cdcece1b69423c023a",
                "md5": "fcb2f8c5a6546769f76003e4e56e4433",
                "sha256": "7379135c4fc105bda0192a3cea8a1ea1a88105588e697f904c05f5ef3ff6ea35"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fcb2f8c5a6546769f76003e4e56e4433",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2702129,
            "upload_time": "2024-01-23T22:59:47",
            "upload_time_iso_8601": "2024-01-23T22:59:47.925015Z",
            "url": "https://files.pythonhosted.org/packages/9d/12/4a5bab4a41b6b989b1dcc7425a2e875e5e1e8ed550cdcece1b69423c023a/cuatrorpc-0.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c42df4a4bd1fe6b16f18a3c1d45a5f529964f2d2313f67cbc5eb118772b77c47",
                "md5": "2b5c4458eac097c0e29dfc9b4487372c",
                "sha256": "441b05962f5b33b2897b9918b04aba29f7e54f17326351e36aef2b6bd85d4e2b"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp39-cp39-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2b5c4458eac097c0e29dfc9b4487372c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2273658,
            "upload_time": "2024-01-23T22:59:50",
            "upload_time_iso_8601": "2024-01-23T22:59:50.037012Z",
            "url": "https://files.pythonhosted.org/packages/c4/2d/f4a4bd1fe6b16f18a3c1d45a5f529964f2d2313f67cbc5eb118772b77c47/cuatrorpc-0.7.2-cp39-cp39-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "431a08474d9148f4a95378c337d9663f54c6b325563ae4e98b2c7592535c877e",
                "md5": "c9f44814330148a40655fe02fbcf75d7",
                "sha256": "604fbbc9561df3c3174238b5af5ffabade2f63a005c10de70768eda2edbac0c6"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c9f44814330148a40655fe02fbcf75d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2594648,
            "upload_time": "2024-01-23T22:59:52",
            "upload_time_iso_8601": "2024-01-23T22:59:52.129339Z",
            "url": "https://files.pythonhosted.org/packages/43/1a/08474d9148f4a95378c337d9663f54c6b325563ae4e98b2c7592535c877e/cuatrorpc-0.7.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ec4f2ea7899c12a936f2aa46db981cd75e0cff9be205827c721faecf9047795",
                "md5": "c7d36d17df8004ed31c26fa98e012ae6",
                "sha256": "110eac481f62250d8aef2b2d9031433e93737841fe22018d81026493db681054"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c7d36d17df8004ed31c26fa98e012ae6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2855526,
            "upload_time": "2024-01-23T22:59:54",
            "upload_time_iso_8601": "2024-01-23T22:59:54.192179Z",
            "url": "https://files.pythonhosted.org/packages/1e/c4/f2ea7899c12a936f2aa46db981cd75e0cff9be205827c721faecf9047795/cuatrorpc-0.7.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0dc7ac3e8d580cb88ce617329c597debe97a0514e1c08da7cfebab3c85dd990a",
                "md5": "af9c8ab38cc9d81381025e4835aba1c0",
                "sha256": "00b405988bdf62e035c6b5d292cd201efb0402dcb2e33f6a9bf19d49e705223a"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "af9c8ab38cc9d81381025e4835aba1c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 852560,
            "upload_time": "2024-01-23T22:59:56",
            "upload_time_iso_8601": "2024-01-23T22:59:56.108457Z",
            "url": "https://files.pythonhosted.org/packages/0d/c7/ac3e8d580cb88ce617329c597debe97a0514e1c08da7cfebab3c85dd990a/cuatrorpc-0.7.2-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f13bc349cc3f23eae04f5bbc469f6ce675143ff4b3746bd8e1b5bf9a5134e63f",
                "md5": "a58a98426bd37a72d66406be0e8a281b",
                "sha256": "7e55d921425c8c25593f2f3c8b5aeb0a8a850334559284aa0d239420f1acfb9a"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a58a98426bd37a72d66406be0e8a281b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1079892,
            "upload_time": "2024-01-23T22:59:58",
            "upload_time_iso_8601": "2024-01-23T22:59:58.386373Z",
            "url": "https://files.pythonhosted.org/packages/f1/3b/c349cc3f23eae04f5bbc469f6ce675143ff4b3746bd8e1b5bf9a5134e63f/cuatrorpc-0.7.2-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed1ae20905defc4e5499110d6b92e303c1f0c3b22e5b6a7e35f1f1f14e717125",
                "md5": "d3c9f6549243b9b35a4b9709b924d7d9",
                "sha256": "d9c545eb963eb9953cb4de0f57305c806b20a49b57ce99c22b68cdd30de89b64"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d3c9f6549243b9b35a4b9709b924d7d9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2736737,
            "upload_time": "2024-01-23T23:00:00",
            "upload_time_iso_8601": "2024-01-23T23:00:00.984233Z",
            "url": "https://files.pythonhosted.org/packages/ed/1a/e20905defc4e5499110d6b92e303c1f0c3b22e5b6a7e35f1f1f14e717125/cuatrorpc-0.7.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41408386a319ce336aeb1ae9db10428c2c345738ed95d35752e27f3ca54f29dd",
                "md5": "3e5257c48c44c557a2769188c34a5b4e",
                "sha256": "252e114e64e39d5be45e86048ebffd2d71713c2f123898641386460e7225c64f"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3e5257c48c44c557a2769188c34a5b4e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2700488,
            "upload_time": "2024-01-23T23:00:04",
            "upload_time_iso_8601": "2024-01-23T23:00:04.618054Z",
            "url": "https://files.pythonhosted.org/packages/41/40/8386a319ce336aeb1ae9db10428c2c345738ed95d35752e27f3ca54f29dd/cuatrorpc-0.7.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a7b6376140ab2f4ee270e07e2255703251f8af7de1eb06e1fbded35ebc4cb03",
                "md5": "acc6be9743583e40319c507e41db5908",
                "sha256": "65cb2e98679c6bd6ba6455a6bc097757e93441837076bb22cf2e0c085e23a44c"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "acc6be9743583e40319c507e41db5908",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2594577,
            "upload_time": "2024-01-23T23:00:07",
            "upload_time_iso_8601": "2024-01-23T23:00:07.624071Z",
            "url": "https://files.pythonhosted.org/packages/4a/7b/6376140ab2f4ee270e07e2255703251f8af7de1eb06e1fbded35ebc4cb03/cuatrorpc-0.7.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "68742e61c23dd6d3875253c76ab8670540c1f76fd2a6ae464c03280f8670819b",
                "md5": "92d590d22f898a0ba75030ff3bee17a1",
                "sha256": "70917460d60fd7f094249f8a653389cb438e458d431cf8df89632e818645542f"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "92d590d22f898a0ba75030ff3bee17a1",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2854625,
            "upload_time": "2024-01-23T23:00:09",
            "upload_time_iso_8601": "2024-01-23T23:00:09.937692Z",
            "url": "https://files.pythonhosted.org/packages/68/74/2e61c23dd6d3875253c76ab8670540c1f76fd2a6ae464c03280f8670819b/cuatrorpc-0.7.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ff00fa4e17cbe3c44dcd97b280169a5fc6581b9cb86d24f5174187c8be70eedf",
                "md5": "3dd9ae9149864007f890191b34e8baaf",
                "sha256": "5f7048dde4db5ca878f998932c24a2a047673d9b995d7148e6a2287570095228"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3dd9ae9149864007f890191b34e8baaf",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2736871,
            "upload_time": "2024-01-23T23:00:12",
            "upload_time_iso_8601": "2024-01-23T23:00:12.406223Z",
            "url": "https://files.pythonhosted.org/packages/ff/00/fa4e17cbe3c44dcd97b280169a5fc6581b9cb86d24f5174187c8be70eedf/cuatrorpc-0.7.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0c9a3df82926935eec9274e924062df90edc167a50dcc572de839b24006139b",
                "md5": "32f615eb454b674316e26f1cbf55ffe7",
                "sha256": "16ce11c61ca54404d517ef30e2a0213445dc1341738414c8915d788307086ae8"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "32f615eb454b674316e26f1cbf55ffe7",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2700677,
            "upload_time": "2024-01-23T23:00:14",
            "upload_time_iso_8601": "2024-01-23T23:00:14.964868Z",
            "url": "https://files.pythonhosted.org/packages/a0/c9/a3df82926935eec9274e924062df90edc167a50dcc572de839b24006139b/cuatrorpc-0.7.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "76b10302d692075350dfaf1b6992da1c663dc92a9565417077cbf9cc71348d47",
                "md5": "a68b90f6ddcf681c7c7ccc307d7557e7",
                "sha256": "2d4bbddd481cef8cf69b19152d5594a37a9073061dd83ee1dbf56f6d3dd6f1da"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a68b90f6ddcf681c7c7ccc307d7557e7",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2594853,
            "upload_time": "2024-01-23T23:00:17",
            "upload_time_iso_8601": "2024-01-23T23:00:17.842741Z",
            "url": "https://files.pythonhosted.org/packages/76/b1/0302d692075350dfaf1b6992da1c663dc92a9565417077cbf9cc71348d47/cuatrorpc-0.7.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "567afeac753e4e9ca4a741619d07fcb5cb37178fd0efc66b4c0b8e553b9bcdc5",
                "md5": "40614b1eb49131053fcbb862965d2e11",
                "sha256": "3fb1187a115e3c4baf5907f784c318b941b5fa866b031b5dd1a94ccefd20dbc0"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "40614b1eb49131053fcbb862965d2e11",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2854727,
            "upload_time": "2024-01-23T23:00:20",
            "upload_time_iso_8601": "2024-01-23T23:00:20.540527Z",
            "url": "https://files.pythonhosted.org/packages/56/7a/feac753e4e9ca4a741619d07fcb5cb37178fd0efc66b4c0b8e553b9bcdc5/cuatrorpc-0.7.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b29464aa6bb7e3945aed1dae1ac81e786cc2f8d41bff1c703edd5858b6bef821",
                "md5": "ce9fad3bbdb5803d9b48ae3cdda9af84",
                "sha256": "5ab2751f59b7de7181e2b0850f5984f18cc3167063f805e075bae1515db670f1"
            },
            "downloads": -1,
            "filename": "cuatrorpc-0.7.2.tar.gz",
            "has_sig": false,
            "md5_digest": "ce9fad3bbdb5803d9b48ae3cdda9af84",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 12580,
            "upload_time": "2024-01-23T23:00:22",
            "upload_time_iso_8601": "2024-01-23T23:00:22.568873Z",
            "url": "https://files.pythonhosted.org/packages/b2/94/64aa6bb7e3945aed1dae1ac81e786cc2f8d41bff1c703edd5858b6bef821/cuatrorpc-0.7.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-23 23:00:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "bleach86",
    "github_project": "CuatroRPC",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "cuatrorpc"
}
        
Elapsed time: 0.17018s