{ "info": { "author": "Sam McHardy", "author_email": "", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "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", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "=============================\nWelcome to python-idex v1.0.0\n=============================\n\n.. image:: https://img.shields.io/pypi/v/python-idex.svg\n :target: https://pypi.python.org/pypi/python-idex\n\n.. image:: https://img.shields.io/pypi/l/python-idex.svg\n :target: https://pypi.python.org/pypi/python-idex\n\n.. image:: https://img.shields.io/travis/sammchardy/python-idex.svg\n :target: https://travis-ci.org/sammchardy/python-idex\n\n.. image:: https://img.shields.io/coveralls/sammchardy/python-idex.svg\n :target: https://coveralls.io/github/sammchardy/python-idex\n\n.. image:: https://img.shields.io/pypi/wheel/python-idex.svg\n :target: https://pypi.python.org/pypi/python-idex\n\n.. image:: https://img.shields.io/pypi/pyversions/python-idex.svg\n :target: https://pypi.python.org/pypi/python-idex\n\nThis is an unofficial Python wrapper for the `IDEX exchanges REST API v1 `_. I am in no way affiliated with IDEX, use at your own risk.\n\nPyPi\n https://pypi.python.org/pypi/python-idex\n\nSource code\n https://github.com/sammchardy/python-idex\n\nDocumentation\n https://python-idex.readthedocs.io/en/latest/\n\n\nFeatures\n--------\n\n- Implementation of all REST endpoints except for deposit.\n- Helper functions for your wallet address\n- Response exception handling\n- Websockets for Python 3.5+\n\n\nUpgrading\n---------\n\nIf you've been using an older version of python-idex < 1.0.0 you will need to use an API Key for the REST client\nand websocket client. See examples below.\n\n\nQuick Start\n-----------\n\nRegister an account with `IDEX `_.\n\n.. code:: bash\n\n pip install python-idex\n\n\nSynchronous Examples\n--------------------\n\n.. code:: python\n\n api_key = 'api:jVXLd5h1bEYcKgZbQru2k'\n address = ''\n private_key = ''\n\n from idex.client import Client\n client = Client(api_key, address, private_key)\n\n # get currencies\n currencies = client.get_currencies()\n\n # get market depth\n depth = client.get_order_book('ETH_SENT')\n\n # get your balances\n balances = client.get_my_balances()\n\n # get your open orders\n orders = client.get_my_open_orders('ETH_SENT')\n\n # create a limit order\n order = client.create_order('SENT', 'ETH', '0.001', '10000')\n\n\nAsync Examples for Python 3.5+\n------------------------------\n\n.. code:: python\n\n from idex.asyncio import AsyncClient, IdexSocketManager, SubscribeCategory\n\n loop = None\n\n async def main():\n global loop\n\n # Initialise the client\n client = await AsyncClient(api_key, address, private_key)\n\n # get currencies\n currencies = await client.get_currencies()\n\n # get market depth\n depth = await client.get_order_book('ETH_SENT')\n\n # get your balances\n balances = await client.get_my_balances()\n\n # get your open orders\n orders = await client.get_my_open_orders('ETH_SENT')\n\n # create a limit order\n order = await client.create_order('SENT', 'ETH', '0.001', '10000')\n\n # Coroutine to receive messages\n async def handle_evt(msg):\n print(f\"event:{msg['event']} payload:{msg['payload']}\")\n # do something with this event\n\n # Initialise the socket manager with the callback funciton\n ism = await IdexSocketManager.create(loop, handle_evt, api_key)\n\n # Subscribe to updates for the ETH_SENT, ETH_AURA and ETH_IDXM market for cancels, orders and trades\n await ism.subscribe(\n SubscribeCategory.markets,\n ['ETH_SENT', 'ETH_AURA', 'ETH_IDXM'],\n ['market_cancels', 'market_orders', 'market_trades']\n )\n\n # keep the script running so we can retrieve websocket events\n while True:\n await asyncio.sleep(20, loop=loop)\n\n\n if __name__ == \"__main__\":\n # get a loop and switch from synchronous to async\n loop = asyncio.get_event_loop()\n loop.run_until_complete(main())\n\n\nFor more `check out the documentation `_.\n\nTODO\n----\n\n- Deposit endpoints\n\nDonate\n------\n\nIf this library helped you out feel free to donate.\n\n- ETH: 0xD7a7fDdCfA687073d7cC93E9E51829a727f9fE70\n- NEO: AVJB4ZgN7VgSUtArCt94y7ZYT6d5NDfpBo\n- LTC: LPC5vw9ajR1YndE1hYVeo3kJ9LdHjcRCUZ\n- BTC: 1Dknp6L6oRZrHDECRedihPzx2sSfmvEBys\n\nOther Exchanges\n---------------\n\nIf you use `Binance `_ check out my `python-binance `_ library.\n\nIf you use `Binance Chain `_ check out my `python-binance-chain `_ library.\n\nIf you use `Kucoin `_ check out my `python-kucoin `_ library.\n\nIf you use `Quoinex `_\nor `Qryptos `_ check out my `python-quoine `_ library.\n\nIf you use `Allcoin `_ check out my `python-allucoin `_ library.\n\nIf you use `Exx `_ check out my `python-exx `_ library.\n\nIf you use `BigONE `_ check out my `python-bigone `_ library.\n\n.. image:: https://analytics-pixel.appspot.com/UA-111417213-1/github/python-idex?pixel\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/sammchardy/python-idex", "keywords": "idex exchange rest api ethereum eth eos", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "python-idex", "package_url": "https://pypi.org/project/python-idex/", "platform": "", "project_url": "https://pypi.org/project/python-idex/", "project_urls": { "Homepage": "https://github.com/sammchardy/python-idex" }, "release_url": "https://pypi.org/project/python-idex/1.0.0/", "requires_dist": [ "requests", "coincurve (>=7.0.0)", "pycryptodome (<4,>=3.5.1)", "py-ecc", "websockets (>=4.0.0)", "aiohttp (>=2.3.0)", "shortid (>=0.1.2)", "rlp (>=0.6)" ], "requires_python": "", "summary": "IDEX REST API python implementation", "version": "1.0.0" }, "last_serial": 5714148, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "bd5ec9144a7b4db2d142d2634e44a8a1", "sha256": "8d1714dd0c3eebe07c0c3a8e6c8df0b5e5c1b1c2604eacdeb78af052128634d6" }, "downloads": -1, "filename": "python_idex-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bd5ec9144a7b4db2d142d2634e44a8a1", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 15620, "upload_time": "2017-11-15T02:37:38", "url": "https://files.pythonhosted.org/packages/5e/27/593c58404da2034097cc1de5f3a3daf104696b6d651eb64fb4361e8c7238/python_idex-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "94f3b28ebfc8ad44629efe6e2cc9f416", "sha256": "9c3db24dc74b3b1dda3b123fd73a79f276290d743bd5f3f37ab7f96bf311aa4b" }, "downloads": -1, "filename": "python-idex-0.1.0.tar.gz", "has_sig": false, "md5_digest": "94f3b28ebfc8ad44629efe6e2cc9f416", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14076, "upload_time": "2017-11-15T02:37:34", "url": "https://files.pythonhosted.org/packages/d3/6d/7ba0b45efcf52b7d48c20d68a39ecec4c5dc2704313b4eebe736f0bcd178/python-idex-0.1.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "72d0b468a65953ba31dcb32b993a7d6f", "sha256": "82475b7818ae4ac0fe3e23ea456b9f735cfd28ed0d6ccb743ca06589cbd0f4b7" }, "downloads": -1, "filename": "python_idex-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "72d0b468a65953ba31dcb32b993a7d6f", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 18041, "upload_time": "2017-11-16T05:32:00", "url": "https://files.pythonhosted.org/packages/7e/ad/99b441250a1a6b872da89e12e66c9219849196441a98bd1c3cbcbccf0076/python_idex-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "210cdef284732349523cc0aa4d1d6a6a", "sha256": "3c9148813f861d40ec20eb38321a7ebace884607a4be28fd696e90f6f18c54a3" }, "downloads": -1, "filename": "python-idex-0.2.0.tar.gz", "has_sig": false, "md5_digest": "210cdef284732349523cc0aa4d1d6a6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10499, "upload_time": "2017-11-16T05:31:56", "url": "https://files.pythonhosted.org/packages/20/ba/eb7cad779a41dd07258201caa0cd5e47879c08fc4f282923e1f15a41c02d/python-idex-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "caaf8dbadbeb16bc3d32ae0d6b8ee0ea", "sha256": "746e2ed46468a7e9b45bacf49dd114d40d03cc531c7db851b39297078e2a139c" }, "downloads": -1, "filename": "python_idex-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "caaf8dbadbeb16bc3d32ae0d6b8ee0ea", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 21009, "upload_time": "2018-01-19T09:05:22", "url": "https://files.pythonhosted.org/packages/5e/08/99ae53fc411c17e1e78d522432a819938e67e075249e41edd58c54921d05/python_idex-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4f2b7f3c3528f7489d9dff58359f17eb", "sha256": "dd9f8c64c42bf4eb3d55813c90500c1ba52b17e19c6986742ddd90385c453d2b" }, "downloads": -1, "filename": "python-idex-0.2.1.tar.gz", "has_sig": false, "md5_digest": "4f2b7f3c3528f7489d9dff58359f17eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13017, "upload_time": "2018-01-19T09:05:19", "url": "https://files.pythonhosted.org/packages/73/a0/91e71f45a2e21442eca7f764506dcd26718103f3a72672c5bee02e8d4190/python-idex-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "a066a975afef53504687455dbb6ef78e", "sha256": "9ae5b59be0ca565f760fa93c8f17899a48c6829e6750cacd1f2a90e63757f96f" }, "downloads": -1, "filename": "python_idex-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a066a975afef53504687455dbb6ef78e", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 21040, "upload_time": "2018-01-20T10:00:50", "url": "https://files.pythonhosted.org/packages/31/84/c44126f24385889efb2d71b4cb3c3aadaa030b310f981a4540df1d8b8d7c/python_idex-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a18db1efd23dac69d59023eb052255b2", "sha256": "1bee766a14707cd7ad40a1e5a1639b8f713a11c58695fc9fae66dfe8cde1c543" }, "downloads": -1, "filename": "python-idex-0.2.2.tar.gz", "has_sig": false, "md5_digest": "a18db1efd23dac69d59023eb052255b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13049, "upload_time": "2018-01-20T10:00:47", "url": "https://files.pythonhosted.org/packages/cb/b0/98f0d1a81239f79d7bc9a703dfa9db20303c15db623628f3229c32caa546/python-idex-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "abd420f29dd4a71ee3e1bb63d366950e", "sha256": "8a252a48eff01b9793d613e829bf6bae79c6e37699b5eda33c4cbeda98eb2e6b" }, "downloads": -1, "filename": "python_idex-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "abd420f29dd4a71ee3e1bb63d366950e", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 21039, "upload_time": "2018-01-20T10:05:21", "url": "https://files.pythonhosted.org/packages/0c/5d/a3572075e55c6f87991d59c00d67f2177be2f0f5b9666aa5dd6486d963fe/python_idex-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "55c23bea93632dfd0ffabb166767a786", "sha256": "070d6d3e5ee2cf72629493285e8d66d13994ec57027c55bcdcd8fc2602eb19d2" }, "downloads": -1, "filename": "python-idex-0.2.3.tar.gz", "has_sig": false, "md5_digest": "55c23bea93632dfd0ffabb166767a786", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13049, "upload_time": "2018-01-20T10:05:18", "url": "https://files.pythonhosted.org/packages/26/d4/2cd59bb90da4adbea1791f79cfa4423b4189cadf8d8b5bd4cf4f9fb01696/python-idex-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "26d5871e94bff60ed16a24c4c4bccbb5", "sha256": "272f027dea8366d9fa93a2af2e0ad5cfdde9fef7615301af90f056f9786cb464" }, "downloads": -1, "filename": "python_idex-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "26d5871e94bff60ed16a24c4c4bccbb5", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 21089, "upload_time": "2018-01-23T08:32:26", "url": "https://files.pythonhosted.org/packages/6a/25/129892a9b9c4c1152305af10098744b3f01a4920fa26290c3739cefbf6a2/python_idex-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d828e43afe4134f1297a59911271505d", "sha256": "c257bbb82a5d2c907dab27ceb201897f7d5c5950ab042e8aa0afb904a6ac9149" }, "downloads": -1, "filename": "python-idex-0.2.4.tar.gz", "has_sig": false, "md5_digest": "d828e43afe4134f1297a59911271505d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13122, "upload_time": "2018-01-23T08:32:23", "url": "https://files.pythonhosted.org/packages/0a/fc/fde57d8898f03e49c2612ce7f7c06ff94b4522e694e9f48024f8c977f896/python-idex-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "f060b0a235c64da1b177da870a1dcdd1", "sha256": "19540d9dbe0d5d21de2ece496ce30aa1dea45ccd47deef6fd2e01ac97e7c5659" }, "downloads": -1, "filename": "python_idex-0.2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f060b0a235c64da1b177da870a1dcdd1", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 21144, "upload_time": "2018-01-29T10:08:42", "url": "https://files.pythonhosted.org/packages/1f/41/4a0977fa2c6b6fc72831960a9c952d0c1d503455ad9539f3b26b873af269/python_idex-0.2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "67ae702fae170b49290c78d0542bb462", "sha256": "7407da3ba6fba851b8f16ec3f75bb04cc39981e0818d230754dd33116e5bfa16" }, "downloads": -1, "filename": "python-idex-0.2.5.tar.gz", "has_sig": false, "md5_digest": "67ae702fae170b49290c78d0542bb462", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13142, "upload_time": "2018-01-29T10:08:22", "url": "https://files.pythonhosted.org/packages/1f/eb/b04a1b42696da893d03681442e5d63d3e7302caa201f58613b78dee063c9/python-idex-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "1a270461cee67972fea15993ef63a583", "sha256": "98418070224af0468e9e1a08facddcdd2d8ad265c7f8eeb1b379e55006e60729" }, "downloads": -1, "filename": "python_idex-0.2.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1a270461cee67972fea15993ef63a583", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 21156, "upload_time": "2018-01-29T10:29:46", "url": "https://files.pythonhosted.org/packages/1c/f2/53aa73e798db15299b73dfd84d4230724da9f37bf800a74e85bbba8e26b3/python_idex-0.2.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e775c133ca4ef7ea4de9c52519b55fd3", "sha256": "67f12af74aaf1e50e2f608483f5a60f89d2f676404999d1d94f2ac566a31b5ea" }, "downloads": -1, "filename": "python-idex-0.2.6.tar.gz", "has_sig": false, "md5_digest": "e775c133ca4ef7ea4de9c52519b55fd3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13159, "upload_time": "2018-01-29T10:29:42", "url": "https://files.pythonhosted.org/packages/9f/a2/bc66fa4b5e27dcfa11627a1d126bbca949bc8b757a4c3ade7b84fcdf661f/python-idex-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "62e26fb840c5df49efe5ab53f97ae2be", "sha256": "e7b1695fafc951f8cae72723e7073c0707f24c3fad9d378b4d8cba2801b7dada" }, "downloads": -1, "filename": "python_idex-0.2.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "62e26fb840c5df49efe5ab53f97ae2be", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 21709, "upload_time": "2018-01-29T21:30:57", "url": "https://files.pythonhosted.org/packages/2c/72/5ca3f1d25c11dbcf7dec2a23ce62ba85c445bee69ab2aaf16b1dbf1eae88/python_idex-0.2.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9901f791afc71a1f377dc9378ffc129a", "sha256": "914622ef7abbfa780cc6fa61005e0da44108f84d759c4f75cf7d3946e9edd246" }, "downloads": -1, "filename": "python-idex-0.2.7.tar.gz", "has_sig": false, "md5_digest": "9901f791afc71a1f377dc9378ffc129a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13529, "upload_time": "2018-01-29T21:30:53", "url": "https://files.pythonhosted.org/packages/1c/43/efc095902c04da28afd4a6b38f563986fbda0f4530e9804741853ef1f776/python-idex-0.2.7.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "79e847738187e6decd0b077bb1270173", "sha256": "a4e3a9fc8535cec926b28d18c22c8ce081dba7cd2480a88c8dd71e3026af6a75" }, "downloads": -1, "filename": "python_idex-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "79e847738187e6decd0b077bb1270173", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 30884, "upload_time": "2018-06-26T11:12:44", "url": "https://files.pythonhosted.org/packages/28/6d/a0e6525235cbd2d109c3a39f70eb067467e8e9e512362fb21b16dda6ea78/python_idex-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0b280038224bf1431f8c1b9dfa4e05d5", "sha256": "33b2a224da4ba23626df2a16d8d5d921ef8ed85d0d3c379a8b3ec699c516c949" }, "downloads": -1, "filename": "python-idex-0.3.0.tar.gz", "has_sig": false, "md5_digest": "0b280038224bf1431f8c1b9dfa4e05d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17768, "upload_time": "2018-06-26T11:12:41", "url": "https://files.pythonhosted.org/packages/7b/f8/e097bb67dc045cea6d5b5ae611b4252c6fb7fac8d3b951f00e42893c695e/python-idex-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "1f5ded6d3afabec7f4baae2dbb651574", "sha256": "2794ad78a8b28570ccab621c30f81daa55488f548c55f2692274323b0fe5621e" }, "downloads": -1, "filename": "python_idex-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1f5ded6d3afabec7f4baae2dbb651574", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 31081, "upload_time": "2018-06-27T09:46:22", "url": "https://files.pythonhosted.org/packages/d6/fd/9204fdb81673e18bacf6ef0be28dc014213caf12b3cd0dfed341ab75f5aa/python_idex-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aadcd93dae90f1912c5d6b85576cae34", "sha256": "0449abb7aa5a6797991dbd7c0d4742fea93133ba556cda09ee592989eb22a6e3" }, "downloads": -1, "filename": "python-idex-0.3.1.tar.gz", "has_sig": false, "md5_digest": "aadcd93dae90f1912c5d6b85576cae34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17881, "upload_time": "2018-06-27T09:46:20", "url": "https://files.pythonhosted.org/packages/67/f0/44b3a8193c091ad3e1f55b69f1f41400537f6d4adacfbfb1da1b624c1e18/python-idex-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "cab1b40844f0b593630da00b181f5674", "sha256": "e72d71c2536b8db9166e22f87d75b8c760da52ebe5fb380fe7ad486d05ef4fb1" }, "downloads": -1, "filename": "python_idex-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cab1b40844f0b593630da00b181f5674", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 31080, "upload_time": "2018-06-27T11:44:09", "url": "https://files.pythonhosted.org/packages/0e/4e/fc3fb422fd47e323adf4af54ee0938ecf1039a0114869f4058432ef9e355/python_idex-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2bf46c8e0a6ffc6550f610a67a852c76", "sha256": "ef0a0b77b7a579bd6763e7d3227d57067b514caad54884485ee19a0f907b53d9" }, "downloads": -1, "filename": "python-idex-0.3.2.tar.gz", "has_sig": false, "md5_digest": "2bf46c8e0a6ffc6550f610a67a852c76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17880, "upload_time": "2018-06-27T11:44:06", "url": "https://files.pythonhosted.org/packages/8c/d0/ab2fa785e4eca3c903f67baf97e6e08b9b76b13c26a4e6fdf23b15604f88/python-idex-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "60f7dd7b7fb686ee32e84648df77c10b", "sha256": "fa90e9f2dac77f92cebfbf259c13988a539fd5d59e127bab52c3fdc42d69569f" }, "downloads": -1, "filename": "python_idex-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "60f7dd7b7fb686ee32e84648df77c10b", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 31185, "upload_time": "2018-08-08T09:46:40", "url": "https://files.pythonhosted.org/packages/77/35/54f88fab0c78ab524df34bce1909adcf80fc6cc31839d8018fcd1493cff5/python_idex-0.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "899b3283e666a58653f6696eaec50199", "sha256": "71c3a60025a2d5822a66ffb1d57e04f906d6ac40bc6fc6a306e098a194234762" }, "downloads": -1, "filename": "python-idex-0.3.3.tar.gz", "has_sig": false, "md5_digest": "899b3283e666a58653f6696eaec50199", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18053, "upload_time": "2018-08-08T09:46:36", "url": "https://files.pythonhosted.org/packages/49/79/44d635dd820f72b26ecc78400aa2970ae7500f5fc4f5daffff65466e5d56/python-idex-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "7374905231da6b4e9fc7c293e40686b9", "sha256": "fe51b20452cf1e6d9a5c42b2c0e2f04dc0fc02f19d8786e084c86aee3799f5eb" }, "downloads": -1, "filename": "python_idex-0.3.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7374905231da6b4e9fc7c293e40686b9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 30202, "upload_time": "2019-01-15T09:25:33", "url": "https://files.pythonhosted.org/packages/68/18/5e85bce9be1bc46c8a8629cdb551510a22b4478d1cba09e399dbe4cbcbb0/python_idex-0.3.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8f69a5776367ca1b93528f961fb80350", "sha256": "041824b3c530d88abacddfaa55458233bde229f274e261f4783771e1a66bf0a8" }, "downloads": -1, "filename": "python-idex-0.3.4.tar.gz", "has_sig": false, "md5_digest": "8f69a5776367ca1b93528f961fb80350", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18921, "upload_time": "2019-01-15T09:25:20", "url": "https://files.pythonhosted.org/packages/5e/fb/e5a887663dc2878485d4520ec0ed56e8f41aa48791a4f913abe373c92a13/python-idex-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "db9f2e98c0bbae395e9bc31464cb05ca", "sha256": "0984f101f7a91d7df52c8ddf59d990a5d9afd19661f51c46d7f597c047a5fbd8" }, "downloads": -1, "filename": "python_idex-0.3.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "db9f2e98c0bbae395e9bc31464cb05ca", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 30701, "upload_time": "2019-02-11T09:55:43", "url": "https://files.pythonhosted.org/packages/05/18/590dba436a96fe5fcde638fbb3b5bd5dfbe9f25a518a5ef997d48f22e09c/python_idex-0.3.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1f5e2714c356c7297d009eabc1b9886b", "sha256": "f57f9046cef8c5ea31ddf7157e5f060bed141616fadec4e8c3da382e7e310e87" }, "downloads": -1, "filename": "python-idex-0.3.5.tar.gz", "has_sig": false, "md5_digest": "1f5e2714c356c7297d009eabc1b9886b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19623, "upload_time": "2019-02-11T09:55:51", "url": "https://files.pythonhosted.org/packages/2c/21/f336bbd79b3529e379fce3f22aa769ad0adb469a5c7b470bf3ab7b1fae11/python-idex-0.3.5.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "c125c3f55d2762ac5c54c0f7d221c1c5", "sha256": "9212595c2680e2646d8398ace1b2e8d9c20bff4cd377f24cfcb5033c62b89a05" }, "downloads": -1, "filename": "python_idex-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c125c3f55d2762ac5c54c0f7d221c1c5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20412, "upload_time": "2019-08-22T09:25:22", "url": "https://files.pythonhosted.org/packages/03/77/7cbf1f8a3c94068d3f14dc73d6aca427d12988eb2bb5f2da5e7f83733fd1/python_idex-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c41747ccfb391d35ebd6034cf6aac1f5", "sha256": "cba05bcc76669b8ee6701e4c8fa6b61180dc9c61b23eb8ea15c0f5f83462818b" }, "downloads": -1, "filename": "python-idex-1.0.0.tar.gz", "has_sig": false, "md5_digest": "c41747ccfb391d35ebd6034cf6aac1f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20131, "upload_time": "2019-08-22T09:25:38", "url": "https://files.pythonhosted.org/packages/a7/12/a5f0c120865e24853a019b213600cb749136ebbb4b4df74cff39c733131d/python-idex-1.0.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c125c3f55d2762ac5c54c0f7d221c1c5", "sha256": "9212595c2680e2646d8398ace1b2e8d9c20bff4cd377f24cfcb5033c62b89a05" }, "downloads": -1, "filename": "python_idex-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c125c3f55d2762ac5c54c0f7d221c1c5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20412, "upload_time": "2019-08-22T09:25:22", "url": "https://files.pythonhosted.org/packages/03/77/7cbf1f8a3c94068d3f14dc73d6aca427d12988eb2bb5f2da5e7f83733fd1/python_idex-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c41747ccfb391d35ebd6034cf6aac1f5", "sha256": "cba05bcc76669b8ee6701e4c8fa6b61180dc9c61b23eb8ea15c0f5f83462818b" }, "downloads": -1, "filename": "python-idex-1.0.0.tar.gz", "has_sig": false, "md5_digest": "c41747ccfb391d35ebd6034cf6aac1f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20131, "upload_time": "2019-08-22T09:25:38", "url": "https://files.pythonhosted.org/packages/a7/12/a5f0c120865e24853a019b213600cb749136ebbb4b4df74cff39c733131d/python-idex-1.0.0.tar.gz" } ] }