{ "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\nBecause it is based on msgpack, with a back-end in cython, it is lightning fast.\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", "package_url": "https://pypi.org/project/msgpack-rlp/", "platform": "", "project_url": "https://pypi.org/project/msgpack-rlp/", "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/0.6.3/", "requires_dist": null, "requires_python": "", "summary": "MessagePack (de)serializer with Ethereum RLP encoding", "version": "0.6.3" }, "last_serial": 5094895, "releases": { "0.6.0": [ { "comment_text": "", "digests": { "md5": "f6b76519773d4ae246db40228ea08792", "sha256": "10cc6c2f23120fb2fd9adaca332ce111399cfcd25f5924cb9293c0bfc3b1d842" }, "downloads": -1, "filename": "msgpack_rlp-0.6.0-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f6b76519773d4ae246db40228ea08792", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 246025, "upload_time": "2019-01-03T04:45:59", "url": "https://files.pythonhosted.org/packages/bc/69/c2dffbcccdf226bca1ef3643f74408a730bc35c836235b1c76fe5916bbb6/msgpack_rlp-0.6.0-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "e688c2b5e7db7a8d58af04ce2b6b787d", "sha256": "6d526dfd523b8a525670fcfba5c8eef1241b1d0fd9c549db82c41e64c58c9a5a" }, "downloads": -1, "filename": "msgpack_rlp-0.6.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e688c2b5e7db7a8d58af04ce2b6b787d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 265234, "upload_time": "2019-01-03T04:46:02", "url": "https://files.pythonhosted.org/packages/b9/8d/c101639659b753e2d3c4bd7deb1fd382654958e71ecfd7a9b8503fb8cccf/msgpack_rlp-0.6.0-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "26edbd9a4e4b46f64e846604fb9b78f2", "sha256": "7c6df2ffb6bf32c4e13125b14eb21eb65cb68500dfec413e9457b4df36203b1c" }, "downloads": -1, "filename": "msgpack_rlp-0.6.0-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "26edbd9a4e4b46f64e846604fb9b78f2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 245930, "upload_time": "2019-01-03T04:46:04", "url": "https://files.pythonhosted.org/packages/3e/10/7aa96ccd1f9aa0e3c642b6cc90e977ba051a4eda4e1eb57164f4847ff9ce/msgpack_rlp-0.6.0-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "ef3dd7b969e327ef224ca80d70c9c36c", "sha256": "9cf9e8842740cb319f3dbd311d64227d5066ee010297e5e30f9b9f119ccfea74" }, "downloads": -1, "filename": "msgpack_rlp-0.6.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ef3dd7b969e327ef224ca80d70c9c36c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 264241, "upload_time": "2019-01-03T04:46:05", "url": "https://files.pythonhosted.org/packages/3d/06/908cded0faa1f92683eba1a4716f2de351e62c3c5512a6dd665c186693c3/msgpack_rlp-0.6.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ce3dab2402772c14528a5cff3924d769", "sha256": "b2133d1844859dd25b97fff9065cd2ae4812929575b43d76d072063ba565df9a" }, "downloads": -1, "filename": "msgpack_rlp-0.6.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ce3dab2402772c14528a5cff3924d769", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 259605, "upload_time": "2019-01-03T04:46:07", "url": "https://files.pythonhosted.org/packages/b3/31/6424d858f41f6d92f0cc4624ec3bc636afa8d7044967ec923cef8434a30f/msgpack_rlp-0.6.0-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "d60112c8b9bcbac55e97f8113f3eb175", "sha256": "7a3ba754bacc9fad48120c3a16f31c5e1a00cbc99df89a15b4f6a31d7b3ff49b" }, "downloads": -1, "filename": "msgpack_rlp-0.6.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d60112c8b9bcbac55e97f8113f3eb175", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 281114, "upload_time": "2019-01-03T04:46:09", "url": "https://files.pythonhosted.org/packages/83/ee/667f619923f03693946bd7c1f56d4ae8fc6bf9cab2392840ef908e4e63f9/msgpack_rlp-0.6.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "37af3d8a518af062212f572d1276a04d", "sha256": "f7c3880538c2713d2c6ebb1b5f479d2da53c9e3883cc2b37bef3c607aec70304" }, "downloads": -1, "filename": "msgpack_rlp-0.6.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "37af3d8a518af062212f572d1276a04d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 267636, "upload_time": "2019-01-03T04:46:11", "url": "https://files.pythonhosted.org/packages/bc/92/b7f88a13979834f70ee86cc7be093c78d3f8aa1c8acb0d990bba7e4c86ae/msgpack_rlp-0.6.0-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "e1f9f5465b8116af7dbc456513c0d6b4", "sha256": "bf42694049b393ea390a7b3a04b53a7c9bf9fc98ec2d01c1020cd6a7ab7979f0" }, "downloads": -1, "filename": "msgpack_rlp-0.6.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e1f9f5465b8116af7dbc456513c0d6b4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 287551, "upload_time": "2019-01-03T04:46:13", "url": "https://files.pythonhosted.org/packages/68/f4/91c2d1c21066efbb913b88bf30835a624d495617a6a73d414a87a7367e4f/msgpack_rlp-0.6.0-cp36-cp36m-manylinux1_x86_64.whl" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "632ef16325ebac48ee272a712058b9cf", "sha256": "1c208c023cee0164c059830079a6c5e9656b0f697b541b6f834f6b010c00fe30" }, "downloads": -1, "filename": "msgpack_rlp-0.6.1-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "632ef16325ebac48ee272a712058b9cf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 246155, "upload_time": "2019-01-15T02:10:52", "url": "https://files.pythonhosted.org/packages/a3/5d/59945691c76480cd0a1bdde5e7b73e2798167afbd69dd016d75fe9ae7442/msgpack_rlp-0.6.1-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "9db62c8f89aa3425177eae718277c704", "sha256": "841db71ab65395e080e7c52fe217653f56ac9eeec3532596a5d714b99d6abac5" }, "downloads": -1, "filename": "msgpack_rlp-0.6.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9db62c8f89aa3425177eae718277c704", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 265266, "upload_time": "2019-01-15T02:10:54", "url": "https://files.pythonhosted.org/packages/bf/a5/8f92ceb0fe763d2de2a7c6c3844ea896aa65fe89c7617d5a1238ca7a8504/msgpack_rlp-0.6.1-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0f93c4e78ffa74f75fa0d5aeaeb38b6d", "sha256": "e2ddcd15a75c15e5edf38a1d63030ececa1782125b9e2c4b1589c508347a76c9" }, "downloads": -1, "filename": "msgpack_rlp-0.6.1-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0f93c4e78ffa74f75fa0d5aeaeb38b6d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 246021, "upload_time": "2019-01-15T02:10:56", "url": "https://files.pythonhosted.org/packages/02/28/f032de3b99f28b72287a2704c24457e34b661179a85aa15c3e6a4cb26817/msgpack_rlp-0.6.1-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "de275d82c18c0bc3f66cad4f48670a53", "sha256": "bdd6dec3ee2df9ff09c9a30ebb319e36a9e86e50732d89fe8f652bcb5eacc775" }, "downloads": -1, "filename": "msgpack_rlp-0.6.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "de275d82c18c0bc3f66cad4f48670a53", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 264255, "upload_time": "2019-01-15T02:10:58", "url": "https://files.pythonhosted.org/packages/e8/d7/20c556125775e3c4b4c3f9ea0a967c70c4b6dfab3d7e3f67fd75a0147f75/msgpack_rlp-0.6.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6b04067fab32498ba78a4d7276d57c0d", "sha256": "f46d7ef52e4238d72385e67bfced022a428323fba7a8d75ce8cb4ac9589d86be" }, "downloads": -1, "filename": "msgpack_rlp-0.6.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6b04067fab32498ba78a4d7276d57c0d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 259736, "upload_time": "2019-01-15T02:11:00", "url": "https://files.pythonhosted.org/packages/e0/1c/8408cf497c8e5c073555d670cbb3bf6ca70786c81310577527c67fe907de/msgpack_rlp-0.6.1-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "1b034982cc911a96b0ef14bb76fdd094", "sha256": "698b7ab9526f42678f805b9d0df338cbb81aeb1058b67074d072ba1fcb2574b0" }, "downloads": -1, "filename": "msgpack_rlp-0.6.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1b034982cc911a96b0ef14bb76fdd094", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 281242, "upload_time": "2019-01-15T02:11:02", "url": "https://files.pythonhosted.org/packages/65/7d/4f90cd473c98b9fcaeacda6291c5eabf00a4c084c407ad48a956ec383f9e/msgpack_rlp-0.6.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f5e5c972408d8873e90fe768f2254620", "sha256": "330d347e2bb323bcd78cecfdf404eba96fb12ec73b90e0b51c916ebf80675d74" }, "downloads": -1, "filename": "msgpack_rlp-0.6.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f5e5c972408d8873e90fe768f2254620", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 267775, "upload_time": "2019-01-15T02:11:04", "url": "https://files.pythonhosted.org/packages/cc/9c/73b277c8358b73f454629de229383a322fcec5f15b93e18281559059a262/msgpack_rlp-0.6.1-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "c8b325e85b2dcef2369e86ff371f6a40", "sha256": "86632704b24d1d45125c3e75a278c97f77ee070a53dacf9dee47baede6ede8c5" }, "downloads": -1, "filename": "msgpack_rlp-0.6.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c8b325e85b2dcef2369e86ff371f6a40", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 287655, "upload_time": "2019-01-15T02:11:06", "url": "https://files.pythonhosted.org/packages/ca/e6/85c8ab6fcd82a46cbcf35fa3e912db55c59a65d3892b61616b640dc8642c/msgpack_rlp-0.6.1-cp36-cp36m-manylinux1_x86_64.whl" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "c41ed7a4da643d9fc0cdc84f46dc3e50", "sha256": "73188641e04e0d05c8aba94e8e3a021a5fe333528c02750ce1746c8c057be8e9" }, "downloads": -1, "filename": "msgpack_rlp-0.6.3-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c41ed7a4da643d9fc0cdc84f46dc3e50", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 246413, "upload_time": "2019-04-04T06:11:35", "url": "https://files.pythonhosted.org/packages/8b/70/019605a7f8e59c4b3451b39297d8e6a223f3669ae58b827fadfd9d521e98/msgpack_rlp-0.6.3-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "6ae25ee2674ce8336d0dfa424a84f01a", "sha256": "9a8a78723298cb68fff225e83589d03a84f9da01983cb05610193768df3c3862" }, "downloads": -1, "filename": "msgpack_rlp-0.6.3-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6ae25ee2674ce8336d0dfa424a84f01a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 265341, "upload_time": "2019-04-04T06:11:37", "url": "https://files.pythonhosted.org/packages/c4/e9/05053f2e5112efd0c1fd7ad387b0e0b03795038c3f5f9d742595a728e00f/msgpack_rlp-0.6.3-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "16fd6ab56c337e53b9b608adaa094c8a", "sha256": "f2cbd8ad835382620eefccc9ba65fed703fd467c6fa4ca2b1909411b9b9f2b7d" }, "downloads": -1, "filename": "msgpack_rlp-0.6.3-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "16fd6ab56c337e53b9b608adaa094c8a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 246279, "upload_time": "2019-04-04T06:11:39", "url": "https://files.pythonhosted.org/packages/42/05/e8c84dfca380662f508e79f4fff11c14f8d18ba10d311a5f2f848db95591/msgpack_rlp-0.6.3-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "4cedfd85eee8ff95c015e634ca656c03", "sha256": "0282085e9265a2b46be807b984b4234cf116fbce98142f6528114088c1b3c2a3" }, "downloads": -1, "filename": "msgpack_rlp-0.6.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4cedfd85eee8ff95c015e634ca656c03", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 264324, "upload_time": "2019-04-04T06:11:41", "url": "https://files.pythonhosted.org/packages/92/dc/ecc1c877484b073b667bb4aa7d236ceaf6b601b8737dd1c48a222a54949b/msgpack_rlp-0.6.3-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b4ede2d6933926521203c0e256ed5970", "sha256": "61aa00123fe63bc993c9f0b3a4d08fde64cebb76c06a46e3996ac60da461a6d6" }, "downloads": -1, "filename": "msgpack_rlp-0.6.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b4ede2d6933926521203c0e256ed5970", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 259700, "upload_time": "2019-04-04T06:11:43", "url": "https://files.pythonhosted.org/packages/9c/6a/8a9fe5a032079ef36aeab90b5c1e64ad35f5221d559b5eb12a3e434d7c45/msgpack_rlp-0.6.3-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "86b41e901f4cf839429f840344b81469", "sha256": "f36e84856cc7ab3bc471a122378e9593c1f414ebd40c250c29d1fd6edde301fb" }, "downloads": -1, "filename": "msgpack_rlp-0.6.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "86b41e901f4cf839429f840344b81469", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 281563, "upload_time": "2019-04-04T06:11:45", "url": "https://files.pythonhosted.org/packages/94/5f/a31a960b6c376124c7c7a47512b8cc187538d4a80690a8ceeed376b7ffef/msgpack_rlp-0.6.3-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e2bfd84902799898526529745bc767cc", "sha256": "5131666ee82477ba6da71e6c7d3e30d963130817254ac2e7f7dce23bc084ecd6" }, "downloads": -1, "filename": "msgpack_rlp-0.6.3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e2bfd84902799898526529745bc767cc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 268207, "upload_time": "2019-04-04T06:11:49", "url": "https://files.pythonhosted.org/packages/e0/c9/2247b4f0573c5d8a3a9098a026af6f14654d093f5f906735449f6d0b1001/msgpack_rlp-0.6.3-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "ad6891c951cc125745971462881afcba", "sha256": "5184316afb3ecfeb05033bd1a5e11ca1ca3a1bf22aaf314db1605a05089a9c90" }, "downloads": -1, "filename": "msgpack_rlp-0.6.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ad6891c951cc125745971462881afcba", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 288182, "upload_time": "2019-04-04T06:11:52", "url": "https://files.pythonhosted.org/packages/cd/2e/6a8c8d37990e5395cfea99578e8bd016299c03d400de26b3f06b15868063/msgpack_rlp-0.6.3-cp36-cp36m-manylinux1_x86_64.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c41ed7a4da643d9fc0cdc84f46dc3e50", "sha256": "73188641e04e0d05c8aba94e8e3a021a5fe333528c02750ce1746c8c057be8e9" }, "downloads": -1, "filename": "msgpack_rlp-0.6.3-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c41ed7a4da643d9fc0cdc84f46dc3e50", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 246413, "upload_time": "2019-04-04T06:11:35", "url": "https://files.pythonhosted.org/packages/8b/70/019605a7f8e59c4b3451b39297d8e6a223f3669ae58b827fadfd9d521e98/msgpack_rlp-0.6.3-cp27-cp27m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "6ae25ee2674ce8336d0dfa424a84f01a", "sha256": "9a8a78723298cb68fff225e83589d03a84f9da01983cb05610193768df3c3862" }, "downloads": -1, "filename": "msgpack_rlp-0.6.3-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6ae25ee2674ce8336d0dfa424a84f01a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 265341, "upload_time": "2019-04-04T06:11:37", "url": "https://files.pythonhosted.org/packages/c4/e9/05053f2e5112efd0c1fd7ad387b0e0b03795038c3f5f9d742595a728e00f/msgpack_rlp-0.6.3-cp27-cp27m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "16fd6ab56c337e53b9b608adaa094c8a", "sha256": "f2cbd8ad835382620eefccc9ba65fed703fd467c6fa4ca2b1909411b9b9f2b7d" }, "downloads": -1, "filename": "msgpack_rlp-0.6.3-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "16fd6ab56c337e53b9b608adaa094c8a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 246279, "upload_time": "2019-04-04T06:11:39", "url": "https://files.pythonhosted.org/packages/42/05/e8c84dfca380662f508e79f4fff11c14f8d18ba10d311a5f2f848db95591/msgpack_rlp-0.6.3-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "4cedfd85eee8ff95c015e634ca656c03", "sha256": "0282085e9265a2b46be807b984b4234cf116fbce98142f6528114088c1b3c2a3" }, "downloads": -1, "filename": "msgpack_rlp-0.6.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4cedfd85eee8ff95c015e634ca656c03", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 264324, "upload_time": "2019-04-04T06:11:41", "url": "https://files.pythonhosted.org/packages/92/dc/ecc1c877484b073b667bb4aa7d236ceaf6b601b8737dd1c48a222a54949b/msgpack_rlp-0.6.3-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b4ede2d6933926521203c0e256ed5970", "sha256": "61aa00123fe63bc993c9f0b3a4d08fde64cebb76c06a46e3996ac60da461a6d6" }, "downloads": -1, "filename": "msgpack_rlp-0.6.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b4ede2d6933926521203c0e256ed5970", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 259700, "upload_time": "2019-04-04T06:11:43", "url": "https://files.pythonhosted.org/packages/9c/6a/8a9fe5a032079ef36aeab90b5c1e64ad35f5221d559b5eb12a3e434d7c45/msgpack_rlp-0.6.3-cp35-cp35m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "86b41e901f4cf839429f840344b81469", "sha256": "f36e84856cc7ab3bc471a122378e9593c1f414ebd40c250c29d1fd6edde301fb" }, "downloads": -1, "filename": "msgpack_rlp-0.6.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "86b41e901f4cf839429f840344b81469", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 281563, "upload_time": "2019-04-04T06:11:45", "url": "https://files.pythonhosted.org/packages/94/5f/a31a960b6c376124c7c7a47512b8cc187538d4a80690a8ceeed376b7ffef/msgpack_rlp-0.6.3-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e2bfd84902799898526529745bc767cc", "sha256": "5131666ee82477ba6da71e6c7d3e30d963130817254ac2e7f7dce23bc084ecd6" }, "downloads": -1, "filename": "msgpack_rlp-0.6.3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e2bfd84902799898526529745bc767cc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 268207, "upload_time": "2019-04-04T06:11:49", "url": "https://files.pythonhosted.org/packages/e0/c9/2247b4f0573c5d8a3a9098a026af6f14654d093f5f906735449f6d0b1001/msgpack_rlp-0.6.3-cp36-cp36m-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "ad6891c951cc125745971462881afcba", "sha256": "5184316afb3ecfeb05033bd1a5e11ca1ca3a1bf22aaf314db1605a05089a9c90" }, "downloads": -1, "filename": "msgpack_rlp-0.6.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ad6891c951cc125745971462881afcba", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 288182, "upload_time": "2019-04-04T06:11:52", "url": "https://files.pythonhosted.org/packages/cd/2e/6a8c8d37990e5395cfea99578e8bd016299c03d400de26b3f06b15868063/msgpack_rlp-0.6.3-cp36-cp36m-manylinux1_x86_64.whl" } ] }