{ "info": { "author": "Piper Merriam", "author_email": "pipermerriam@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4" ], "description": "# Ethereum IPC Client\n\n[![Build Status](https://travis-ci.org/pipermerriam/ethereum-ipc-client.png)](https://travis-ci.org/pipermerriam/ethereum-ipc-client)\n[![Documentation Status](https://readthedocs.org/projects/ethereum-ipc-client/badge/?version=latest)](https://readthedocs.org/projects/ethereum-ipc-client/?badge=latest)\n[![PyPi version](https://pypip.in/v/ethereum-ipc-client/badge.png)](https://pypi.python.org/pypi/ethereum-ipc-client)\n[![PyPi downloads](https://pypip.in/d/ethereum-ipc-client/badge.png)](https://pypi.python.org/pypi/ethereum-ipc-client)\n \n\nPython client for Ethereum over IPC\n\n## Installation\n\nInstall with `pip`\n\n```bash\n$ pip install ethereum-ipc-client\n```\n\n## Basic Usage\n\nAssuming you have a go-ethereum node running with the default settings then you\nshould be able to simply import and instantiate the client.\n\n\n```python\n>>> from eth_ipc_client import Client\n>>> client = Client()\n>>> client.get_coinbase()\n... '0xd3cda913deb6f67967b99d67acdfa1712c293601'\n```\n\nIf you are running with a non-default data directory, the client will require\nyou to specify the path to the ipc socket.\n\n```python\n>>> from eth_ipc_client import Client\n>>> client = Client(\"/data/ethereum/geth.ipc\")\n>>> client.get_coinbase()\n... '0xd3cda913deb6f67967b99d67acdfa1712c293601'\n```\n\n## API\n\n### `Client.get_coinbase()`\n\n> https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_coinbase\n\nReturns the hex encoded coinbase.\n\n### `Client.get_gas_price()`\n\n> https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_gasprice\n\nReturns the gas price in wei as an integer\n\n### `Client.get_balance(address, block=\"latest\")`\n\n> https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_getbalance\n\n* **address**: The hex encoded address to lookup the balance for.\n* **block**: The block to use for the lookup.\n\nReturns the account balance for the address in wei as an integer.\n\n### `Client.get_code(address, block=\"latest\")`\n\n> https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_getcode\n\n* **address**: The hex encoded address to lookup the code for.\n* **block**: The block to use for the lookup.\n\nReturns the code at the given address.\n\n### `Client.call(_from=None, to=None, gas=None, gas_price=None, value=0, data=None, block=\"latest\")`\n\n> https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_call\n\n* **_from**: The hex encoded address to use as the source for the call.\n* **to**: The hex encoded address of the contract for the call.\n* **gas**: Integer gas alotment for the call.\n* **gas_price**: Integer gas price in wei.\n* **value**: Integer amount in wei to send with the call.\n* **data**: The call data.\n\nReturns the call response.\n\n### `Client.send_transaction(_from=None, to=None, gas=None, gas_price=None, value=0, data=None)\n\nhttps://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sendtransaction\n\n* **_from**: The hex encoded address to use as the source for the transaction.\n* **to**: The hex encoded address of the contract for the transaction.\n* **gas**: Integer gas alotment for the transaction.\n* **gas_price**: Integer gas price in wei.\n* **value**: Integer amount in wei to send with the transaction.\n* **data**: The transaction data.\n\n### `Client.get_transaction_receipt(txn_hash)`\n\n> https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_gettransactionreceipt\n\n* **txn_hash**: The hex encoded transaction hash to lookup.\n\nReturns a dictionary of the transaction receipt or `None` if no receipt is\nfound.\n\n* **transactionHash**: hex encoded hash of the transaction.\n* **transactionIndex**: integer of the transactions index position in the block.\n* **blockHash**: hex encoded hash of the block where this transaction was in.\n* **blockNumber**: integer block number where this transaction was in.\n* **cumulativeGasUsed**: The total amount of gas used when this transaction was executed in the block.\n* **gasUsed**: The amount of gas used by this specific transaction alone.\n* **contractAddress**: The contract address created, if the transaction was a contract creation, otherwise null.\n* **logs**: list of log objects, which this transaction generated\n\n\n### `Client.get_transaction_by_hash(txn_hash)`\n\n> https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_gettransactionbyhash\n\n* **txn_hash**: The hex encoded transaction hash to lookup.\n\nReturns a dictionary of the transaction values or `None` if no transaction is\nfound.\n\n * **hash**: DATA, 32 Bytes - hash of the transaction.\n * **nonce**: QUANTITY - the number of transactions made by the sender prior to this one.\n * **blockHash**: DATA, 32 Bytes - hash of the block where this transaction was in. null when its pending.\n * **blockNumber**: QUANTITY - block number where this transaction was in. null when its pending.\n * **transactionIndex**: QUANTITY - integer of the transactions index position in the block. null when its pending.\n * **from**: DATA, 20 Bytes - address of the sender.\n * **to**: DATA, 20 Bytes - address of the receiver. null when its a contract creation transaction.\n * **value**: QUANTITY - value transferred in Wei.\n * **gasPrice**: QUANTITY - gas price provided by the sender in Wei.\n * **gas**: QUANTITY - gas provided by the sender.\n * **input**: DATA - the data send along with the transaction.\n\n\n### `Client.get_block_number()`\n\n> https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_blocknumber\n\nReturns the number of the most recent block.\n\n\n### `Client.get_accounts()`\n\n> https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_accounts\n\nReturns a list of the addresses owned by the client.\n\n\n### `Client.new_filter(from_block=None, to_block=None, address=None, topics=None)`\n\n> https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_newfilter\n\n\n### `Client.new_block_filter()`\n\n> https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_newblockfilter\n\n\n### `Client.new_pending_transaction_filter()`\n\n> https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_newpendingtransactionfilter\n\n\n### `Client.uninstall_filter(filter_id)`\n\n> https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_uninstallFilter\n\n\n### `Client.get_filter_changes(filter_id)`\n\n> https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_getfilterchanges\n\n\n### `Client.get_filter_logs(filter_id)`\n\n> https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_getfilterlogs\n\n\n### `Client.get_logs(from_block=None, to_block=None, address=None, topics=None)`\n\n> https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_getlogs\n\n\n## Helpers\n\n### `Client.get_max_gas()`\n\nReturns the gas limit from the latest block\n\n\n### `Client.wait_for_transaction(txn_hash, max_wait=60)`\n\nBlocks for up to `max_wait` seconds, polling for the transaction receipt for\nthe provided `txn_hash`. Returns the transaction hash.\n\n\n### `Client.wait_for_block(block_number, max_wait=60)`\n\nBlocks for up to `max_wait` seconds, polling the ipc server until the block\nspecified by `block_number` is seen. Returns the block.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/pipermerriam/ethereum-ipc-client", "keywords": "ethereum", "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "ethereum-ipc-client", "package_url": "https://pypi.org/project/ethereum-ipc-client/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/ethereum-ipc-client/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/pipermerriam/ethereum-ipc-client" }, "release_url": "https://pypi.org/project/ethereum-ipc-client/0.1.9/", "requires_dist": null, "requires_python": null, "summary": "Ethereum IPC Client", "version": "0.1.9" }, "last_serial": 1888808, "releases": { "0.1.0": [ { "comment_text": "built for Darwin-15.2.0", "digests": { "md5": "c2950da8a0fda05253cc7fa70f73df68", "sha256": "e6141382b6edbd2ed021fc37238571f6dbcddbc17281aeeb6f07dff5f263ac51" }, "downloads": -1, "filename": "ethereum-ipc-client-0.1.0.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "c2950da8a0fda05253cc7fa70f73df68", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 4836, "upload_time": "2015-12-31T21:05:19", "url": "https://files.pythonhosted.org/packages/de/a5/9bb892390bc770982f2a95cd919d7fdabb04e3d17af650a003c67f5ea319/ethereum-ipc-client-0.1.0.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "4ba2ddab8776521f10b6704b329b4505", "sha256": "9b9cc5af75d945fc1c5fd0c69e97575614d557f7bb66083a8617c484648c8dee" }, "downloads": -1, "filename": "ethereum_ipc_client-0.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "4ba2ddab8776521f10b6704b329b4505", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8367, "upload_time": "2015-12-31T21:05:30", "url": "https://files.pythonhosted.org/packages/79/35/e9dbae6c2935d8c2e87bf4e0d3a0f3f75bd4a2b693b49a2e7513c2f0b3eb/ethereum_ipc_client-0.1.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fc9ce05a79a399ef131028233f63f71e", "sha256": "a3199bb8dfda8a95c5d02e9cbca4541f70c310d8c0e4fb3f181123208dbfa457" }, "downloads": -1, "filename": "ethereum-ipc-client-0.1.0.tar.gz", "has_sig": false, "md5_digest": "fc9ce05a79a399ef131028233f63f71e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6397, "upload_time": "2015-12-31T21:03:31", "url": "https://files.pythonhosted.org/packages/69/42/0e9ea9656c97113683128441090a9578a7fcb084acdbd5844b0928fc772d/ethereum-ipc-client-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "built for Darwin-15.2.0", "digests": { "md5": "8fd7db4d539ce1d700fd15d17438c5c9", "sha256": "9c254a4dd9bd8f49e0aaca329e6eda8aaaf1812368f7b289e6afb34cf60046d8" }, "downloads": -1, "filename": "ethereum-ipc-client-0.1.1.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "8fd7db4d539ce1d700fd15d17438c5c9", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 4838, "upload_time": "2015-12-31T21:06:24", "url": "https://files.pythonhosted.org/packages/33/b2/17d9b74feeec132f1050d07b9742abfa20e3a2bda6a2ce449d26f297a6f4/ethereum-ipc-client-0.1.1.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "91462574e93696d6dfb54b0de233bc29", "sha256": "0ca3eb16c546aa4f9eb9f98d1b4c1f74d6b747e12ba693cf0df843f6c34e9b10" }, "downloads": -1, "filename": "ethereum_ipc_client-0.1.1-py2-none-any.whl", "has_sig": false, "md5_digest": "91462574e93696d6dfb54b0de233bc29", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8371, "upload_time": "2015-12-31T21:06:30", "url": "https://files.pythonhosted.org/packages/3a/9c/92275b5ac6069f756b29b951c2c3b2a050c179b813e870b5f0514274c7d7/ethereum_ipc_client-0.1.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "57efbe5c2883618798fb6388e8016226", "sha256": "f7448761a7ff0f2c952fbed6385279455765ba3db01ff9446ccbfa5d8e741e9a" }, "downloads": -1, "filename": "ethereum-ipc-client-0.1.1.tar.gz", "has_sig": false, "md5_digest": "57efbe5c2883618798fb6388e8016226", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6395, "upload_time": "2015-12-31T21:06:18", "url": "https://files.pythonhosted.org/packages/a8/93/d79ef922198469786b8dd27f31a342e0f2f8530fbfbb7e5d106d906ed6fa/ethereum-ipc-client-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "built for Darwin-15.2.0", "digests": { "md5": "aa5134ac45149483828809f8be92729b", "sha256": "f8cac19c4ca5b7b3182cfa25c7159cb5fabd634e6ce3b18fb3ddaf395325e774" }, "downloads": -1, "filename": "ethereum-ipc-client-0.1.2.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "aa5134ac45149483828809f8be92729b", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 5184, "upload_time": "2015-12-31T23:31:08", "url": "https://files.pythonhosted.org/packages/e2/38/5d51c667c598c122dec8228c8afe185d1d22ea53d1ea7790639316f9b442/ethereum-ipc-client-0.1.2.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "9d483f1eef33ace04a01924e6a15967d", "sha256": "92c145ef71091e32918813b573a38569977e533725dbbc92e44492c08f1e8f4a" }, "downloads": -1, "filename": "ethereum_ipc_client-0.1.2-py2-none-any.whl", "has_sig": false, "md5_digest": "9d483f1eef33ace04a01924e6a15967d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8668, "upload_time": "2015-12-31T23:31:18", "url": "https://files.pythonhosted.org/packages/f4/75/a3d2aa796528c9ea7416be3ab3749ebac486acfd94b02ad8460703ccfb3a/ethereum_ipc_client-0.1.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4a5727fe1bc27986f47239720a66fc7f", "sha256": "fa546326d133b266675dbc93c1521a3c0bca157751287fa81e028b6aac7918d2" }, "downloads": -1, "filename": "ethereum-ipc-client-0.1.2.tar.gz", "has_sig": false, "md5_digest": "4a5727fe1bc27986f47239720a66fc7f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6682, "upload_time": "2015-12-31T23:30:52", "url": "https://files.pythonhosted.org/packages/bd/ba/923a94d1e86efbdc499eb033b20cd9414e1c75c6af7e3a17d713b25fbe23/ethereum-ipc-client-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "built for Darwin-15.2.0", "digests": { "md5": "4a82b08f3419e5159d76211940f4aa25", "sha256": "5e3b5fbfa565f6706cd7e1af9bbc76410a27cc67b0165c2514b1b010702b84db" }, "downloads": -1, "filename": "ethereum-ipc-client-0.1.3.macosx-10.11-x86_64.tar.gz", "has_sig": false, "md5_digest": "4a82b08f3419e5159d76211940f4aa25", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 5227, "upload_time": "2016-01-02T02:45:39", "url": "https://files.pythonhosted.org/packages/a2/c7/97478edfab5d490d63d6f9abb38736e04fec05133776dc78ff2a8d68335a/ethereum-ipc-client-0.1.3.macosx-10.11-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "e7b690b1b804e9605e59c26a60f9bfa4", "sha256": "efcd345436ece7628279fd2e090047b12817372e0b99172bc1d638ec95ac6457" }, "downloads": -1, "filename": "ethereum_ipc_client-0.1.3-py2-none-any.whl", "has_sig": false, "md5_digest": "e7b690b1b804e9605e59c26a60f9bfa4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8716, "upload_time": "2016-01-02T02:46:03", "url": "https://files.pythonhosted.org/packages/75/2e/a08c8ebe12e099157f4aab269eb02a9d4295a8da1fe97d45a2ac694e5178/ethereum_ipc_client-0.1.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ab6f7c1fe1491f07679d7f58c9ce2c25", "sha256": "6dd6dfc2df49e0f0cbaaeed0169960bc50d0e8723d762fe1791192d8ed0d7d8e" }, "downloads": -1, "filename": "ethereum-ipc-client-0.1.3.tar.gz", "has_sig": false, "md5_digest": "ab6f7c1fe1491f07679d7f58c9ce2c25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6737, "upload_time": "2016-01-02T02:45:22", "url": "https://files.pythonhosted.org/packages/63/8c/7eeafb99ce56c6b0789606b08ece0b33fd773cffc4577c8049ddafcef36f/ethereum-ipc-client-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "a33c683b3d00d34a8dc059f437641e04", "sha256": "3f0271068097f182c4da7485befe177d19d0531198e97e9ba91cd3cf9090b5a6" }, "downloads": -1, "filename": "ethereum_ipc_client-0.1.4-py2-none-any.whl", "has_sig": false, "md5_digest": "a33c683b3d00d34a8dc059f437641e04", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8714, "upload_time": "2016-01-02T18:02:45", "url": "https://files.pythonhosted.org/packages/29/af/6131046d8381ee9da0a715b881472aa58a3584b10f8e4e03637a10029333/ethereum_ipc_client-0.1.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "30a27a6596a163d6203ac29a5bc27248", "sha256": "1f2ab81e81b04aa112873b8a780fbf1ebcc1c2c7f6c51cddbbac4fdfbf89852e" }, "downloads": -1, "filename": "ethereum-ipc-client-0.1.4.tar.gz", "has_sig": false, "md5_digest": "30a27a6596a163d6203ac29a5bc27248", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6738, "upload_time": "2016-01-02T18:02:36", "url": "https://files.pythonhosted.org/packages/6c/bb/8f03c055b748a4614bb909703a343c833f0152a840b39b7e688b64f9896d/ethereum-ipc-client-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "88e887426018e299e358fb81d85b026c", "sha256": "a00a1fdc88f560a70cc4ad587dc728701362d637a2665cebba244ba552e7f254" }, "downloads": -1, "filename": "ethereum_ipc_client-0.1.5-py2-none-any.whl", "has_sig": false, "md5_digest": "88e887426018e299e358fb81d85b026c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6639, "upload_time": "2016-01-02T23:58:08", "url": "https://files.pythonhosted.org/packages/53/53/a593a289c57c3b96f140e274be4162b61eef3a9beef1302b680d2c0cc1a3/ethereum_ipc_client-0.1.5-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a6f97b18e2ae0dce62e53c6d5f3df48a", "sha256": "f83c8afbf9629d93f4ce625a0edaf5b856e08b216f623122b2d79ba8faf4be14" }, "downloads": -1, "filename": "ethereum-ipc-client-0.1.5.tar.gz", "has_sig": false, "md5_digest": "a6f97b18e2ae0dce62e53c6d5f3df48a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5074, "upload_time": "2016-01-02T23:57:58", "url": "https://files.pythonhosted.org/packages/0f/67/fd4457423fff1976f17b01a115cdba7bf89a101d66d72a22f5243a0f9e2c/ethereum-ipc-client-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "947aab7d83ae8e63ecb1852e8053cf3f", "sha256": "5d8d2017203719fbec5eace7b6a72d08643fec98541b81258226c0b957dbe404" }, "downloads": -1, "filename": "ethereum_ipc_client-0.1.6-py2-none-any.whl", "has_sig": false, "md5_digest": "947aab7d83ae8e63ecb1852e8053cf3f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6901, "upload_time": "2016-01-03T00:08:14", "url": "https://files.pythonhosted.org/packages/5a/48/f19582ab4f32f70fb2a89506005ffcade2cc61d6161109caafb0580d30d5/ethereum_ipc_client-0.1.6-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "577757feceb9e8d1e72336c11fdc4be6", "sha256": "f55f94f73e4d1d14e0a88adfa9524a86b956480b73e7991d5dbd7c354dbdeb58" }, "downloads": -1, "filename": "ethereum-ipc-client-0.1.6.tar.gz", "has_sig": false, "md5_digest": "577757feceb9e8d1e72336c11fdc4be6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5128, "upload_time": "2016-01-03T00:08:04", "url": "https://files.pythonhosted.org/packages/8d/56/d6c303a24b4b69c2b13097fad8599e08eb195575b3813eb2b4996f87089e/ethereum-ipc-client-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "f0679dfd24543876db7de0b907524c59", "sha256": "3151db54a93d3be37f5a053be15539690e2733e813d2d49070603b314989317f" }, "downloads": -1, "filename": "ethereum_ipc_client-0.1.7-py2-none-any.whl", "has_sig": false, "md5_digest": "f0679dfd24543876db7de0b907524c59", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6929, "upload_time": "2016-01-03T15:34:31", "url": "https://files.pythonhosted.org/packages/e9/1b/d6b371ebf06256decf29431bee2041f794c6852bf403c5632d630cccd1d0/ethereum_ipc_client-0.1.7-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a0454b0186c50b553fb06ae4a24bcf5f", "sha256": "2f6810cea3a729cbd281e5f0c1b3d53047030a761ec6ede6e742629c7b317433" }, "downloads": -1, "filename": "ethereum-ipc-client-0.1.7.tar.gz", "has_sig": false, "md5_digest": "a0454b0186c50b553fb06ae4a24bcf5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5164, "upload_time": "2016-01-03T15:34:21", "url": "https://files.pythonhosted.org/packages/73/30/71c26bd33e492d4d9e254eba11df17050bae1fa44db735a0968b83e67d78/ethereum-ipc-client-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "53b02d13cd3ee19cc7e4addb4921db15", "sha256": "d3ccba19d6ff37aa3168660249b1e3c79062cf42661304e043fa895f3cc6cf42" }, "downloads": -1, "filename": "ethereum_ipc_client-0.1.8-py2-none-any.whl", "has_sig": false, "md5_digest": "53b02d13cd3ee19cc7e4addb4921db15", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6976, "upload_time": "2016-01-04T04:10:15", "url": "https://files.pythonhosted.org/packages/32/7d/c3f6ea06a15441c73f653ce58536e94b3084c9350de960e7d8d51aadb634/ethereum_ipc_client-0.1.8-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e41ba3e5dbc42d8c0b9695582758357c", "sha256": "a99264e1877e19ecca01ed7c5572e0074c54ae29b9d6e634fe46713baa4c0e09" }, "downloads": -1, "filename": "ethereum-ipc-client-0.1.8.tar.gz", "has_sig": false, "md5_digest": "e41ba3e5dbc42d8c0b9695582758357c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5208, "upload_time": "2016-01-04T04:09:59", "url": "https://files.pythonhosted.org/packages/23/57/e7cdfc50d3c4b6463482f2ed6e919c728d9772726ddb4c3de9fe6861ced3/ethereum-ipc-client-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "e01d531bbdf5eebfc3912acc3b9c9cf4", "sha256": "f8d14531476421a81a027dcadbe4709118fba92eb9b1c9bd1e553e0f8645c537" }, "downloads": -1, "filename": "ethereum_ipc_client-0.1.9-py2-none-any.whl", "has_sig": false, "md5_digest": "e01d531bbdf5eebfc3912acc3b9c9cf4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6998, "upload_time": "2016-01-05T06:40:20", "url": "https://files.pythonhosted.org/packages/75/f9/d7aea7d707331b35b22e2bd2e8f73ce4d5cc08ec75a194c51aa5fe4e9106/ethereum_ipc_client-0.1.9-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c9212e77ea64e1c59b94427c780d6e04", "sha256": "189213f74076dac0c2939490d4560f7e8bd8df3627aff0985821adde45bb579a" }, "downloads": -1, "filename": "ethereum-ipc-client-0.1.9.tar.gz", "has_sig": false, "md5_digest": "c9212e77ea64e1c59b94427c780d6e04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5233, "upload_time": "2016-01-05T06:39:59", "url": "https://files.pythonhosted.org/packages/81/f8/4e178ed32d412bc648a98e21cde827dcdfb17eab8d5a1293d897246bf19b/ethereum-ipc-client-0.1.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e01d531bbdf5eebfc3912acc3b9c9cf4", "sha256": "f8d14531476421a81a027dcadbe4709118fba92eb9b1c9bd1e553e0f8645c537" }, "downloads": -1, "filename": "ethereum_ipc_client-0.1.9-py2-none-any.whl", "has_sig": false, "md5_digest": "e01d531bbdf5eebfc3912acc3b9c9cf4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6998, "upload_time": "2016-01-05T06:40:20", "url": "https://files.pythonhosted.org/packages/75/f9/d7aea7d707331b35b22e2bd2e8f73ce4d5cc08ec75a194c51aa5fe4e9106/ethereum_ipc_client-0.1.9-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c9212e77ea64e1c59b94427c780d6e04", "sha256": "189213f74076dac0c2939490d4560f7e8bd8df3627aff0985821adde45bb579a" }, "downloads": -1, "filename": "ethereum-ipc-client-0.1.9.tar.gz", "has_sig": false, "md5_digest": "c9212e77ea64e1c59b94427c780d6e04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5233, "upload_time": "2016-01-05T06:39:59", "url": "https://files.pythonhosted.org/packages/81/f8/4e178ed32d412bc648a98e21cde827dcdfb17eab8d5a1293d897246bf19b/ethereum-ipc-client-0.1.9.tar.gz" } ] }