{ "info": { "author": "artanicus", "author_email": "python-cozify@nocturnal.fi", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Utilities" ], "description": "python-cozify\n=============\n\n|docs| |ci| |coverage| |pyversions| |gitter|\n\nUnofficial Python3 API bindings for the (unpublished) Cozify API.\nIncludes high-level helpers for easier use of the APIs,\nfor example an automatic authentication flow, and low-level 1:1 API functions.\n\n.. contents:: :local:\n\nInstallation\n------------\n\nPython3.4 is the current minimum supported version of Python.\nFor example Ubuntu 14.04 LTS is still barely supported in theory but not explicitly tested for.\n\nThe recommended way is to install from PyPi:\n\n.. code:: console\n\n sudo -H pip3 install cozify\n\nTo benefit from new features you'll need to update the library (pip does not auto-update):\n\n.. code:: console\n\n sudo -H pip3 install -U cozify\n\nor clone the master branch of this repo (master stays at current release) and:\n\n.. code:: console\n\n sudo python3 setup.py install\n\nTo develop python-cozify clone the devel branch and submit pull requests against the devel branch.\nNew releases are cut from the devel branch as needed.\n\nBasic usage\n-----------\nThese are merely some simple examples, for the full documentation see: `http://python-cozify.readthedocs.io/en/latest/`\n\nread devices by capability, print temperature data\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n.. code:: python\n\n from cozify import hub\n devices = hub.devices(capabilities=hub.capability.TEMPERATURE)\n for id, dev in devices.items():\n print('{0}: {1}C'.format(dev['name'], dev['state']['temperature']))\n\nonly authenticate\n~~~~~~~~~~~~~~~~~\n\n.. code:: python\n\n from cozify import cloud\n cloud.authenticate()\n # authenticate() is interactive and usually triggered automatically\n # authentication data is stored in ~/.config/python-cozify/python-cozify.cfg\n\nauthenticate with a non-default state storage\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n.. code:: python\n\n from cozify import cloud, config\n config.setStatePath('/tmp/testing-state.cfg')\n cloud.authenticate()\n # authentication and other useful data is now stored in the defined location instead of ~/.config/python-cozify/python-cozify.cfg\n # you could also use the environment variable XDG_CONFIG_HOME to override where config files are stored\n\nOn Capabilities\n---------------\nThe most practical way to \"find\" devices for operating on is currently to filter the devices list by their capabilties. The\nmost up to date list of recognized capabilities can be seen at `cozify/hub.py `_\n\nIf the capability you need is not yet supported, open a bug to get it added. One way to compare your live hub device's capabilities\nto those implemented is running the util/capabilities_list.py tool. It will list implemented and gathered capabilities from your live environment.\nTo get all of your previously unknown capabilities implemented, just copy-paste the full output of the utility into a new bug.\n\nIn short capabilities are tags assigned to devices by Cozify that mostly guarantee the data related to that capability will be in the same format and structure.\nFor example the capabilities based example code in this document filters all the devices that claim to support temperature and reads their name and temperature state.\nMultiple capabilities can be given in a filter by providing a list of capabilities. By default any capability in the list can match (OR filter) but it can be flipped to AND mode\nwhere every capability must be present on a device for it to qualify. For example, if you only want multi-sensors that support both temperature and humidity monitoring you could define a filter as:\n\n.. code:: python\n\n devices = hub.devices(capabilities=[ hub.capability.TEMPERATURE, hub.capability.HUMIDITY ], and_filter=True)\n\nKeeping authentication valid\n----------------------------\nIf the cloud token expires, the only option to get a new one is an interactive prompt for an OTP.\nSince most applications will want to avoid that as much as possible there are a few tips to keep a valid token alive.\nAt the time of writing tokens are valid for 28 days during which they can be seamlessly refreshed.\n\nIn most cases it isn't necessary to directly call cloud.refresh() if you're already using cloud.ping() to test token validity.\ncloud.ping() will also perform a refresh check after a successful ping unless explicitly told not to do so.\n\nTo refresh a token you can call as often as you want:\n\n.. code:: python\n\n cloud.refresh()\n\nBy default keys older than a day will be re-requested and otherwise no refresh is performed. The refresh can be forced:\n\n.. code:: python\n\n cloud.refresh(force=True)\n\nAnd the expiry duration can be altered (also when calling cloud.ping()):\n\n.. code:: python\n\n cloud.refresh(expiry=datetime.timedelta(days=20))\n # or\n cloud.ping(autorefresh=True, expiry=datetime.timedelta(days=20))\n\nWorking Remotely\n----------------\nBy default queries to the hub are attempted via local LAN. Also by default \"remoteness\" autodetection is on and thus\nif it is determined during cloud.authentication() or a hub.ping() call that you seem to not be in the same network, the state is flipped.\nBoth the remote state and autodetection can be overriden in most if not all funcions by the boolean keyword arguments 'remote' and 'autoremote'. They can also be queried or permanently changed by the hub.remote() and hub.autoremote() functions.\n\nUsing Multiple Hubs\n-------------------\nEverything has been designed to support multiple hubs registered to the same Cozify Cloud account. All hub operations can be targeted by setting the keyword argument 'hub_id' or 'hub_name'. The developers do not as of yet have access to multiple hubs so proper testing of multi functionality has not been performed. If you run into trouble, please open bugs so things can be improved.\n\nThe remote state of hubs is kept separately so there should be no issues calling your home hub locally but operating on a summer cottage hub remotely at the same time.\n\nEnconding Pitfalls\n------------------\nThe hub provides data encoded as a utf-8 json string. Python-cozify transforms this into a Python dictionary\nwhere string values are kept as unicode strings. Normally this isn't an issue, as long as your system supports utf-8.\nIf not, you will run into trouble printing for example device names with non-ascii characters:\n\n UnicodeEncodeError: 'ascii' codec can't encode character '\\xe4' in position 34: ordinal not in range(128)\n\nThe solution is to change your system locale to support utf-8. How this is done is however system dependant.\nAs a first test try temporarily overriding your locale:\n\n.. code:: console\n\n LC_ALL='en_US.utf8' python3 program.py\n\nSample projects\n---------------\n\n- `github.com/Artanicus/cozify-temp `__\n - Store Multisensor data into InfluxDB\n- Take a look at the util/ directory for some crude small tools using the library that have been useful during development.\n- File an issue to get your project added here\n\nDevelopment\n-----------\nTo develop python-cozify clone the devel branch and submit pull requests against the devel branch.\nNew releases are cut from the devel branch as needed.\n\nTests\n~~~~~\npytest is used for unit tests.\n\n- Certain tests are marked as \"live\" tests and require an active authentication state and a real hub to query against. Live tests are non-destructive.\n- Some tests are marked as \"destructive\" and will cause changes such as a light being turned on or tokens getting invalidated on purpose.\n- A few tests are marked as \"remote\" and are only expected to succeed when testing remotely, i.e. outside the LAN of the hub.\n- Most tests are marked as \"logic\" and do not require anything external. If no set is defined, only logic tests are run.\n\nDuring development you can run the test suite right from the source directory:\n\n.. code:: console\n\n pytest\n # or run only live tests:\n pytest -m live\n # run everything except destructive tests:\n pytest -m \"not destructive\"\n\nTo run the test suite on an already installed python-cozify (defining a set is mandatory, otherwise ALL sets are run including destructive):\n\n.. code:: console\n\n pytest -v -m logic --pyargs cozify\n\n\nRoadmap, aka. Current Limitations\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n- Authentication flow has been improved quite a bit but it would benefit a lot from real-world feedback.\n- For now there are only read calls. Next up is implementing ~all hub calls at the raw level and then wrapping them for ease of use. If there's something you want to use sooner than later file an issue so it can get prioritized!\n- Device model is non-existant and the old implementations are bad and deprecated. Active work ongoing to filter by capability at a low level first, then perhaps a more object oriented model on top of that.\n\n\n.. |docs| image:: https://readthedocs.org/projects/python-cozify/badge/?version=latest\n :target: http://python-cozify.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n.. |ci| image:: https://travis-ci.org/Artanicus/python-cozify.svg?branch=master\n :target: https://travis-ci.org/Artanicus/python-cozify\n :alt: Build Status\n\n.. |coverage| image:: https://codecov.io/gh/Artanicus/python-cozify/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/Artanicus/python-cozify\n :alt: Coverage Status\n\n\n.. |pyversions| image:: https://img.shields.io/pypi/pyversions/cozify.svg\n :alt: PyPI - Python Version\n\n.. |gitter| image:: https://badges.gitter.im/python-cozify/Lobby.svg\n :alt: Join the chat at https://gitter.im/python-cozify/Lobby\n :target: https://gitter.im/python-cozify/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\n\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/Artanicus/python-cozify", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "cozify", "package_url": "https://pypi.org/project/cozify/", "platform": "", "project_url": "https://pypi.org/project/cozify/", "project_urls": { "Documentation": "https://python-cozify.readthedocs.io/", "Homepage": "https://github.com/Artanicus/python-cozify" }, "release_url": "https://pypi.org/project/cozify/0.2.19/", "requires_dist": [ "absl-py", "requests" ], "requires_python": ">=3.4", "summary": "Unofficial Python3 client library for the Cozify API.", "version": "0.2.19" }, "last_serial": 5780405, "releases": { "0.1": [], "0.2": [ { "comment_text": "", "digests": { "md5": "6031bcdcb614d748f063eff9f612dcae", "sha256": "c41ac4fc2e7dfad5b78dd0c5a9c84c5b6ed606b7829c0254b5f851fb39a17913" }, "downloads": -1, "filename": "cozify-0.2.tar.gz", "has_sig": false, "md5_digest": "6031bcdcb614d748f063eff9f612dcae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3881, "upload_time": "2017-02-21T21:30:06", "url": "https://files.pythonhosted.org/packages/b4/f1/9b76b6c30e30a1c229a8352f2b9a31c051dbcce187131c553bf69f2938a2/cozify-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "c2ebfb5daf591e6da3a090cb2d5e8211", "sha256": "78c4b0d0cc17d6ec7dfc612d39e073ce95790cf2347f79951566c1ad1154f206" }, "downloads": -1, "filename": "cozify-0.2.1.tar.gz", "has_sig": false, "md5_digest": "c2ebfb5daf591e6da3a090cb2d5e8211", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5371, "upload_time": "2017-03-05T22:11:49", "url": "https://files.pythonhosted.org/packages/dd/ef/e0a354d039b04344e85703b1ca762b85f47ef54cf844fc0daf5b5f7ad7b3/cozify-0.2.1.tar.gz" } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "c80931b05123e66bf84a76414460e5ca", "sha256": "6e430ac2df5bbad7d86928f940e5c92ef7877a1ada75b0ce4a51b9a3269a10e1" }, "downloads": -1, "filename": "cozify-0.2.10.tar.gz", "has_sig": false, "md5_digest": "c80931b05123e66bf84a76414460e5ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15481, "upload_time": "2017-12-21T19:55:09", "url": "https://files.pythonhosted.org/packages/c7/6d/80a133b8f23fe0af91db659e89ca68c59d910e399a213a42366d6a13f718/cozify-0.2.10.tar.gz" } ], "0.2.11": [ { "comment_text": "", "digests": { "md5": "3f9a42262d5782f6682e4e27b17cf406", "sha256": "b04e9a86545244fb313906abf3f66bcd4c4d8a448d1b9094ace07c695c9808e5" }, "downloads": -1, "filename": "cozify-0.2.11.tar.gz", "has_sig": false, "md5_digest": "3f9a42262d5782f6682e4e27b17cf406", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17425, "upload_time": "2018-02-08T11:19:50", "url": "https://files.pythonhosted.org/packages/31/5d/b5517b779cd49a66126c799389de2653465ea8d8bb593450908e9675b1eb/cozify-0.2.11.tar.gz" } ], "0.2.12": [ { "comment_text": "", "digests": { "md5": "29fb5ee33510f5fdfe624283dcc3ea65", "sha256": "17133b72d645970996376cc0350ea235609ec07efe31732609329a21a5cd35cf" }, "downloads": -1, "filename": "cozify-0.2.12.tar.gz", "has_sig": false, "md5_digest": "29fb5ee33510f5fdfe624283dcc3ea65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20020, "upload_time": "2018-03-04T15:04:16", "url": "https://files.pythonhosted.org/packages/aa/e2/1b2899fbb02d1b71c261b70a3844647058155139c6872a11bc650f6b229d/cozify-0.2.12.tar.gz" } ], "0.2.13": [ { "comment_text": "", "digests": { "md5": "6bdbbccbfbf7f43b6bb19e676cd7999e", "sha256": "925228da905df6c1adc4686582c4bc562262334f3804b15e237f2f5bdc7f610d" }, "downloads": -1, "filename": "cozify-0.2.13.tar.gz", "has_sig": false, "md5_digest": "6bdbbccbfbf7f43b6bb19e676cd7999e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21489, "upload_time": "2018-03-12T19:42:52", "url": "https://files.pythonhosted.org/packages/71/2e/8f3f98d366fecdf04968e3ca96c8043ce24265517ccf013180cb1079401e/cozify-0.2.13.tar.gz" } ], "0.2.14": [ { "comment_text": "", "digests": { "md5": "43ef643215c8f084617cc316d7634ca7", "sha256": "6384160feb0d0f88048a68878775c9d14969d3aca35dde60ee484cc93403a5f4" }, "downloads": -1, "filename": "cozify-0.2.14-py3-none-any.whl", "has_sig": false, "md5_digest": "43ef643215c8f084617cc316d7634ca7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 25255, "upload_time": "2018-03-31T16:08:06", "url": "https://files.pythonhosted.org/packages/06/88/3f0aed4e6f9d267e51e49568fc7d671cd484fd959444c1f8e77d51b4bdcb/cozify-0.2.14-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f8bf9fd69876c95021f5db2656262366", "sha256": "b0ad8f96ab3df04d6b32a5fbd817609806988b51de7defbdf0a5e5f214ff9290" }, "downloads": -1, "filename": "cozify-0.2.14.tar.gz", "has_sig": false, "md5_digest": "f8bf9fd69876c95021f5db2656262366", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22338, "upload_time": "2018-03-24T16:42:28", "url": "https://files.pythonhosted.org/packages/7b/63/a54e4d828764d97a1b7f14e0f4a2b78a823d4d9e66618bf287306361cf7d/cozify-0.2.14.tar.gz" } ], "0.2.15": [ { "comment_text": "", "digests": { "md5": "4a1809f3356f2f56f07b49780776c9f2", "sha256": "75e4fe669bf21ffb6ca6f06afd851fe2ae5019e5b88ba1ebdb4da9b3cd5755c9" }, "downloads": -1, "filename": "cozify-0.2.15-py3-none-any.whl", "has_sig": false, "md5_digest": "4a1809f3356f2f56f07b49780776c9f2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 26350, "upload_time": "2018-04-14T22:59:55", "url": "https://files.pythonhosted.org/packages/91/56/5f3fde491a2f60895003d7c0cdc1e916f3aa1ae9043f2f1262eea94d36aa/cozify-0.2.15-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d90b8a40f7f3193ef66529d6823c65b", "sha256": "cce0932c1ee81f19c2057e32867230b409067de0269d9e5f3eea559cb6e73511" }, "downloads": -1, "filename": "cozify-0.2.15.tar.gz", "has_sig": false, "md5_digest": "1d90b8a40f7f3193ef66529d6823c65b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25073, "upload_time": "2018-04-14T22:59:47", "url": "https://files.pythonhosted.org/packages/4e/80/1bf74bc195dfb8caed252dc5efd9af9e3e499f9d941f26179115ff75fab7/cozify-0.2.15.tar.gz" } ], "0.2.16": [ { "comment_text": "", "digests": { "md5": "7774d69836901121bb77284eb8988ddf", "sha256": "c2ae680f097e612430f15bc45a4d4704bd4c9dccd37e6ad8bf288f3dd999aae9" }, "downloads": -1, "filename": "cozify-0.2.16-py3-none-any.whl", "has_sig": false, "md5_digest": "7774d69836901121bb77284eb8988ddf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 28090, "upload_time": "2018-05-04T07:44:22", "url": "https://files.pythonhosted.org/packages/0c/7f/6664bd5a31ee0819165fdb6a3dbed3ca1473e61657ec334e3060d2b406bb/cozify-0.2.16-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1c6b859aaded1f12ae24401cc171ede3", "sha256": "9baded7750967a7ce99f115de2a64bb7a7ebb6bf093c1d77f921f15b38d7f869" }, "downloads": -1, "filename": "cozify-0.2.16.tar.gz", "has_sig": false, "md5_digest": "1c6b859aaded1f12ae24401cc171ede3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 25755, "upload_time": "2018-05-04T07:44:24", "url": "https://files.pythonhosted.org/packages/80/e2/f739ef4c5a95ad4ed1b8f9698c2e7f243fb4860f584380124819a608c989/cozify-0.2.16.tar.gz" } ], "0.2.17": [ { "comment_text": "", "digests": { "md5": "957370a6201705727c6fe8092205d74c", "sha256": "51599afd8323d28314f6ba7cab12b717790d197db1bc2b61b980d7108e86da74" }, "downloads": -1, "filename": "cozify-0.2.17-py3-none-any.whl", "has_sig": false, "md5_digest": "957370a6201705727c6fe8092205d74c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 26293, "upload_time": "2018-06-28T12:42:02", "url": "https://files.pythonhosted.org/packages/01/a0/848d615c3e9d1e0ded32ced75575756249fac143c4e892f829d94bbadd8e/cozify-0.2.17-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5feda8e063c2ca1d8ca80c2cae02fd28", "sha256": "e818310e1be6ebb9034145e7f7d890238512b07e015ed68eeebcae706c5db9c5" }, "downloads": -1, "filename": "cozify-0.2.17.tar.gz", "has_sig": false, "md5_digest": "5feda8e063c2ca1d8ca80c2cae02fd28", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 25630, "upload_time": "2018-06-28T12:42:03", "url": "https://files.pythonhosted.org/packages/37/58/3cb446aef7e29e459cbc7bb95e8fcb1d3e517dd7d81a3ed135a198604915/cozify-0.2.17.tar.gz" } ], "0.2.18": [ { "comment_text": "", "digests": { "md5": "27499989f315dc56cc4f767e9292df39", "sha256": "34bc6a637a95a269ddd09ec326291aebbe3c14997e2b6a3556621e8c337ab2bc" }, "downloads": -1, "filename": "cozify-0.2.18-py3-none-any.whl", "has_sig": false, "md5_digest": "27499989f315dc56cc4f767e9292df39", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 26293, "upload_time": "2018-11-12T09:07:13", "url": "https://files.pythonhosted.org/packages/2f/ea/fb7dc5440e6189b32517ecd66776a741726f647ec314368376f7b03d0909/cozify-0.2.18-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1763df95d2217f91c1b6437a0b601525", "sha256": "466b77bb16c881ff197ae4bd5a5ee12b5bf8d073a8e1023fbc363d7fa241ecce" }, "downloads": -1, "filename": "cozify-0.2.18.tar.gz", "has_sig": false, "md5_digest": "1763df95d2217f91c1b6437a0b601525", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 25630, "upload_time": "2018-11-12T09:07:15", "url": "https://files.pythonhosted.org/packages/96/cd/719ec6fe0ed2307d7c9b479e909d776a8bceca5f317970566faa55f136e5/cozify-0.2.18.tar.gz" } ], "0.2.19": [ { "comment_text": "", "digests": { "md5": "ee8275103e8405b765eff454b6a0efd4", "sha256": "aebdedb3f1ed014aa0a2d3b6f794a1efd3720abefa264481c3f1809003f08442" }, "downloads": -1, "filename": "cozify-0.2.19-py3-none-any.whl", "has_sig": false, "md5_digest": "ee8275103e8405b765eff454b6a0efd4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 26309, "upload_time": "2019-09-04T10:30:41", "url": "https://files.pythonhosted.org/packages/f8/99/c2c15bfc941cb43d3d7153d587ae097eb2b4fed6507e2477822476d496c0/cozify-0.2.19-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "43c0d8b82a93790543fe0a12fb475975", "sha256": "d0d0de2b4e74f9866decd12d8251f916ae6269fd94002745db12b508c7821872" }, "downloads": -1, "filename": "cozify-0.2.19.tar.gz", "has_sig": false, "md5_digest": "43c0d8b82a93790543fe0a12fb475975", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 25664, "upload_time": "2019-09-04T10:30:43", "url": "https://files.pythonhosted.org/packages/77/cb/a099493eea65e299e6fec67433a144e37c2eed6cdfa618e1f1ab6181850b/cozify-0.2.19.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "dd28986cfc94bca5b462c43234704832", "sha256": "7c7be36c29817f9e08876770eec0d1a3e71057561a61bc15dfd05e0bc4c33e53" }, "downloads": -1, "filename": "cozify-0.2.2.tar.gz", "has_sig": false, "md5_digest": "dd28986cfc94bca5b462c43234704832", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5552, "upload_time": "2017-04-01T18:17:07", "url": "https://files.pythonhosted.org/packages/64/e7/89698ec55a40bc7b514760fa157708fbfa93636de07a43e74cf61bd462d9/cozify-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "a465f20faa57086a9f8036d8681f5ebe", "sha256": "04e215c317e573feb524d59f851bcfda3c814fb52683161ef2ddc88ea79e385f" }, "downloads": -1, "filename": "cozify-0.2.3.tar.gz", "has_sig": false, "md5_digest": "a465f20faa57086a9f8036d8681f5ebe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6061, "upload_time": "2017-04-06T13:50:39", "url": "https://files.pythonhosted.org/packages/92/b8/0223e505f5706aa7eb787fc2fc46ee5fae04415064f9d94d032593664767/cozify-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "831b5db2df67223e6d507456b06277a6", "sha256": "00ff148ad32ea8d6eea4975f67fddd3071f65c5c46c1e5f8686eb10af45bb999" }, "downloads": -1, "filename": "cozify-0.2.4.tar.gz", "has_sig": false, "md5_digest": "831b5db2df67223e6d507456b06277a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6219, "upload_time": "2017-04-26T14:29:04", "url": "https://files.pythonhosted.org/packages/39/cf/05f1974ff0f48cf423d4c2a823a7d6e89b4b95667d8ec621b7373f7d8bb8/cozify-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "ad4904fca140402296028e037652c246", "sha256": "ffa48bf7bb6c386e4681b671557360697b8eac6520763b75a394f7a2486f4a75" }, "downloads": -1, "filename": "cozify-0.2.5.tar.gz", "has_sig": false, "md5_digest": "ad4904fca140402296028e037652c246", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7016, "upload_time": "2017-09-02T09:59:10", "url": "https://files.pythonhosted.org/packages/40/27/57e06f31bf1c818776363e469c74240b40bc21bb48d89a8b5e843d953531/cozify-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "c00e57f151c855f2983e881047063885", "sha256": "2f37573d47a8734e4b2c7645af537dce6ac279e03ef3c6a5a647cf14798e6741" }, "downloads": -1, "filename": "cozify-0.2.6.tar.gz", "has_sig": false, "md5_digest": "c00e57f151c855f2983e881047063885", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8964, "upload_time": "2017-10-14T13:59:18", "url": "https://files.pythonhosted.org/packages/a4/e7/ec897cc4ed8ff213e89e442a0704918e53c352972c7eb5e865fd40308f40/cozify-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "43f0c6ca00fce0b67bb7ec1646a7a12f", "sha256": "22bfcf8d425ec0a1e447c598d658f8a965c55cb21759ce6f605f7d95cd1368ba" }, "downloads": -1, "filename": "cozify-0.2.7.tar.gz", "has_sig": false, "md5_digest": "43f0c6ca00fce0b67bb7ec1646a7a12f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9193, "upload_time": "2017-10-14T14:07:32", "url": "https://files.pythonhosted.org/packages/67/1c/1346c49d0490bb6872c1d8d9487a60698720abb2ae8b3f3904c056058c9c/cozify-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "bfd0b2587e608325f3db05d938f6502c", "sha256": "88cccbf9fc29588a451d60c32b6dc0119b7bace685a6bb774f3098feea44222b" }, "downloads": -1, "filename": "cozify-0.2.8.tar.gz", "has_sig": false, "md5_digest": "bfd0b2587e608325f3db05d938f6502c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11278, "upload_time": "2017-11-19T19:41:23", "url": "https://files.pythonhosted.org/packages/e6/34/e170ed1c5609fcb28a5b67936a3f66203e4d6f332f449c576e1554a660d5/cozify-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "849bc27f9da0b64bda55acf1f95bd27a", "sha256": "72b7b815968f8d1eb6aae4af5d2120238368be7569326394ccbb6db68f5f193d" }, "downloads": -1, "filename": "cozify-0.2.9.tar.gz", "has_sig": false, "md5_digest": "849bc27f9da0b64bda55acf1f95bd27a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13682, "upload_time": "2017-12-16T21:03:56", "url": "https://files.pythonhosted.org/packages/e6/95/3221426f10e274feefdbba9b95eba23829392589c5a6d935b2594d9b2310/cozify-0.2.9.tar.gz" } ], "0.2.9.1": [ { "comment_text": "", "digests": { "md5": "b036748942723f9f4cd8f23e56d0a75c", "sha256": "1f3610b7565ee1dbd4f7845eef03b8f9071cbc3f3ef5b9177254bb74e2574ed7" }, "downloads": -1, "filename": "cozify-0.2.9.1.tar.gz", "has_sig": false, "md5_digest": "b036748942723f9f4cd8f23e56d0a75c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13692, "upload_time": "2017-12-20T15:18:56", "url": "https://files.pythonhosted.org/packages/88/f0/ccd5f9078ac053a5487227e4882316c2f55594f2a8eddc3a83f9d7f25ba7/cozify-0.2.9.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ee8275103e8405b765eff454b6a0efd4", "sha256": "aebdedb3f1ed014aa0a2d3b6f794a1efd3720abefa264481c3f1809003f08442" }, "downloads": -1, "filename": "cozify-0.2.19-py3-none-any.whl", "has_sig": false, "md5_digest": "ee8275103e8405b765eff454b6a0efd4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.4", "size": 26309, "upload_time": "2019-09-04T10:30:41", "url": "https://files.pythonhosted.org/packages/f8/99/c2c15bfc941cb43d3d7153d587ae097eb2b4fed6507e2477822476d496c0/cozify-0.2.19-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "43c0d8b82a93790543fe0a12fb475975", "sha256": "d0d0de2b4e74f9866decd12d8251f916ae6269fd94002745db12b508c7821872" }, "downloads": -1, "filename": "cozify-0.2.19.tar.gz", "has_sig": false, "md5_digest": "43c0d8b82a93790543fe0a12fb475975", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 25664, "upload_time": "2019-09-04T10:30:43", "url": "https://files.pythonhosted.org/packages/77/cb/a099493eea65e299e6fec67433a144e37c2eed6cdfa618e1f1ab6181850b/cozify-0.2.19.tar.gz" } ] }