{ "info": { "author": "INADA Naoki, Tommy Mckinnon", "author_email": "songofacandy@gmail.com, admin@hyperevo.com", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy" ], "description": "=================================================\nMessagePack with Ethereum RLP encoding for Python\n=================================================\n\nThis library uses a modified version of msgpack to encode and decode binary\ndata according to the Ethereum RLP specification here https://github.com/ethereum/wiki/wiki/RLP\n\nThis is the first release of this library, and there are likely still bugs. Use at your own risk.\n\nInstall\n-------\n\n::\n\n$ pip install msgpack-rlp-python\n\nUSAGE\n-------\n\nRLP doesn't specify the variable type, so all encoded data is decoded to a bytestring representation.\nIn order to specify the variable types, we use sedes. Sedes are ways of telling\nthe program what variable types you expect from the encoded data. In this version\nthere are only 2 supported sedes: bytes (represented by the integer 0) and integers (represented by the integer 1). These sedes can also contained\nwithin lists or nested lists. In order to show that the sedes live within lists or nested\nlists, we use the standard python list notation. See below.\n\n- All lists will be decoded to tuples by default. To decode to a list set use_list = True\n\n- Sedes are only used when decoding. This library is smart enough to know what variable types are being encoded, and will convert them to the RLP spec correctly.\n\n- This is meant to be a stand-in replacement of msgpack. So the package to import is still called msgpack.\n\n\nExample sedes:\n\n.. code-block:: pycon\n\n var = b'\\x01'\n sede = 0 # A bytestring\n\n var = 12381239\n sede = 1 # An integer\n\n var = [b'\\x01', b'\\x02', b'\\x03', b'\\x04']\n sede = [0] # A list of bytestrings\n\n var = [12312,1234,213412,213421]\n sede = [1] # A list of integers\n\n var = [b'\\x01', [12312,1234]]\n sede = [0,[1]] # Different types, and nested lists\n\n\nExample usage without sedes. This will always decode to bytestrings.\n\n.. code-block:: pycon\n\n >>> import msgpack\n >>> msgpack.packb([1, 2, 3])\n 'b'\\xc3\\x01\\x02\\x03''\n >>> msgpack.unpackb(_)\n (b'\\x01', b'\\x02', b'\\x03')\n\n >>> msgpack.packb([1, 2, 3])\n 'b'\\xc3\\x01\\x02\\x03''\n >>> msgpack.unpackb(_, use_list = True)\n [b'\\x01', b'\\x02', b'\\x03']\n\nExample usage with sedes. This will decode to the variable types that you encoded from.\n\n.. code-block:: pycon\n\n >>> import msgpack\n >>> msgpack.packb([1, 2, 3])\n 'b'\\xc3\\x01\\x02\\x03''\n >>> msgpack.unpackb(_)\n (b'\\x01', b'\\x02', b'\\x03')\n\n >>> msgpack.packb([1, 2, 3])\n 'b'\\xc3\\x01\\x02\\x03''\n >>> msgpack.unpackb(_, sedes=[1], use_list=True)\n [1, 2, 3]\n\n >>> msgpack.packb([b'\\x01', [12312,1234]])\n b'\\xc8\\x01\\xc6\\x820\\x18\\x82\\x04\\xd2'\n >>> msgpack.unpackb(_, sedes=[0,[1]], use_list=True)\n [b'\\x01', [12312, 1234]]\n\n >>> msgpack.packb([b'\\x01', [12312,1234]])\n b'\\xc8\\x01\\xc6\\x820\\x18\\x82\\x04\\xd2'\n >>> msgpack.unpackb(_, sedes=[0,[1]], use_list=True)\n [b'\\x01', [12312, 1234]]\n\n\n\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://heliosprotocol.io/", "keywords": "", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "msgpack-rlp-python", "package_url": "https://pypi.org/project/msgpack-rlp-python/", "platform": "", "project_url": "https://pypi.org/project/msgpack-rlp-python/", "project_urls": { "Homepage": "https://heliosprotocol.io/", "Source": "https://github.com/Helios-Protocol/msgpack-rlp-python", "Tracker": "https://github.com/Helios-Protocol/msgpack-rlp-python/issues" }, "release_url": "https://pypi.org/project/msgpack-rlp-python/0.5.8/", "requires_dist": null, "requires_python": "", "summary": "MessagePack (de)serializer with Ethereum RLP encoding", "version": "0.5.8" }, "last_serial": 4643029, "releases": { "0.5.7": [ { "comment_text": "", "digests": { "md5": "9dbb601b7dda884c3454ac9b837e037d", "sha256": "8a2876dfa320f45ed3ac3bce37a547ebf5edbe2ea8b76dd9798ad08b75aa6d17" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.7-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9dbb601b7dda884c3454ac9b837e037d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14081, "upload_time": "2018-12-29T02:15:26", "url": "https://files.pythonhosted.org/packages/ad/79/3e53c709de60de2354e7fa09f5664bbdc99053991558196ef8e3f6476117/msgpack_rlp_python-0.5.7-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "a921647cdac59acb58ab8087d7a52a8d", "sha256": "42ee4742e02a4c3cd84073596b38ce7ba85255ca279ef20074377fec818b85bf" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.7-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a921647cdac59acb58ab8087d7a52a8d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14083, "upload_time": "2018-12-29T02:15:28", "url": "https://files.pythonhosted.org/packages/b8/1d/519b8a423e140cf36a717e2901d54be4c74c52dbff9cc469403dd3330a66/msgpack_rlp_python-0.5.7-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "164e4123177bad2e70c4a466b730f126", "sha256": "1e8d9bd5932c43ab74eb41ffc381e58974bec1592e071cb64d0eb9e1aca14198" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.7-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "164e4123177bad2e70c4a466b730f126", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14080, "upload_time": "2018-12-29T02:15:30", "url": "https://files.pythonhosted.org/packages/6b/1f/c50ff5187459ca0aab9cd40c459016548461d43e7806187106513f202e55/msgpack_rlp_python-0.5.7-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "c4563dcf3442935e338a5cd29c85bf8c", "sha256": "ee43bcaff8f8dbb7bc07c4bdaeb4375954e77f6284a8b77876935d6769f16c4e" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.7-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c4563dcf3442935e338a5cd29c85bf8c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14083, "upload_time": "2018-12-29T02:15:31", "url": "https://files.pythonhosted.org/packages/c0/44/d19479314db9fe5534064010bed9218907d2b0b779ae3639b52cc8bfdd21/msgpack_rlp_python-0.5.7-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fe9407fd413d0040633c0d5948461da5", "sha256": "de41c5ff98991f6c7190227bb40facf2d8918a87d746597e2491115512a8f8d4" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.7-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fe9407fd413d0040633c0d5948461da5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 14080, "upload_time": "2018-12-29T02:15:33", "url": "https://files.pythonhosted.org/packages/6d/24/73e66a05a34007743d6ef3698221e0004f0314670b21633d96e01ee09c1b/msgpack_rlp_python-0.5.7-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "bf4919325f11f67822aa82118574f52b", "sha256": "1350e587c97345b870f71d512ed03e3c1c6f306d54873dd875abe26215954de5" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.7-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bf4919325f11f67822aa82118574f52b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 14081, "upload_time": "2018-12-29T02:15:34", "url": "https://files.pythonhosted.org/packages/0c/98/7c6b3a4d9ec2e622c4aec6c3d1118841f1d8a7a9945232d24dc822e46649/msgpack_rlp_python-0.5.7-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "28978795a6739800898539ec45fc5c39", "sha256": "ea0c9a0e39233e8301961848de2d140d17af3f8a45a4fe02948cef62509da413" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.7-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "28978795a6739800898539ec45fc5c39", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14082, "upload_time": "2018-12-29T02:15:36", "url": "https://files.pythonhosted.org/packages/43/9a/abcd511561ea7367d0a86131d844415846e554ea4bb86392760cc3240d32/msgpack_rlp_python-0.5.7-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "9ee707771b71a83ef9c564227cacf836", "sha256": "48491d3f6e05225d739d9bcf8a7e738e4b1e9b6aeae237ffbe04e5773793828e" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.7-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9ee707771b71a83ef9c564227cacf836", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14082, "upload_time": "2018-12-29T02:15:37", "url": "https://files.pythonhosted.org/packages/df/a1/5fd96f7a18dbfba8c2bd5ef3b827ae704414ce5e5d254eefa31971eaf702/msgpack_rlp_python-0.5.7-cp36-cp36m-manylinux1_x86_64.whl" } ], "0.5.8": [ { "comment_text": "", "digests": { "md5": "9a8ff5e62351ba625351f1b1820e90d6", "sha256": "84bcec969d4ed792512bacf7187f445d427d3c6f1c137d2338afa702d808a0f6" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.8-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9a8ff5e62351ba625351f1b1820e90d6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 245972, "upload_time": "2018-12-29T02:35:46", "url": "https://files.pythonhosted.org/packages/d1/88/77d170709042066bc493888e5128a594af16f2f88ab71859c09055bf4707/msgpack_rlp_python-0.5.8-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "a1aad80da76a2a413330b4b3fc20c3b5", "sha256": "1e81de71501cfbd9bcd28b6bbd2d7d03110a3cd8a91a7a976ac6367fb0527400" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.8-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a1aad80da76a2a413330b4b3fc20c3b5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 265182, "upload_time": "2018-12-29T02:35:48", "url": "https://files.pythonhosted.org/packages/15/b1/08aaaf08048a54ced6f51f8cc6ae5f7841107698aff9212bb88f324c2e0d/msgpack_rlp_python-0.5.8-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "455c307a0c2a49a75481cd6eb5db0516", "sha256": "87f6b855e06527ac1bd2ce9a017dda7148eb2a10c03e9c94f14a84d83b4b12c8" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.8-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "455c307a0c2a49a75481cd6eb5db0516", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 245883, "upload_time": "2018-12-29T02:35:50", "url": "https://files.pythonhosted.org/packages/88/01/36e36cc5f14ff5e91515dc08a9fac6b9f4f46f71d1cc57e70a0fe5d5967f/msgpack_rlp_python-0.5.8-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "6bd0849c6ddaf3ffe9b174979b058304", "sha256": "b74e7b253140f65efeaa33f49b73f3899fe5f94a6ee78553362f3e0ac3a31da5" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.8-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6bd0849c6ddaf3ffe9b174979b058304", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 264177, "upload_time": "2018-12-29T02:35:52", "url": "https://files.pythonhosted.org/packages/2b/e2/d76db300c236a425b76ed40e403d3e71e3c0d165293c76dade9c21fef4e7/msgpack_rlp_python-0.5.8-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2e56dbdc43c62350551a5bfe430437a2", "sha256": "8ea96f6ec42401ca339957586b60893f1175265f73ba80f821f3b04991d3b1e3" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.8-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2e56dbdc43c62350551a5bfe430437a2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 259538, "upload_time": "2018-12-29T02:35:54", "url": "https://files.pythonhosted.org/packages/dc/83/ae013131cf3559fa34d741b1b6e24591da97bf5350bdd6290dc228997993/msgpack_rlp_python-0.5.8-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "b99a18fedcfa2011be05d21bb15da6a6", "sha256": "60e080a73d0b0ecf34474770f0eb61418dd66b240f0f9187c1659579138e9160" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.8-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b99a18fedcfa2011be05d21bb15da6a6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 281026, "upload_time": "2018-12-29T02:35:56", "url": "https://files.pythonhosted.org/packages/a3/cb/57c3ea4e79ddfde3a85d8b280e0ee897ca0876a8b1523f92ccf70659429c/msgpack_rlp_python-0.5.8-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c609bf3cc28818a7f1d2444c1a8e1db6", "sha256": "758a93168a799470666a0c0187c2f30b7f5632f4db16366d7826ebce4385c14b" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.8-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c609bf3cc28818a7f1d2444c1a8e1db6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 267570, "upload_time": "2018-12-29T02:35:58", "url": "https://files.pythonhosted.org/packages/5b/7e/63117c57c297920a8ff276f1fa129bd8925612376894f74f12dfcfb9e780/msgpack_rlp_python-0.5.8-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "b90f1f4cc4e8f84157e011dc4bf3de52", "sha256": "147b17f3cdb526f96e24aeb855c6e6d7da23b7964620b88b84c35294ad3e9df7" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.8-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b90f1f4cc4e8f84157e011dc4bf3de52", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 287499, "upload_time": "2018-12-29T02:36:00", "url": "https://files.pythonhosted.org/packages/03/93/85e53cf571882fd855f4a6d8f2fb12d8c6d791a7894243e9d5621c49e623/msgpack_rlp_python-0.5.8-cp36-cp36m-manylinux1_x86_64.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9a8ff5e62351ba625351f1b1820e90d6", "sha256": "84bcec969d4ed792512bacf7187f445d427d3c6f1c137d2338afa702d808a0f6" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.8-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9a8ff5e62351ba625351f1b1820e90d6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 245972, "upload_time": "2018-12-29T02:35:46", "url": "https://files.pythonhosted.org/packages/d1/88/77d170709042066bc493888e5128a594af16f2f88ab71859c09055bf4707/msgpack_rlp_python-0.5.8-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "a1aad80da76a2a413330b4b3fc20c3b5", "sha256": "1e81de71501cfbd9bcd28b6bbd2d7d03110a3cd8a91a7a976ac6367fb0527400" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.8-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a1aad80da76a2a413330b4b3fc20c3b5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 265182, "upload_time": "2018-12-29T02:35:48", "url": "https://files.pythonhosted.org/packages/15/b1/08aaaf08048a54ced6f51f8cc6ae5f7841107698aff9212bb88f324c2e0d/msgpack_rlp_python-0.5.8-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "455c307a0c2a49a75481cd6eb5db0516", "sha256": "87f6b855e06527ac1bd2ce9a017dda7148eb2a10c03e9c94f14a84d83b4b12c8" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.8-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "455c307a0c2a49a75481cd6eb5db0516", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 245883, "upload_time": "2018-12-29T02:35:50", "url": "https://files.pythonhosted.org/packages/88/01/36e36cc5f14ff5e91515dc08a9fac6b9f4f46f71d1cc57e70a0fe5d5967f/msgpack_rlp_python-0.5.8-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "6bd0849c6ddaf3ffe9b174979b058304", "sha256": "b74e7b253140f65efeaa33f49b73f3899fe5f94a6ee78553362f3e0ac3a31da5" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.8-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6bd0849c6ddaf3ffe9b174979b058304", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 264177, "upload_time": "2018-12-29T02:35:52", "url": "https://files.pythonhosted.org/packages/2b/e2/d76db300c236a425b76ed40e403d3e71e3c0d165293c76dade9c21fef4e7/msgpack_rlp_python-0.5.8-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2e56dbdc43c62350551a5bfe430437a2", "sha256": "8ea96f6ec42401ca339957586b60893f1175265f73ba80f821f3b04991d3b1e3" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.8-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2e56dbdc43c62350551a5bfe430437a2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 259538, "upload_time": "2018-12-29T02:35:54", "url": "https://files.pythonhosted.org/packages/dc/83/ae013131cf3559fa34d741b1b6e24591da97bf5350bdd6290dc228997993/msgpack_rlp_python-0.5.8-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "b99a18fedcfa2011be05d21bb15da6a6", "sha256": "60e080a73d0b0ecf34474770f0eb61418dd66b240f0f9187c1659579138e9160" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.8-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b99a18fedcfa2011be05d21bb15da6a6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 281026, "upload_time": "2018-12-29T02:35:56", "url": "https://files.pythonhosted.org/packages/a3/cb/57c3ea4e79ddfde3a85d8b280e0ee897ca0876a8b1523f92ccf70659429c/msgpack_rlp_python-0.5.8-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c609bf3cc28818a7f1d2444c1a8e1db6", "sha256": "758a93168a799470666a0c0187c2f30b7f5632f4db16366d7826ebce4385c14b" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.8-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c609bf3cc28818a7f1d2444c1a8e1db6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 267570, "upload_time": "2018-12-29T02:35:58", "url": "https://files.pythonhosted.org/packages/5b/7e/63117c57c297920a8ff276f1fa129bd8925612376894f74f12dfcfb9e780/msgpack_rlp_python-0.5.8-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "b90f1f4cc4e8f84157e011dc4bf3de52", "sha256": "147b17f3cdb526f96e24aeb855c6e6d7da23b7964620b88b84c35294ad3e9df7" }, "downloads": -1, "filename": "msgpack_rlp_python-0.5.8-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b90f1f4cc4e8f84157e011dc4bf3de52", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 287499, "upload_time": "2018-12-29T02:36:00", "url": "https://files.pythonhosted.org/packages/03/93/85e53cf571882fd855f4a6d8f2fb12d8c6d791a7894243e9d5621c49e623/msgpack_rlp_python-0.5.8-cp36-cp36m-manylinux1_x86_64.whl" } ] }