{ "info": { "author": "David Bonnes & Geoff Soord", "author_email": "zxdavb@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "[![CircleCI](https://circleci.com/gh/zxdavb/geniushub-client.svg?style=svg)](https://circleci.com/gh/zxdavb/geniushub-client) [![Join the chat at https://gitter.im/geniushub-client/community](https://badges.gitter.im/geniushub-client/community.svg)](https://gitter.im/geniushub-client/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n\n# geniushub-client\nThis is a Python library to provide access to a **Genius Hub** by abstracting its [RESTful API](https://my.geniushub.co.uk/docs). It uses **aiohttp** and is therefore async-friendly.\n\nThis library can use either the **_offical_ v1 API** with a [hub token](https://my.geniushub.co.uk/tokens), or the **_latest_ v3 API** (using your own [username and password](https://www.geniushub.co.uk/app)). In either case, the library will return v1-compatible results wherever possible (this is not a trivial task).\n\nIf you use the v3 API, you can interrogate the hub directly, rather than via Heat Genius' own servers. Note that the v3 API is undocumented, and so this functionality may break at any time. In fact, the v3 to v1 conversion if best efforts and may even be broken as is for some edge cases - it was tested with HW, on/off (i.e. smart plugs), and radiators only.\n\nIt is a WIP, and is missing some functionality (e.g. schedules). In addition, there are some other limitations (see below).\n\nIt is based upon work by [@GeoffAtHome](https://github.com/zxdavb/geniushub-client/commits?author=GeoffAtHome) - thanks!\n\n## Current limitations\nCurrent limitations & to-dos include:\n - **ghclient.py** is not complete\n - schedules are read-only\n - when using the v3 API, zones sometimes have the wrong value for `occupied`\n\n The library will return v1 API responses wherever possible, however:\n 1. the only code available to reverse-engineer is from the web app, but\n 2. the Web app does not correlate completely with the v1 API (e.g. issue messages, occupied state)\n\nThus, always check your output against the corresponding v1 API response rather than the web app.\n\n## Installation\nEither clone this repository and run `python setup.py install`, or install from pip using `pip install geniushub-client`.\n\n## Using the Library\nSee `ghclient.py` for example code. You can also use `ghclient.py` for ad-hoc queries:\n```bash\npython ghclient.py -?\n```\nThere are two distinct options for accessing a Genius Hub:\n\nOption 1: **hub token** only:\n - requires a hub token obtained from https://my.geniushub.co.uk/tokens\n - uses the v1 API - which is well-documented\n - interrogates Heat Genius' own servers (so is slower)\n\nOption 2: hub **hostname/address** with **user credentials**:\n - requires your `username` & `password`, as used with https://www.geniushub.co.uk/app\n - uses the v3 API - results are WIP and may not be what you expect\n - interrogates the hub directly (so is faster), via port :1223\n\n```bash\nHUB_TOKEN=\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsInZlc...\"\nHUB_ADDRESS=\"my-geniushub.dyndns.com\"\nUSERNAME=\"my-username\"\nPASSWORD=\"my-password\"\n\npython ghclient.py ${HUB_TOKEN} issues\n\npython ghclient.py ${HUB_ADDRESS} -u ${USERNAME} -p ${PASSWORD} zones -v\n```\n\nYou can compare any output to the 'official' API (v1 response):\n```bash\ncurl -H \"authorization: Bearer ${HUB_TOKEN}\" -X GET https://my.geniushub.co.uk/v1/zones/summary\npython ghclient.py ${HUB_TOKEN} zones\n\ncurl -H \"authorization: Bearer ${HUB_TOKEN}\" -X GET https://my.geniushub.co.uk/v1/devices\npython ghclient.py ${HUB_ADDRESS} -u ${USERNAME} -p ${PASSWORD} devices -v\n\ncurl -H \"authorization: Bearer ${HUB_TOKEN}\" -X GET https://my.geniushub.co.uk/v1/issues\npython ghclient.py ${HUB_ADDRESS} -u ${USERNAME} -p ${PASSWORD} issues\n```\n\nYou can obtain the 'raw' v3 API responses (i.e. the JSON is not converted to the v1 schema):\n```bash\npython ghclient.py ${HUB_ADDRESS} -u ${USERNAME} -p ${PASSWORD} zones -vvv\npython ghclient.py ${HUB_ADDRESS} -u ${USERNAME} -p ${PASSWORD} devices -vvv\n```\n\nTo obtain the 'official' v3 API responses takes a little work. First, use python to obtain a `HASH`:\n```python\n>>> from hashlib import sha256\n>>> hash = sha256()\n>>> hash.update((\"my_username\" + \"my_password\").encode('utf-8'))\n>>> print(hash.hexdigest())\n001b24f45b...\n```\nThen you can use **curl**:\n```bash\ncurl --user ${USERNAME}:${HASH} -X GET http://${HUB_ADDRESS}:1223/v3/zones\n```\n\n## Advanced Features\n When used as a library, there is the option to utilize the referencing module's own `aiohttp.ClientSession()` (recommended).\n\n Here is an example, but see **ghclient.py** for a more complete example:\n ```python\nimport asyncio\nimport aiohttp\nfrom geniushubclient import GeniusHub\n\nmy_session = aiohttp.ClientSession()\n\n...\n\nif not (username or password):\n hub = GeniusHub(hub_id=hub_address, username, password, session=my_session)\nelse:\n hub = GeniusHub(hub_id=hub_token, session=my_session)\n\nawait hub.update() # enumerate all zones, devices and issues\n\nclient.verbosity = 0 # same as v1/zones/summary, v1/devices/summary\nprint(hub.zones)\n\nclient.verbosity = 1 # default, same as v1/zones, v1/devices, v1/issues\nprint(hub.devices)\n\nprint(hub.zone_by_id[3].data[\"temperature\"])\nprint(hub.device_by_id[\"2-2\"].data)\n\nawait session.close()\n```\n\n### QA/CI via CircleCI\nQA includes comparing JSON from **cURL** with output from this app using **diff**, for example:\n```bash\n(venv) root@hostname:~/$ curl -X GET https://my.geniushub.co.uk/v1/zones -H \"authorization: Bearer ${HUB_TOKEN}\" | \\\n python -c \"import sys, json; print(json.dumps(json.load(sys.stdin, parse_float=lambda x: int(float(x))), indent=4, sort_keys=True))\" > a.out\n\n(venv) root@hostname:~/$ python ghclient.py ${HUB_ADDRESS} -u ${USERNAME} -p ${PASSWORD} zones -v | \\\n python -c \"import sys, json; print(json.dumps(json.load(sys.stdin, parse_float=lambda x: int(float(x))), indent=4, sort_keys=True))\" > b.out\n\n(venv) root@hostname:~/$ diff a.out b.out\n```", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/zxdavb/geniushub-client/archive/VERSION.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/zxdavb/geniushub-client", "keywords": "genius,geniushub,heatgenius", "license": "", "maintainer": "", "maintainer_email": "", "name": "geniushub-client", "package_url": "https://pypi.org/project/geniushub-client/", "platform": "", "project_url": "https://pypi.org/project/geniushub-client/", "project_urls": { "Download": "https://github.com/zxdavb/geniushub-client/archive/VERSION.tar.gz", "Homepage": "https://github.com/zxdavb/geniushub-client" }, "release_url": "https://pypi.org/project/geniushub-client/0.6.30/", "requires_dist": null, "requires_python": "", "summary": "A aiohttp-based client for Genius Hub systems", "version": "0.6.30", "yanked": false, "yanked_reason": null }, "last_serial": 12501321, "releases": { "0.3.6": [ { "comment_text": "", "digests": { "md5": "883f23cf88f385ad239529ca3ce9f269", "sha256": "07185052c540509c90b4bbd42f45277877d3913117ecb30fb2cb4647d6681976" }, "downloads": -1, "filename": "geniushub-client-0.3.6.tar.gz", "has_sig": false, "md5_digest": "883f23cf88f385ad239529ca3ce9f269", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12484, "upload_time": "2019-04-15T21:18:39", "upload_time_iso_8601": "2019-04-15T21:18:39.327411Z", "url": "https://files.pythonhosted.org/packages/9e/e2/604f613597de4fd9608c3a1366592e4b365c4292fb45eb391f3058e36c3c/geniushub-client-0.3.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.11": [ { "comment_text": "", "digests": { "md5": "68f608a1675b149b95c5dd595b25ec69", "sha256": "cd3b18e23088280802444f84f83b150a8ab8d2e2d982e3b936aa2c6e9945e31a" }, "downloads": -1, "filename": "geniushub-client-0.4.11.tar.gz", "has_sig": false, "md5_digest": "68f608a1675b149b95c5dd595b25ec69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14211, "upload_time": "2019-05-26T09:47:28", "upload_time_iso_8601": "2019-05-26T09:47:28.352621Z", "url": "https://files.pythonhosted.org/packages/4a/c7/6f8672bdc023c44b3adbe92ba2b4da07cf3845e07d705bc9e91eb2fcf8d2/geniushub-client-0.4.11.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.12": [ { "comment_text": "", "digests": { "md5": "0066289e204dd59b936f18f8143e77b6", "sha256": "2776b945d568f8a93e7246ca5d2f9e7b668f78177b20528890527c428b2c466e" }, "downloads": -1, "filename": "geniushub-client-0.4.12.tar.gz", "has_sig": false, "md5_digest": "0066289e204dd59b936f18f8143e77b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15075, "upload_time": "2019-06-14T17:56:34", "upload_time_iso_8601": "2019-06-14T17:56:34.413218Z", "url": "https://files.pythonhosted.org/packages/1c/08/e3be41df9e8749ffa1f1ba6b0046f5caed10953827b28e262568dd5079c8/geniushub-client-0.4.12.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.15": [ { "comment_text": "", "digests": { "md5": "f144b805cab24cb4feee4aca5230bb4a", "sha256": "895b1f5f03007e0cc9c7b9d9beafe630de4d45776cdbcba0cfc09ac5a6eab084" }, "downloads": -1, "filename": "geniushub-client-0.4.15.tar.gz", "has_sig": false, "md5_digest": "f144b805cab24cb4feee4aca5230bb4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15278, "upload_time": "2019-07-21T07:56:12", "upload_time_iso_8601": "2019-07-21T07:56:12.936582Z", "url": "https://files.pythonhosted.org/packages/af/f2/94703fbf45df60b30d0953b3705e21bf5fdf0f6f3954c0e36d4c043d5c0c/geniushub-client-0.4.15.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "ef0ff377b0dc1dea0fe5f08ae8423092", "sha256": "debc3d6562d90977297b296a6da3a52590f6292f02a8f9952d0b65fc0a390ddd" }, "downloads": -1, "filename": "geniushub-client-0.4.5.tar.gz", "has_sig": false, "md5_digest": "ef0ff377b0dc1dea0fe5f08ae8423092", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13779, "upload_time": "2019-04-26T19:59:32", "upload_time_iso_8601": "2019-04-26T19:59:32.830392Z", "url": "https://files.pythonhosted.org/packages/4f/b2/999ba6007e2de602ffe8fed7ab7a80371bc6a72be349525aa2928075ce88/geniushub-client-0.4.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "f833e847bba8f3d32061050799ef6d38", "sha256": "0462c8935acf387a61c60bd706a07a50cd549dddabd1d649bc471a92ecf3f27c" }, "downloads": -1, "filename": "geniushub-client-0.4.6.tar.gz", "has_sig": false, "md5_digest": "f833e847bba8f3d32061050799ef6d38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13888, "upload_time": "2019-05-02T10:10:37", "upload_time_iso_8601": "2019-05-02T10:10:37.307386Z", "url": "https://files.pythonhosted.org/packages/f7/b2/f0e361926b25e307c35b91a6312a651cfa7aa5d2355533b4b68ce58dc397/geniushub-client-0.4.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "8f23a26a6a9bc672023c3155f0f40d1d", "sha256": "518c80ef428a1bcf867c22c5f54da4daaf0756fa04c737cce174af9b6517fa42" }, "downloads": -1, "filename": "geniushub-client-0.4.7.tar.gz", "has_sig": false, "md5_digest": "8f23a26a6a9bc672023c3155f0f40d1d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14046, "upload_time": "2019-05-14T14:14:52", "upload_time_iso_8601": "2019-05-14T14:14:52.071074Z", "url": "https://files.pythonhosted.org/packages/33/c0/4553dd2deace32887ee21b808db920c08925c73a08cd94c94ca4afe52fb5/geniushub-client-0.4.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.9": [ { "comment_text": "", "digests": { "md5": "7e8c853797d6f8a494e0ebd20d734928", "sha256": "051458f3472308a27154b6a4613149f2725e265ea59c6f62bf6919b468de7a00" }, "downloads": -1, "filename": "geniushub-client-0.4.9.tar.gz", "has_sig": false, "md5_digest": "7e8c853797d6f8a494e0ebd20d734928", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14198, "upload_time": "2019-05-21T16:28:58", "upload_time_iso_8601": "2019-05-21T16:28:58.509180Z", "url": "https://files.pythonhosted.org/packages/ea/31/f66cf8dbe271a86ad7915459c69371e9b2b9745de1906e1e2692150e3e19/geniushub-client-0.4.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "777c42b152f9f9bb9f0a75eb8f968b2e", "sha256": "d19400c6d058854d7f3083aba6ee2fbc3ca30309cf2f5de2748885d3def335a9" }, "downloads": -1, "filename": "geniushub-client-0.5.0.tar.gz", "has_sig": false, "md5_digest": "777c42b152f9f9bb9f0a75eb8f968b2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14795, "upload_time": "2019-07-24T11:46:43", "upload_time_iso_8601": "2019-07-24T11:46:43.803627Z", "url": "https://files.pythonhosted.org/packages/25/d7/decfa854d20c2e0048c68267a88c80e3b9b905ab98bdae12eacfc00bf969/geniushub-client-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "2e2b28c38641ccbc51ee929f226cdcdd", "sha256": "f7297e09f2aa8f16f078595b64d99810cba9aaee4eeb3b0c93a587746d2d7ff9" }, "downloads": -1, "filename": "geniushub-client-0.5.4.tar.gz", "has_sig": false, "md5_digest": "2e2b28c38641ccbc51ee929f226cdcdd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13869, "upload_time": "2019-07-29T20:41:00", "upload_time_iso_8601": "2019-07-29T20:41:00.928869Z", "url": "https://files.pythonhosted.org/packages/53/28/9040f0a6c6c1244bef79b393577d7002a61b8f86295e18ff483fc6f03cff/geniushub-client-0.5.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.8": [ { "comment_text": "", "digests": { "md5": "93b03f645c370cf756fac0d5d56543e6", "sha256": "9b9ffd756a53c91bd9e37a8c1aecb349dda28cccd731013b724309a77184a507" }, "downloads": -1, "filename": "geniushub-client-0.5.8.tar.gz", "has_sig": false, "md5_digest": "93b03f645c370cf756fac0d5d56543e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14080, "upload_time": "2019-08-04T20:30:31", "upload_time_iso_8601": "2019-08-04T20:30:31.221185Z", "url": "https://files.pythonhosted.org/packages/b7/57/f8bb9f75e73da2af0fca2fd89cf74251856eb49fcf924d8436e3e32724ee/geniushub-client-0.5.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.11": [ { "comment_text": "", "digests": { "md5": "e4c92f2da1bf71a89b4718d99aeaff65", "sha256": "efe0c6e1586857d200687eec6d35ba9ab18def8d38c0634f643ec85e112f5276" }, "downloads": -1, "filename": "geniushub-client-0.6.11.tar.gz", "has_sig": false, "md5_digest": "e4c92f2da1bf71a89b4718d99aeaff65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14223, "upload_time": "2019-09-08T11:29:08", "upload_time_iso_8601": "2019-09-08T11:29:08.537368Z", "url": "https://files.pythonhosted.org/packages/37/f3/50ac5333a827c1bece09f0a18e1ab64f1d43b8428860e5470cfc41124690/geniushub-client-0.6.11.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.13": [ { "comment_text": "", "digests": { "md5": "de3d86506bb18eaef7860aefc55e25a6", "sha256": "3297bf536f906b3eccd1b7cfc6656b581550b8c95fa593a203cc5d1bfe409094" }, "downloads": -1, "filename": "geniushub-client-0.6.13.tar.gz", "has_sig": false, "md5_digest": "de3d86506bb18eaef7860aefc55e25a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14251, "upload_time": "2019-09-10T11:19:05", "upload_time_iso_8601": "2019-09-10T11:19:05.176217Z", "url": "https://files.pythonhosted.org/packages/9c/cd/595de2d9ebe3a0b0dcea236a2b0cf4a267e8539043ef4f4dce89b696fb71/geniushub-client-0.6.13.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.16": [ { "comment_text": "", "digests": { "md5": "5ac34b180761fa585e133f0e1b2fa25d", "sha256": "1de2c1b364b61c83a5c705ad2a86fadaddd21afd765fdd7f19c8bb3fff842781" }, "downloads": -1, "filename": "geniushub-client-0.6.16.tar.gz", "has_sig": false, "md5_digest": "5ac34b180761fa585e133f0e1b2fa25d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14915, "upload_time": "2019-09-17T20:04:07", "upload_time_iso_8601": "2019-09-17T20:04:07.396355Z", "url": "https://files.pythonhosted.org/packages/cb/56/61e0a15f118e23b787dbc68ddd332089f17c4228d53a64bbabb934d566a3/geniushub-client-0.6.16.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.22": [ { "comment_text": "", "digests": { "md5": "f227cdbb5152bcd5874f5449f8ef3dab", "sha256": "fa3690ad07c9e3bb88b4a9bfa41b31a6924029f021ec32c207348816dbb80a13" }, "downloads": -1, "filename": "geniushub-client-0.6.22.tar.gz", "has_sig": false, "md5_digest": "f227cdbb5152bcd5874f5449f8ef3dab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14954, "upload_time": "2019-09-21T17:04:26", "upload_time_iso_8601": "2019-09-21T17:04:26.654821Z", "url": "https://files.pythonhosted.org/packages/ce/a8/3ec624230398b82048f93a8c02310f1701b46ac6866cc1657a85d60fcfcf/geniushub-client-0.6.22.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.25": [ { "comment_text": "", "digests": { "md5": "70be4e491ea039b90e3c13c55f41e59c", "sha256": "dcfd3b9f9281ad5dc38c1e66cd01449e3e4b9e61bb6bfef3ad482f7a686744bf" }, "downloads": -1, "filename": "geniushub-client-0.6.25.tar.gz", "has_sig": false, "md5_digest": "70be4e491ea039b90e3c13c55f41e59c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14972, "upload_time": "2019-09-29T00:58:57", "upload_time_iso_8601": "2019-09-29T00:58:57.500814Z", "url": "https://files.pythonhosted.org/packages/71/3d/75c911eeaf2b04ae511ca5e37da4659c8933b6b08297d39c6eadb8694c30/geniushub-client-0.6.25.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.26": [ { "comment_text": "", "digests": { "md5": "7edd35b5ec28f8efb00464ab82ee5649", "sha256": "aa752d82f55710155adb86347d9f6b9c65aeb5a5402c2d51aa643cda5bae057b" }, "downloads": -1, "filename": "geniushub-client-0.6.26.tar.gz", "has_sig": false, "md5_digest": "7edd35b5ec28f8efb00464ab82ee5649", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15000, "upload_time": "2019-10-01T11:14:07", "upload_time_iso_8601": "2019-10-01T11:14:07.281307Z", "url": "https://files.pythonhosted.org/packages/17/27/471cf5dcdcf5e91aac4461cdcaaead999d91941ab6be6eea2108aea1962d/geniushub-client-0.6.26.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.28": [ { "comment_text": "", "digests": { "md5": "5ac21fe3df276ced730fcbaa22c04b52", "sha256": "2b31abb20d6c046bb2262cbd198d6581acd4bf6897e648e313bb0ac9a9577453" }, "downloads": -1, "filename": "geniushub-client-0.6.28.tar.gz", "has_sig": false, "md5_digest": "5ac21fe3df276ced730fcbaa22c04b52", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13434, "upload_time": "2019-10-17T13:22:49", "upload_time_iso_8601": "2019-10-17T13:22:49.959418Z", "url": "https://files.pythonhosted.org/packages/db/be/59b5525930576f8bd389efafdad4e0f5bd4687b8f9a526b610f9dfe57c46/geniushub-client-0.6.28.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.30": [ { "comment_text": "", "digests": { "md5": "194c696f6e840cba1d19efc6f47485ed", "sha256": "390932b6e5051e221d104b2683d9deb6e352172c4ec4eeede0954bf2f9680211" }, "downloads": -1, "filename": "geniushub-client-0.6.30.tar.gz", "has_sig": false, "md5_digest": "194c696f6e840cba1d19efc6f47485ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13682, "upload_time": "2019-11-03T18:11:30", "upload_time_iso_8601": "2019-11-03T18:11:30.698340Z", "url": "https://files.pythonhosted.org/packages/b8/aa/ecc15afb0f40b3aa2ac2f096e6898ba168d8aa48cf64540b9392c95eb0e8/geniushub-client-0.6.30.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "fd378820ed9ab77231cbd192ee8fba23", "sha256": "8202402e7b42ec55bdc158cf9d3f3514f4ad01e470313bac981fc0814123dae6" }, "downloads": -1, "filename": "geniushub-client-0.6.5.tar.gz", "has_sig": false, "md5_digest": "fd378820ed9ab77231cbd192ee8fba23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14095, "upload_time": "2019-08-20T10:36:30", "upload_time_iso_8601": "2019-08-20T10:36:30.016878Z", "url": "https://files.pythonhosted.org/packages/cf/aa/8fa5b7eb59e9c3356b57994087dd0b12164e4ec78f098890cc504b13fe73/geniushub-client-0.6.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.7": [ { "comment_text": "", "digests": { "md5": "1ddc70df7d86a16b5932472abcb4d4d8", "sha256": "31c7c3389b61d325d4884e7329f872221244ab062a24532ddc4aac2604bc80c9" }, "downloads": -1, "filename": "geniushub-client-0.6.7.tar.gz", "has_sig": false, "md5_digest": "1ddc70df7d86a16b5932472abcb4d4d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14216, "upload_time": "2019-09-06T09:16:43", "upload_time_iso_8601": "2019-09-06T09:16:43.430183Z", "url": "https://files.pythonhosted.org/packages/70/01/f78fd4b48443f04aa2473e1c313f5b00175a3f7188d299418d8f8b14bc04/geniushub-client-0.6.7.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "194c696f6e840cba1d19efc6f47485ed", "sha256": "390932b6e5051e221d104b2683d9deb6e352172c4ec4eeede0954bf2f9680211" }, "downloads": -1, "filename": "geniushub-client-0.6.30.tar.gz", "has_sig": false, "md5_digest": "194c696f6e840cba1d19efc6f47485ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13682, "upload_time": "2019-11-03T18:11:30", "upload_time_iso_8601": "2019-11-03T18:11:30.698340Z", "url": "https://files.pythonhosted.org/packages/b8/aa/ecc15afb0f40b3aa2ac2f096e6898ba168d8aa48cf64540b9392c95eb0e8/geniushub-client-0.6.30.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }