{ "info": { "author": "Lighthouse Team", "author_email": "engineering@opengear.com", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python :: 2", "Programming Language :: Python :: 3" ], "description": "Lighthouse API client\n=====================\n\nThe client is tightly tied to the RESTful API `RAML\nspecification `__,\nwhich is very well exposed\n`here `__.\n\nAuthentication\n--------------\n\nThe **Lighthouse API Client** expects to find the following environment\nvariables:\n\n- **(required)** ``OGLH_API_USER`` a valid Lighthouse user\n- **(required)** ``OGLH_API_PASS`` a valid Lighthouse user's password\n- **(required)** ``OGLH_API_URL`` the Lighthouse API url without\n ``/api/v1``\n\nConventions\n-----------\n\nAll the methods follow the convention specified as follows. A call for\nan *url* like:\n\n::\n\n GET /system/global_enrollment_token HTTP/1.0\n\nwould be performed through the client as:\n\n.. code:: python\n\n >>> from oglhclient import LighthouseApiClient\n >>> api = LighthouseApiClient()\n >>> client = api.get_client()\n >>> client.system.global_enrollment_token.get()\n\nBasically, all ``/`` must be replaced by ``.`` followed by an action:\n\nGET: ``find()``\n^^^^^^^^^^^^^^^\n\nUsed when asking for a specific object\n\nExample:\n\n::\n\n GET /nodes/smartgroups/myGrouId HTTP/1.0\n\nBecomes:\n\n.. code:: python\n\n smartgroup = client.nodes.smartgroups.find(id='myGrouId')\n\nor\n\n.. code:: python\n\n smartgroup = client.nodes.smartgroups.find('myGrouId')\n\nIn case of a child object like in ``/nodes/{id}/tags/{tag_value_id}``,\nwith a possible call like:\n\n::\n\n GET /nodes/nodes-13/tags/London HTTP/1.0\n\nThe python call should be:\n\n.. code:: python\n\n tag = client.nodes.tags.find(id='myTagId', parent_id='myNodeId')\n\nAlso possible to make:\n\n.. code:: python\n\n tag = client.nodes.tags.find(id='myTagId', node_id='myNodeId')\n\nAlways paying attention to the simple plural formatting removal:\n\n- **nodes**: *node*\n- **properties**: *property*\n\nGET: ``list()``\n~~~~~~~~~~~~~~~\n\nUsed when asking for a list of objects\n\nExample:\n\n::\n\n GET /nodes/smartgroups HTTP/1.0\n\nBecomes:\n\n.. code:: python\n\n smartgroups = client.nodes.smartgroups.list()\n\nparameters may apply like ``page``, ``per_page``, and so on:\n\n.. code:: python\n\n smartgroups = client.nodes.smartgroups.list(page=1,per_page=5)\n\nGET: ``get()``\n~~~~~~~~~~~~~~\n\nOnly used when the two previous do not apply, like:\n\n::\n\n GET /system/webui_session_timeout HTTP/1.0\n\nBecomes:\n\n.. code:: python\n\n timeout = client.system.webui_session_timeout.get()\n\nPOST: ``create()``\n~~~~~~~~~~~~~~~~~~\n\nAs the name suggests, it is used to create objects, for instance:\n\n::\n\n POST /tags/node_tags HTTP/1.0\n Content-Type: application/json\n\n {\"node_tag\": {\"name\": \"Location\",\"values\": [{\"value\": \"USA.NewYork\"},{\"value\": \"UK.London\"}]}}\n\ncould be performed as:\n\n.. code:: python\n\n result = client.tags.node_tags.create(data={\"username\":\"root\",\"password\":\"default\"})\n\nPUT: ``update()``\n~~~~~~~~~~~~~~~~~\n\nIt is used to update a given object, like:\n\n::\n\n PUT /tags/node_tags/nodes_tags-1 HTTP/1.0\n Content-Type: application/json\n\n {\"node_tag\": {\"name\": \"Location\",\"values\": [{\"id\": \"tags_node_tags_values_90\",\"value\": \"USA.NewYork\"}]}}\n\ncould be performed as:\n\n.. code:: python\n\n data = {\n \"node_tag\": {\n \"name\": \"Location\",\n \"values\": [\n {\n \"id\": \"tags_node_tags_values_90\",\n \"value\": \"USA.NewYork\"\n }\n ]\n }\n }\n result = client.tags.node_tags.update(tag_value_id='nodes_tags-1', data=data)\n\nDELETE: ``delete()``\n~~~~~~~~~~~~~~~~~~~~\n\nIt is used for deleting an object by its ``id``, for instance:\n\n::\n\n DELETE /tags/node_tags/nodes_tags-1 HTTP/1.0\n\ncould be performed as:\n\n.. code:: python\n\n result = client.tags.node_tags.delete(tag_value_id='nodes_tags-1')", "description_content_type": null, "docs_url": null, "download_url": "https://github.com/opengear/oglhclient/archive/v1.0.0.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/opengear/oglhclient", "keywords": "api,opengear,lighthouse", "license": "", "maintainer": "", "maintainer_email": "", "name": "oglhclient", "package_url": "https://pypi.org/project/oglhclient/", "platform": "", "project_url": "https://pypi.org/project/oglhclient/", "project_urls": { "Download": "https://github.com/opengear/oglhclient/archive/v1.0.0.tar.gz", "Homepage": "https://github.com/opengear/oglhclient" }, "release_url": "https://pypi.org/project/oglhclient/1.0.0/", "requires_dist": null, "requires_python": "", "summary": "An API client library for Opengear Lighthouse", "version": "1.0.0" }, "last_serial": 3239353, "releases": { "0.1.3": [ { "comment_text": "", "digests": { "md5": "c6b9ef5ed2f1305210b43b8e54176ce4", "sha256": "750ca8900d054029d259ac26fe1d534fa2ef3aa4b6d1d6fba5a29f5ee9c68bd7" }, "downloads": -1, "filename": "oglhclient-0.1.3.tar.gz", "has_sig": false, "md5_digest": "c6b9ef5ed2f1305210b43b8e54176ce4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3327, "upload_time": "2017-08-08T01:30:33", "url": "https://files.pythonhosted.org/packages/06/d3/e8948d6a0f6ba3dd37895226215f548fa3e717255cf49bc47954ba9a135d/oglhclient-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "84bee494fd337d2d25248648c2b5287d", "sha256": "e575a16b04dbec0582d27173ba9b718212155c5fa97994a4d6114e14afae70e8" }, "downloads": -1, "filename": "oglhclient-0.1.4.tar.gz", "has_sig": false, "md5_digest": "84bee494fd337d2d25248648c2b5287d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3007, "upload_time": "2017-08-08T01:47:06", "url": "https://files.pythonhosted.org/packages/1d/ef/be9d0762a0ecba9453ddbba79a26cb12bfe0b8b6e2257ec0de232b6b9ed0/oglhclient-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "5ef0e18f48b2e6e0b96ebc19802dad34", "sha256": "c99d4bbedaabd866a227ec279f89a15cde41887c8a9bebdaae8430baa603da86" }, "downloads": -1, "filename": "oglhclient-0.1.5.tar.gz", "has_sig": false, "md5_digest": "5ef0e18f48b2e6e0b96ebc19802dad34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3066, "upload_time": "2017-08-10T02:51:52", "url": "https://files.pythonhosted.org/packages/5b/77/39a662771674abbd25b141b9597fed40566ce9035b5c1924db11a484a8dd/oglhclient-0.1.5.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "5066f093c1363fe4f63ab809cfafb61a", "sha256": "a94440c4a7f08e1187487137cd2ca9bffdbb316c665531b93ba30f15c9d216f9" }, "downloads": -1, "filename": "oglhclient-0.1.7.tar.gz", "has_sig": false, "md5_digest": "5066f093c1363fe4f63ab809cfafb61a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3106, "upload_time": "2017-08-11T02:30:24", "url": "https://files.pythonhosted.org/packages/c2/6b/09bab4b6c27f49c76d762950e2ee39298db9f1ae84b8567338fa2c922e9a/oglhclient-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "ef30e91f21ed1486dbc8b34c51e98f0d", "sha256": "649a2d955242bf17dccdf5dc26685ca9f6cf3991122fadb7d9dac57ff5f36007" }, "downloads": -1, "filename": "oglhclient-0.1.8.tar.gz", "has_sig": false, "md5_digest": "ef30e91f21ed1486dbc8b34c51e98f0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2219, "upload_time": "2017-08-11T02:45:32", "url": "https://files.pythonhosted.org/packages/48/ba/62a9cddb33bb354a3a40cc53bce402685d1ca53b01ec4d95fb3be9d09b91/oglhclient-0.1.8.tar.gz" } ], "0.1.8.1": [ { "comment_text": "", "digests": { "md5": "27790e702e2873d83de71d970454c85c", "sha256": "7e568a7a40522dcf3557130bdf283e3a0cdfbd2eae96f44da33817e552e00920" }, "downloads": -1, "filename": "oglhclient-0.1.8.1.tar.gz", "has_sig": false, "md5_digest": "27790e702e2873d83de71d970454c85c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53808, "upload_time": "2017-08-11T02:56:22", "url": "https://files.pythonhosted.org/packages/35/88/c9d52be51cb41287091e9103343d7eb96ec4e8a8450b2ef11536d16eed63/oglhclient-0.1.8.1.tar.gz" } ], "0.1.8.2": [ { "comment_text": "", "digests": { "md5": "653dbf7ee940e61f7242aef70bf99e16", "sha256": "5bb05434233de26f9ddbeaa6a1ef01397f20c223f723e97506464593a752e69a" }, "downloads": -1, "filename": "oglhclient-0.1.8.2.tar.gz", "has_sig": false, "md5_digest": "653dbf7ee940e61f7242aef70bf99e16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1964, "upload_time": "2017-08-11T02:57:15", "url": "https://files.pythonhosted.org/packages/14/4d/95abafdd2637330183e156833472320422a1aa1f10ecd63f2dcc2ac72502/oglhclient-0.1.8.2.tar.gz" } ], "0.1.8.3": [ { "comment_text": "", "digests": { "md5": "754b7ae62c0100ed6f657ee10e56a647", "sha256": "de91c2b1f438d3351c83549c70b3fbbd65a4239a1bd095f3c02bcde4f554eaa5" }, "downloads": -1, "filename": "oglhclient-0.1.8.3.tar.gz", "has_sig": false, "md5_digest": "754b7ae62c0100ed6f657ee10e56a647", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4184, "upload_time": "2017-08-11T02:59:09", "url": "https://files.pythonhosted.org/packages/42/82/c7abae3a5184c2d8f108e73923a4a30899820020211bc1655ae3dceb7946/oglhclient-0.1.8.3.tar.gz" } ], "0.1.8.4": [ { "comment_text": "", "digests": { "md5": "2e65d08546e22d331204743e5b5ea3f1", "sha256": "11011cae22dcb0bd22cfad1e0f38a10fa40630f839e64d1e37998b6ebbaa4bab" }, "downloads": -1, "filename": "oglhclient-0.1.8.4.tar.gz", "has_sig": false, "md5_digest": "2e65d08546e22d331204743e5b5ea3f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4147, "upload_time": "2017-08-11T03:01:19", "url": "https://files.pythonhosted.org/packages/4e/c8/22cf38f181842a5e63fde149412199abd1f9ae20f147fb1bde69d7db25c8/oglhclient-0.1.8.4.tar.gz" } ], "0.1.8.5": [ { "comment_text": "", "digests": { "md5": "63108ba8a85bf4e643de82435c38ef3e", "sha256": "af1bddef167165279428c4c50940423deeb30ea5a12070256f030ff86831af44" }, "downloads": -1, "filename": "oglhclient-0.1.8.5.tar.gz", "has_sig": false, "md5_digest": "63108ba8a85bf4e643de82435c38ef3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4187, "upload_time": "2017-08-11T03:04:30", "url": "https://files.pythonhosted.org/packages/2a/c5/f0f5356d95b969d6de5039e0022bd7cf848387c4aab16c3cc7dcba82caf3/oglhclient-0.1.8.5.tar.gz" } ], "0.1.8.6": [ { "comment_text": "", "digests": { "md5": "3f2e5ac7e5612f784f6efb8bc86d151c", "sha256": "5b5ba86d65c3bd0eed09872757dde7f6fcfba67336c5e031ac87998c1382746f" }, "downloads": -1, "filename": "oglhclient-0.1.8.6.tar.gz", "has_sig": false, "md5_digest": "3f2e5ac7e5612f784f6efb8bc86d151c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2229, "upload_time": "2017-08-11T03:11:09", "url": "https://files.pythonhosted.org/packages/b1/80/a4e3645fbd303d8631ed07b9a84bdbd4672c50c74e1b5da1c96f20966ae5/oglhclient-0.1.8.6.tar.gz" } ], "0.1.8.7": [ { "comment_text": "", "digests": { "md5": "4650ad75585fa1e2a22c9c72dedf72e8", "sha256": "3638313aa5f75ff4c28119a01edd33e7dc6346eab889e2af5fad4dca13e5aec4" }, "downloads": -1, "filename": "oglhclient-0.1.8.7.tar.gz", "has_sig": false, "md5_digest": "4650ad75585fa1e2a22c9c72dedf72e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2210, "upload_time": "2017-08-11T03:12:58", "url": "https://files.pythonhosted.org/packages/f1/28/1187f4ca503500792ff2c6f8cb39a963ce8497af840e383bb279ee0c65d4/oglhclient-0.1.8.7.tar.gz" } ], "0.1.8.7.1": [ { "comment_text": "", "digests": { "md5": "0ab1b05db1a6ee63e4c39076c5bfe996", "sha256": "17df45313c9bc762370732b810aeec61bbf83df1aaeccdfd3a8a9047a5f5690a" }, "downloads": -1, "filename": "oglhclient-0.1.8.7.1.tar.gz", "has_sig": false, "md5_digest": "0ab1b05db1a6ee63e4c39076c5bfe996", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4437, "upload_time": "2017-08-11T03:17:10", "url": "https://files.pythonhosted.org/packages/3e/dc/6e6cdcf24d7d1f471797ab838946902749f8090c857f1123897d6e748ecf/oglhclient-0.1.8.7.1.tar.gz" } ], "0.1.8.7.2": [ { "comment_text": "", "digests": { "md5": "7cb83f99c50322c950e1bbfa429621de", "sha256": "1641e8843079c118af629d30d537ad1f67af54e2e7ce38f4835189847dd4b61a" }, "downloads": -1, "filename": "oglhclient-0.1.8.7.2.tar.gz", "has_sig": false, "md5_digest": "7cb83f99c50322c950e1bbfa429621de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4427, "upload_time": "2017-08-11T03:19:54", "url": "https://files.pythonhosted.org/packages/fa/52/a94884eca7e1b66a003956bc9c29cd447dcc9f30d5b2cd4ba0670ff3602d/oglhclient-0.1.8.7.2.tar.gz" } ], "0.1.8.7.3": [ { "comment_text": "", "digests": { "md5": "63f24b26877f756a6345952310566165", "sha256": "5d7e3e6ffed5c14ed4ba455b44b01d41a53156b365a19b8f9129a152509a4cc4" }, "downloads": -1, "filename": "oglhclient-0.1.8.7.3.tar.gz", "has_sig": false, "md5_digest": "63f24b26877f756a6345952310566165", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2239, "upload_time": "2017-08-11T03:40:42", "url": "https://files.pythonhosted.org/packages/40/66/27575cc242aebb4a249ddc4f30f16b48f1b66e44a251c98872a2bbb69cff/oglhclient-0.1.8.7.3.tar.gz" } ], "0.1.8.7.4": [ { "comment_text": "", "digests": { "md5": "9f244ff9655a6c2d466f4079a0298f68", "sha256": "2c19cee369dff444ecaaad2a5daac3da0da243dd3cbbce4f3f76fd1ac18666ec" }, "downloads": -1, "filename": "oglhclient-0.1.8.7.4.tar.gz", "has_sig": false, "md5_digest": "9f244ff9655a6c2d466f4079a0298f68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2232, "upload_time": "2017-08-11T03:43:21", "url": "https://files.pythonhosted.org/packages/91/ac/2a9279bd12c84c09fef97554bad3924c29fa2e6c1846f204ada75cfa4ae0/oglhclient-0.1.8.7.4.tar.gz" } ], "0.1.8.7.5": [ { "comment_text": "", "digests": { "md5": "a993c0e57d06dc7c3b838351f855f019", "sha256": "33ffca5fe98ea20af13f3840f05f074a1a9c6fd441a69a873a8c3c68cb305ad0" }, "downloads": -1, "filename": "oglhclient-0.1.8.7.5.tar.gz", "has_sig": false, "md5_digest": "a993c0e57d06dc7c3b838351f855f019", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2233, "upload_time": "2017-08-11T03:49:18", "url": "https://files.pythonhosted.org/packages/4c/b4/ca45219d764f545cba2170a472f48413dd5ac16a8aec88f08ea8f794791f/oglhclient-0.1.8.7.5.tar.gz" } ], "0.1.8.7.6": [ { "comment_text": "", "digests": { "md5": "1852db424a6a317db58aa9711db666d8", "sha256": "fd12db898cabfc6940c5db4b3c5d36dd691d65171678884fd16d7277458ce8d9" }, "downloads": -1, "filename": "oglhclient-0.1.8.7.6.tar.gz", "has_sig": false, "md5_digest": "1852db424a6a317db58aa9711db666d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4450, "upload_time": "2017-08-11T03:51:06", "url": "https://files.pythonhosted.org/packages/28/01/760f5b064a7ae5d1d879c5c05f25cdfc0f4118adb952637bbbbc93088dd1/oglhclient-0.1.8.7.6.tar.gz" } ], "0.1.8.7.7": [ { "comment_text": "", "digests": { "md5": "fe004486571436fdf778d9e9a48a11ee", "sha256": "ee4e719825bd54ebb7ae9e24368199bb963198570ae7b7a80eaeff9d28f44016" }, "downloads": -1, "filename": "oglhclient-0.1.8.7.7.tar.gz", "has_sig": false, "md5_digest": "fe004486571436fdf778d9e9a48a11ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24453, "upload_time": "2017-08-11T03:53:29", "url": "https://files.pythonhosted.org/packages/15/88/a869909a1b1ae6f8ece74992512460f8b8dc1a3f94c81ab8d9c9ee3b61e9/oglhclient-0.1.8.7.7.tar.gz" } ], "0.1.8.7.8": [ { "comment_text": "", "digests": { "md5": "c47f175b2bfb275e171cde33859588de", "sha256": "af5bfe2fa1809ec79f7b78592a01b24c07082d0d7da880eca86614b2b95bdc5c" }, "downloads": -1, "filename": "oglhclient-0.1.8.7.8.tar.gz", "has_sig": false, "md5_digest": "c47f175b2bfb275e171cde33859588de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24458, "upload_time": "2017-08-11T03:54:09", "url": "https://files.pythonhosted.org/packages/91/ed/3b562413f52ba0e8bf2076a45d036bc3ff84ec4fd207e57cb5257ced810c/oglhclient-0.1.8.7.8.tar.gz" } ], "0.1.8.7.9": [ { "comment_text": "", "digests": { "md5": "71fff7801b5761f0ed10829c5f6a0bca", "sha256": "5e405799550e655e690ae679b3f469182fcbd1d6ec850a7c7f3aae21b43793e9" }, "downloads": -1, "filename": "oglhclient-0.1.8.7.9.tar.gz", "has_sig": false, "md5_digest": "71fff7801b5761f0ed10829c5f6a0bca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54065, "upload_time": "2017-08-11T03:54:51", "url": "https://files.pythonhosted.org/packages/9c/0e/cfab456d802f7bc64d8639f4901b3c54f9306331c1df9673e15687027d58/oglhclient-0.1.8.7.9.tar.gz" } ], "0.1.8.8.0": [ { "comment_text": "", "digests": { "md5": "642b7a2fd5af45b9f1cefe92318327d5", "sha256": "6b815a1bb789065cb3ebad54b8a8a2782c5535f480042a684ba90b8f58ee1735" }, "downloads": -1, "filename": "oglhclient-0.1.8.8.0.tar.gz", "has_sig": false, "md5_digest": "642b7a2fd5af45b9f1cefe92318327d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54325, "upload_time": "2017-08-13T01:34:46", "url": "https://files.pythonhosted.org/packages/a7/34/06d0eb37ddee91f8435bcc2cab60af7a51efa8bf78d56b0a33200a168426/oglhclient-0.1.8.8.0.tar.gz" } ], "0.1.8.8.3": [ { "comment_text": "", "digests": { "md5": "4dd44da22988dd050a4b98e53157ed7c", "sha256": "f9c258a6f98d7fe3b9d3981f14c073ac528f132d0e357a5a0df15afef906e3d8" }, "downloads": -1, "filename": "oglhclient-0.1.8.8.3.tar.gz", "has_sig": false, "md5_digest": "4dd44da22988dd050a4b98e53157ed7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54194, "upload_time": "2017-08-13T17:02:25", "url": "https://files.pythonhosted.org/packages/c5/69/26a83182a41402e3c20c4477e181a434e355ae535b60b9650acb83b718ca/oglhclient-0.1.8.8.3.tar.gz" } ], "0.1.8.8.4": [ { "comment_text": "", "digests": { "md5": "a833c7c18443b9350dedcca7d1264768", "sha256": "b8a08e9a64b87a45ab6fbfc494c07cfdd2044c68a7d844a76f71a51971fdaf80" }, "downloads": -1, "filename": "oglhclient-0.1.8.8.4.tar.gz", "has_sig": false, "md5_digest": "a833c7c18443b9350dedcca7d1264768", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55904, "upload_time": "2017-08-20T21:43:29", "url": "https://files.pythonhosted.org/packages/35/0c/cdf7e26df5ce93cad35397f036289ccc3f16e315882a810ae9b1c705cb64/oglhclient-0.1.8.8.4.tar.gz" } ], "0.1.8.8.4.1": [ { "comment_text": "", "digests": { "md5": "6a57c116c1917101860608b604a3e0f9", "sha256": "23731536a5ef633ece6e1e1b21cea92ddafdb7c546788655f997e717dac6d605" }, "downloads": -1, "filename": "oglhclient-0.1.8.8.4.1.tar.gz", "has_sig": false, "md5_digest": "6a57c116c1917101860608b604a3e0f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55910, "upload_time": "2017-08-21T01:51:11", "url": "https://files.pythonhosted.org/packages/24/27/091a9426d5753225f13baa6deb2d6988c4b59931cceb14e24479531056a1/oglhclient-0.1.8.8.4.1.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "c5ddecb6303c916f13edff3b40a20ff0", "sha256": "a45f9625caef317dfad61a750eeee365b728cd260777de0e023be41476e32d0b" }, "downloads": -1, "filename": "oglhclient-0.9.tar.gz", "has_sig": false, "md5_digest": "c5ddecb6303c916f13edff3b40a20ff0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54564, "upload_time": "2017-08-25T06:06:00", "url": "https://files.pythonhosted.org/packages/4c/59/df4e249f15e15554dab067a463af65151916b58ad9cf5b66e231bc240d55/oglhclient-0.9.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "994708e63f07654bb3bb74dfd3ec3edd", "sha256": "b22150d3d74456c8e8fa7278bc7fc0812c15f189b0762345ce43b14d78725761" }, "downloads": -1, "filename": "oglhclient-0.9.1.tar.gz", "has_sig": false, "md5_digest": "994708e63f07654bb3bb74dfd3ec3edd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54581, "upload_time": "2017-08-25T06:08:51", "url": "https://files.pythonhosted.org/packages/0d/66/e87365773d006bbd3ccf8c9d091c1f45411fe0a886074db9ae8c708c3746/oglhclient-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "aa23db01e0bbe14542ec5ce1f98f4875", "sha256": "5c0380726637c5936d310caa994b35291b2d42c772943f295f508a1c0d2da840" }, "downloads": -1, "filename": "oglhclient-0.9.2.tar.gz", "has_sig": false, "md5_digest": "aa23db01e0bbe14542ec5ce1f98f4875", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55882, "upload_time": "2017-08-25T06:14:14", "url": "https://files.pythonhosted.org/packages/b8/0d/06800c92dd6cf8e76ec299ae45d521ab1e52106bbfeb1dfd057b290e35aa/oglhclient-0.9.2.tar.gz" } ], "0.9.9.0": [ { "comment_text": "", "digests": { "md5": "8c077050374c7d002d9d443403970429", "sha256": "5814b682b534848718fb41e74cc3425af75245160f792886f580172b6dc5e28e" }, "downloads": -1, "filename": "oglhclient-0.9.9.0.tar.gz", "has_sig": false, "md5_digest": "8c077050374c7d002d9d443403970429", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54911, "upload_time": "2017-10-10T12:58:28", "url": "https://files.pythonhosted.org/packages/2c/ed/9e270fe196cf92d54b41315629ff18505336a66e3b09ecab5ceaf979647e/oglhclient-0.9.9.0.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "95f3b6cc28b6664651de678e16a34bd0", "sha256": "8c24d01f011cc49355d20ad96f22f448e2761194aaf53969577d88631bc222e5" }, "downloads": -1, "filename": "oglhclient-1.0.0.tar.gz", "has_sig": false, "md5_digest": "95f3b6cc28b6664651de678e16a34bd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54903, "upload_time": "2017-10-10T13:26:43", "url": "https://files.pythonhosted.org/packages/85/79/5b1fdfe5adf1f9813e626a97823f375e211429426cdf242536e3cf6ba604/oglhclient-1.0.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "95f3b6cc28b6664651de678e16a34bd0", "sha256": "8c24d01f011cc49355d20ad96f22f448e2761194aaf53969577d88631bc222e5" }, "downloads": -1, "filename": "oglhclient-1.0.0.tar.gz", "has_sig": false, "md5_digest": "95f3b6cc28b6664651de678e16a34bd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54903, "upload_time": "2017-10-10T13:26:43", "url": "https://files.pythonhosted.org/packages/85/79/5b1fdfe5adf1f9813e626a97823f375e211429426cdf242536e3cf6ba604/oglhclient-1.0.0.tar.gz" } ] }