{ "info": { "author": "David McNett", "author_email": "nugget@macnugget.org", "bugtrack_url": null, "classifiers": [], "description": "insteonplm\n==========\n\n|Build Status| |GitHub release| |PyPI|\n\nThis is a Python package to interface with an Insteon Modem. It has been\ntested to work with most USB or RS-232 serial based devices such as the\n`2413U `__,\n`2412S `__,\n`2448A7 `__ and Hub models\n`2242 `__\nand `2245 `__. Other models have\nnot been tested but the underlying protocol has not changed much over\ntime so it would not be surprising if it worked with a number of other\nmodels. If you find success with something, please let us know.\n\nThis **insteonplm** package was created primarily to support an INSTEON\nplatform for the `Home Assistant `__\nautomation platform but it is structured to be general-purpose and\nshould be usable for other applications as well.\n\nRequirements\n------------\n\n- Python 3.5.3 or higher, 3.6 or 3.7\n- Posix or Windows based system\n- Some form of Insteon PLM or Hub\n- At least one Insteon device\n\nInstallation\n------------\n\nYou can, of course, just install the most recent release of this package\nusing ``pip``. This will download the more recent version from\n`PyPI `__ and install it to\nyour host.\n\n::\n\n pip install insteonplm\n\nIf you want to grab the the development code, you can also clone this\ngit repository and install from local sources:\n\n::\n\n cd python-insteonplm\n pip install .\n\nAnd, as you probably expect, you can live the developer's life by\nworking with the live repo and edit to your heart's content:\n\n::\n\n cd python-insteonplm\n pip install -e .\n\nDevice Permissions\n^^^^^^^^^^^^^^^^^^\n\nAny user account that you want to be able to access the PLM will need\npermissions to access the USB or Serial device in ``/dev``. In Linux,\nyou'll probably want to do something like this:\n\n::\n\n sudo usermod -a -G dialout \n\nIn FreeBSD, it'll be something like:\n\n::\n\n sudo pw usermod -G dialer\n\nYou may find that you have to log out and log back in as that user for\nthe change to take effect on existing sessions.\n\nFirst Start\n^^^^^^^^^^^\n\nWhen the module starts it reads the IM's All-Link Database to find\nlinked devices. In order for this module to communicate with a device,\nit must be linked to the IM. For help with linking please see the\nsection on the `Command Line Interface` below.\n\nAfter the module loads the All-Link database it queries each device to\nidentify what type of device it is. This can take quite a while (5-15\nsec per device). Once it identifies the devices it saves them in the\n``WORKDIR`` so that future startups are faster.\n\nCurrently there is an issue with the command line `Tools` not\nfinding battery operated devices since they don't respond to device\ninformation requests. This is being addressed in future releases. This\nis not an issue if used with `Home\nAssistant `__ through the use of device\noverrides.\n\nTools\n-----\n\nThe package installs a message monitor and a command line interface.\n\nMessage Monitoring\n^^^^^^^^^^^^^^^^^^\n\nYou can monitor messages flowing across your INSTEON network with the\nmonitor command line tool. To invoke the monitor use the command:\n\n::\n\n insteonplm_monitor --device /dev/ttyUSB0 --workdir /home/username\n\nCommand line options for the monitor are:\n\n::\n\n -h, --help show this help message and exit\n --device DEVICE Path to PLM device\n --verbose, -v Set logging level to verbose\n --workdir WORKDIR Working directory for reading and saving device\n information.\n\nCommand Line Interface\n^^^^^^^^^^^^^^^^^^^^^^\n\nThe command line tool creates an interactive session to allow certain\nfunctions to be performed on the INSTEON devices. To invoke the command\nline tool use the command:\n\n::\n\n `insteonplm_interactive --device /dev/ttyUSB0 --workdir /home/username`\n\nCommand line options for the interactive tool are:\n\n::\n\n -h, --help show this help message and exit\n --device DEVICE Path to PLM device\n -v, --verbose Set logging level to verbose\n --workdir WORKDIR Working directory for reading and saving device\n information.\n\nInside the command line tool use ``help`` to obtain a list of available\ncommands. The current list of available commands is:\n\n::\n\n - add_all_link Add an All-Link record to the IM and a device.\n - add_device_override Add a device override to the IM.\n - add_x10_device Add an X10 device to the IM\n - connect Connect to the IM\n - del_all_link Delete an all link record from the IM and a device\n - exit Exit the tool\n - help List available commands\n - list_devices Print a list of the available devices\n - load_aldb Read and load a device All-Link database\n - on_off_test Test a device with simple on/off commands\n - print_aldb Print the All-Link database for a device\n - running_tasks List tasks running in the background\n - set_device Set the IM device path\n - set_log_level Set the log message display level\n - set_workdir Set the WORKDIR to load and save device info\n - write_aldb Write a record to the device All-Link database\n !!!! BE CAREFUL WITH THIS COMMAND !!!!!\n\nFor help with a specific command type ``help command_name``.\n\nKnown Issues\n------------\n\n- The\n `documentation `__\n is limited.\n- Other issues are located in our\n `issues `__ list\n on GitHub.\n\nHow You Can Help\n----------------\n\nDevelopment\n^^^^^^^^^^^\n\n- First and foremost, you can help by forking this project and coding.\n Features, bug fixes, documentation, and sample code will all add\n tremendously to the quality of this project.\n\n- If you have a feature you'd love to see added to the project but you\n don't think that you're able to do the work, I'm someone is probably\n happy to perform the directed development in the form of a bug or\n feature bounty.\n\nTesting, Feature Requests and Issue Identification\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n- If you're anxious for a feature but it's not actually worth money to\n you, please open an issue here on Github describing the problem or\n limitation. If you never ask, it'll never happen\n\nDocumentation\n^^^^^^^^^^^^^\n\nPlease see our\n`Wiki `__ section for\ndocumentation. This documentation is limited. If you would like to drive\nthis effort please send a resume and a list of references to...\nHonestly, we will take anyone.\n\nPLEASE help. An\n`issue `__ has\nbeen opened so just post your interest there.\n\nCredits\n-------\n\n- This package was written by David McNett.\n- https://github.com/nugget\n- https://keybase.io/nugget\n\n- Significant updates were provided by Tom Harris\n- https://github.com/teharris1\n\n- Many thanks to `Ryan Stanley `__ for\n his invaluable help with debugging and development.\n\nInteresting Links\n-----------------\n\n- `Project Home `__\n- `Why Nikola Tesla was the greatest geek who ever\n lived `__\n\n.. |Build Status| image:: https://travis-ci.org/nugget/python-insteonplm.svg?branch=master\n :target: https://travis-ci.org/nugget/python-insteonplm\n.. |GitHub release| image:: https://img.shields.io/github/release/nugget/python-insteonplm.svg\n :target: https://github.com/nugget/python-insteonplm/releases\n.. |PyPI| image:: https://img.shields.io/pypi/v/insteonplm.svg\n :target: https://pypi.python.org/pypi/insteonplm", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/nugget/python-insteonplm", "keywords": "", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "insteonplm", "package_url": "https://pypi.org/project/insteonplm/", "platform": "", "project_url": "https://pypi.org/project/insteonplm/", "project_urls": { "Homepage": "https://github.com/nugget/python-insteonplm" }, "release_url": "https://pypi.org/project/insteonplm/0.16.5/", "requires_dist": null, "requires_python": "", "summary": "Python API for controlling Insteon PowerLinc Modems", "version": "0.16.5" }, "last_serial": 5610031, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "6bb26352f4d5e332c3905a53d43757fd", "sha256": "e9b1438c8bb81d8b27650557af5bf8c145a7acc5ee74be6ad568e3568b65df57" }, "downloads": -1, "filename": "insteonplm-0.0.1.tar.gz", "has_sig": false, "md5_digest": "6bb26352f4d5e332c3905a53d43757fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6132, "upload_time": "2017-01-02T16:09:07", "url": "https://files.pythonhosted.org/packages/97/00/c9c8ae0116db175750ad7bb25ea604afea1f064a50db1c250aceab3aa648/insteonplm-0.0.1.tar.gz" } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "9481000b3a27be914f7584ba1bf94f74", "sha256": "aff64ed2dcd3665ee7cb97c0bcc0554345caf455a55092cdb485453645083975" }, "downloads": -1, "filename": "insteonplm-0.10.0.tar.gz", "has_sig": false, "md5_digest": "9481000b3a27be914f7584ba1bf94f74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68872, "upload_time": "2018-06-01T12:58:09", "url": "https://files.pythonhosted.org/packages/cd/c3/5727e5dbfacbd039ca06f5a4dd4526a5622a4deefecbbcc3f2ee414bbba0/insteonplm-0.10.0.tar.gz" } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "742ef20ce054b548a04591d7cdb0864c", "sha256": "e10a185e42dec1e3ae2f15c0d720233f1a90767c6910c854e1242ac0554859a5" }, "downloads": -1, "filename": "insteonplm-0.11.1.tar.gz", "has_sig": false, "md5_digest": "742ef20ce054b548a04591d7cdb0864c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71954, "upload_time": "2018-06-25T01:55:45", "url": "https://files.pythonhosted.org/packages/f3/8e/5de65c37f71114222bfeb378f641062b122a7280dc6df091708338592930/insteonplm-0.11.1.tar.gz" } ], "0.11.2": [ { "comment_text": "", "digests": { "md5": "2e3077a88eddc6dbfee59682f679a5ac", "sha256": "dcce4a955975b5642a72b714e6e11ca6daf7330bd4b7a2067eb29451c3d9a538" }, "downloads": -1, "filename": "insteonplm-0.11.2.tar.gz", "has_sig": false, "md5_digest": "2e3077a88eddc6dbfee59682f679a5ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72072, "upload_time": "2018-06-25T02:18:37", "url": "https://files.pythonhosted.org/packages/cf/e5/865c7586513cce23c9171c4914617bc3ac178f90e2d6174674c32f449662/insteonplm-0.11.2.tar.gz" } ], "0.11.3": [ { "comment_text": "", "digests": { "md5": "bdd48932a48c6e4b88e1ae227e36fbca", "sha256": "ccf0395f40291d6dea9062d9413e57df3c66bfc427575f1362c2518c6d1a95a1" }, "downloads": -1, "filename": "insteonplm-0.11.3.tar.gz", "has_sig": false, "md5_digest": "bdd48932a48c6e4b88e1ae227e36fbca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72362, "upload_time": "2018-06-26T00:39:13", "url": "https://files.pythonhosted.org/packages/27/8a/1a52483e0cb323c31d9ad10dca4b989946862be2295da24f1ef20287f397/insteonplm-0.11.3.tar.gz" } ], "0.11.6": [ { "comment_text": "", "digests": { "md5": "bdcc5239e00e400df3f1c92da2e82ead", "sha256": "b66e7e7ff333ee895e544aaf2a2204339b61be8b1e03fb0c4a08884329d61a29" }, "downloads": -1, "filename": "insteonplm-0.11.6.tar.gz", "has_sig": false, "md5_digest": "bdcc5239e00e400df3f1c92da2e82ead", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75889, "upload_time": "2018-07-11T18:39:08", "url": "https://files.pythonhosted.org/packages/e0/02/e48e75560e3792d802597e83446c41c741f3e1d3d3e7f272bec14ed8a256/insteonplm-0.11.6.tar.gz" } ], "0.11.7": [ { "comment_text": "", "digests": { "md5": "1b5f89027600254feeeaad4d34675f7a", "sha256": "3ef3df740252d812d55d3e2195cc731de9cbd35fb06c77f3b09911abfb787239" }, "downloads": -1, "filename": "insteonplm-0.11.7.tar.gz", "has_sig": false, "md5_digest": "1b5f89027600254feeeaad4d34675f7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76383, "upload_time": "2018-07-17T23:30:04", "url": "https://files.pythonhosted.org/packages/e6/dd/195b641444acfe58ea12f0ad2a174130b591f3935b23aafd1455630f2ff8/insteonplm-0.11.7.tar.gz" } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "e82d01968def7cadfaed5ff282f729ca", "sha256": "6ddb8efde1f89ecc48d7025f8825fe93970f8d3f4e43fd4a6d4b2bd085f45817" }, "downloads": -1, "filename": "insteonplm-0.12.0.tar.gz", "has_sig": false, "md5_digest": "e82d01968def7cadfaed5ff282f729ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83984, "upload_time": "2018-08-08T02:23:30", "url": "https://files.pythonhosted.org/packages/0b/af/29c0072e65781a2e65b1dd2fb03f019419c6a3893e4bf0abdf2a0b687752/insteonplm-0.12.0.tar.gz" } ], "0.12.1": [ { "comment_text": "", "digests": { "md5": "25a1806cad26dd91dd512261c32136fa", "sha256": "f476729331185601d6b08be5f4af97306872ba3e659b85fcf1a60a267c38ab76" }, "downloads": -1, "filename": "insteonplm-0.12.1.tar.gz", "has_sig": false, "md5_digest": "25a1806cad26dd91dd512261c32136fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84701, "upload_time": "2018-08-20T01:30:19", "url": "https://files.pythonhosted.org/packages/5b/7e/4555f081b5ec9390dcf9de69a1c619e579bdf562b0b82734b1710675aee6/insteonplm-0.12.1.tar.gz" } ], "0.12.2": [ { "comment_text": "", "digests": { "md5": "97462ed07e96fa84bda72ee38654a30e", "sha256": "69a1a4114ce37a87d4650435621c26b4a67758bd394e7b08c9ba6fb25f46c398" }, "downloads": -1, "filename": "insteonplm-0.12.2.tar.gz", "has_sig": false, "md5_digest": "97462ed07e96fa84bda72ee38654a30e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84663, "upload_time": "2018-08-21T02:05:03", "url": "https://files.pythonhosted.org/packages/1b/58/d669f0b0e06a1021895e0106403cafd330a525cf3bc172a1d8ee23ffb13d/insteonplm-0.12.2.tar.gz" } ], "0.12.3": [ { "comment_text": "", "digests": { "md5": "2534cc05854f77cb6484e60a8c34defe", "sha256": "64110897fc838b5af3b7e7430b04d70ab4fddc6b18468824f567d04c38f53ed4" }, "downloads": -1, "filename": "insteonplm-0.12.3.tar.gz", "has_sig": false, "md5_digest": "2534cc05854f77cb6484e60a8c34defe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84636, "upload_time": "2018-08-21T03:36:47", "url": "https://files.pythonhosted.org/packages/0d/91/2da900bc3725077cb9ae3256d93d3279a83540a5629f7826853b887317bf/insteonplm-0.12.3.tar.gz" } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "c120fd12e320549325cd2752d578c98e", "sha256": "5c659cfa17c50aa6e3f27430c5abe9c22215e2b746a085122c79e4ece03fb662" }, "downloads": -1, "filename": "insteonplm-0.13.0.tar.gz", "has_sig": false, "md5_digest": "c120fd12e320549325cd2752d578c98e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 87781, "upload_time": "2018-08-26T17:42:45", "url": "https://files.pythonhosted.org/packages/2f/85/50a94e6e85419aff239f917014381bbef65cec1a9d2cb159d3d70ea8f1c6/insteonplm-0.13.0.tar.gz" } ], "0.13.1": [ { "comment_text": "", "digests": { "md5": "7c045f1b4d339ee5562f5844f86cd00f", "sha256": "fdfbb019d6af85f1d721eee71cdae02825e0610e193795fd8203d4d3b52a16f2" }, "downloads": -1, "filename": "insteonplm-0.13.1.tar.gz", "has_sig": false, "md5_digest": "7c045f1b4d339ee5562f5844f86cd00f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 87817, "upload_time": "2018-08-27T02:04:14", "url": "https://files.pythonhosted.org/packages/8d/f0/1d3b4ec92fd4cff8a249308c8c71ef0382684d32c04919e78ef5902cb2cd/insteonplm-0.13.1.tar.gz" } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "23b6f4a11dc783244964e76ae18d8cec", "sha256": "9778a551b6ff66c0513aae299692c517a52d819d3a072bc30c10d9f9fab37604" }, "downloads": -1, "filename": "insteonplm-0.14.0.tar.gz", "has_sig": false, "md5_digest": "23b6f4a11dc783244964e76ae18d8cec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92891, "upload_time": "2018-09-03T04:46:42", "url": "https://files.pythonhosted.org/packages/b3/14/f5f26e50aedcfe042a5fd4a1b51426f0db471a6d8942e997a5687d0ed501/insteonplm-0.14.0.tar.gz" } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "086fde9ececb539c86d26deff4fd0107", "sha256": "1ff2054ef516bdd85ff243c149d63cfe00a5bfa9262a7290956fa737de62b8a5" }, "downloads": -1, "filename": "insteonplm-0.14.1.tar.gz", "has_sig": false, "md5_digest": "086fde9ececb539c86d26deff4fd0107", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90205, "upload_time": "2018-09-06T19:44:35", "url": "https://files.pythonhosted.org/packages/6b/14/fddd80b4ec43acf0f0b2d3bbf83d3f0fbe542779138fc8d9f9ce30bf64f5/insteonplm-0.14.1.tar.gz" } ], "0.14.2": [ { "comment_text": "", "digests": { "md5": "8adc6591e747b6ad50974af023f126cf", "sha256": "70544e352f8ca5af0e7c5447f029cc288cad5480c188f108d8267ee58b47e782" }, "downloads": -1, "filename": "insteonplm-0.14.2.tar.gz", "has_sig": false, "md5_digest": "8adc6591e747b6ad50974af023f126cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90311, "upload_time": "2018-09-08T02:17:58", "url": "https://files.pythonhosted.org/packages/dc/c1/87aa1517cd1733caf14079bc8cccc4c504a07c2e8198dd48b204decc3ccb/insteonplm-0.14.2.tar.gz" } ], "0.15.0": [ { "comment_text": "", "digests": { "md5": "f7776b8f559a2224929bee02cd88ba11", "sha256": "79164a42a9f0892461f050e0dc74302655d625f69b7d1a5980232c8de84e816d" }, "downloads": -1, "filename": "insteonplm-0.15.0.tar.gz", "has_sig": false, "md5_digest": "f7776b8f559a2224929bee02cd88ba11", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90224, "upload_time": "2018-10-12T22:29:35", "url": "https://files.pythonhosted.org/packages/17/4a/6ed1184c01462a49e18224ca650df501b202eef913c6a157f9a557274bc8/insteonplm-0.15.0.tar.gz" } ], "0.15.1": [ { "comment_text": "", "digests": { "md5": "b04f9a02e2fca4bf4e0934264965458e", "sha256": "49731c20d6b7bcf29a79356d36348b22f06a55dee67363309d52f617c58f6427" }, "downloads": -1, "filename": "insteonplm-0.15.1.tar.gz", "has_sig": false, "md5_digest": "b04f9a02e2fca4bf4e0934264965458e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90417, "upload_time": "2018-11-06T02:55:33", "url": "https://files.pythonhosted.org/packages/85/5d/8b0ad03e7ad08e7d5b52261c2f555af5c3e13b1aad8e034bf59014f80555/insteonplm-0.15.1.tar.gz" } ], "0.15.2": [ { "comment_text": "", "digests": { "md5": "339e85211a26a8845c22c761531e7627", "sha256": "e8e0355313dfd5eea8e5d1e619c3ee50319280274a0582bf246a30a67a473ced" }, "downloads": -1, "filename": "insteonplm-0.15.2.tar.gz", "has_sig": false, "md5_digest": "339e85211a26a8845c22c761531e7627", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90431, "upload_time": "2018-12-04T23:34:39", "url": "https://files.pythonhosted.org/packages/d8/98/952577bcd6bc6ae5dff25a61624e81a5d9d1782aaebdd1802d07598a1178/insteonplm-0.15.2.tar.gz" } ], "0.15.3": [], "0.15.4": [ { "comment_text": "", "digests": { "md5": "0375ada20497a44c2541779d3e54ce92", "sha256": "27cc668c981c329dbbacb525722b1deab81c5cf42ca9208e43399eff47c9ac39" }, "downloads": -1, "filename": "insteonplm-0.15.4-py3-none-any.whl", "has_sig": false, "md5_digest": "0375ada20497a44c2541779d3e54ce92", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 130818, "upload_time": "2019-05-16T18:35:13", "url": "https://files.pythonhosted.org/packages/3b/7f/ab1311105a93ca1726702974c49e81be8bd96cb3db50df25525d44d5d37c/insteonplm-0.15.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7600802f11a97a56bfc15b07ba542c75", "sha256": "755aa07a295c98f67f08fa5d0c1d213bb33381f1520a96febd6da08174b44c3a" }, "downloads": -1, "filename": "insteonplm-0.15.4.tar.gz", "has_sig": false, "md5_digest": "7600802f11a97a56bfc15b07ba542c75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97563, "upload_time": "2019-05-16T18:35:07", "url": "https://files.pythonhosted.org/packages/6f/93/7cb885c66fb639bf849fd20cd4b019bfa170ef0e22e0175a1b8a5ce54ffe/insteonplm-0.15.4.tar.gz" } ], "0.16.0": [ { "comment_text": "", "digests": { "md5": "d509c1edf5fd197c5d9f097da00117a7", "sha256": "a313d345a0d10af5bc2b37e584442d0d938438b37acf19f744566a9095e2694c" }, "downloads": -1, "filename": "insteonplm-0.16.0.tar.gz", "has_sig": false, "md5_digest": "d509c1edf5fd197c5d9f097da00117a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95649, "upload_time": "2019-06-25T19:35:02", "url": "https://files.pythonhosted.org/packages/63/49/23983e1afe3543150782e709181465e80ac9a73cdab0b54a052ea2c36fb8/insteonplm-0.16.0.tar.gz" } ], "0.16.1": [ { "comment_text": "", "digests": { "md5": "d659846af42b7a5f287019d8a65492ce", "sha256": "b0b39e71315ca5cdd930cc7dc972219b28415e5d3d1b770617dedb221330dc9c" }, "downloads": -1, "filename": "insteonplm-0.16.1.tar.gz", "has_sig": false, "md5_digest": "d659846af42b7a5f287019d8a65492ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95231, "upload_time": "2019-07-09T16:43:17", "url": "https://files.pythonhosted.org/packages/71/7d/371deadc40148a083b51ec5412719e2be36a201b20ac81995ce890fe6be9/insteonplm-0.16.1.tar.gz" } ], "0.16.2": [ { "comment_text": "", "digests": { "md5": "3d08b7c87dc46e4cdb4ccaffdb459e3f", "sha256": "4ce38a6f493637f14f1953cd480a54628f74e4e39919901fbf367c0763e8e4f8" }, "downloads": -1, "filename": "insteonplm-0.16.2.tar.gz", "has_sig": false, "md5_digest": "3d08b7c87dc46e4cdb4ccaffdb459e3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95761, "upload_time": "2019-07-12T03:04:13", "url": "https://files.pythonhosted.org/packages/51/30/ec986e46319378be198b594e89bdf8d2cf1926dd4c8809b27beeadd5c24b/insteonplm-0.16.2.tar.gz" } ], "0.16.3": [ { "comment_text": "", "digests": { "md5": "f8d7d8618bf38a0f5b3e2e03fdec0a00", "sha256": "69a101670075e6c4ffa14e00d87af191285ac7963b0ac2a7cb0f2cf4c063fa27" }, "downloads": -1, "filename": "insteonplm-0.16.3.tar.gz", "has_sig": false, "md5_digest": "f8d7d8618bf38a0f5b3e2e03fdec0a00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95797, "upload_time": "2019-07-12T16:11:28", "url": "https://files.pythonhosted.org/packages/76/13/2d9d7a570b1131226fcd8d93b37e4e4757752f181c0bb98620c8986a1600/insteonplm-0.16.3.tar.gz" } ], "0.16.4": [ { "comment_text": "", "digests": { "md5": "dab43db3adef3ca471213e2d391ab6c7", "sha256": "9037138e148359cadf9395893d12e008dfb348b971271146e3a7961f4b1d1b5b" }, "downloads": -1, "filename": "insteonplm-0.16.4.tar.gz", "has_sig": false, "md5_digest": "dab43db3adef3ca471213e2d391ab6c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95823, "upload_time": "2019-07-30T20:13:45", "url": "https://files.pythonhosted.org/packages/58/74/c020460170fe0325c4e08972d2e4fe3729e961052c6b81b5ffa65987414c/insteonplm-0.16.4.tar.gz" } ], "0.16.5": [ { "comment_text": "", "digests": { "md5": "0d38169efe2f7bf6bffd6d4921071486", "sha256": "4d36b9f6f8c4944001aaf1a6c0cd812fd6c6388d4516525705ebb9aa08331c88" }, "downloads": -1, "filename": "insteonplm-0.16.5.tar.gz", "has_sig": false, "md5_digest": "0d38169efe2f7bf6bffd6d4921071486", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95824, "upload_time": "2019-07-30T20:46:57", "url": "https://files.pythonhosted.org/packages/54/41/d1cefe9fb45922b5d031fe27c4d3c88c892e6a15b5b6112fc853a3d1d001/insteonplm-0.16.5.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "49e7c6a11d0595c97c5df0639daec293", "sha256": "a3d262eeb611c21b02f905f64a83387c91e83a59d98a11e0896f213299410e19" }, "downloads": -1, "filename": "insteonplm-0.7.0.tar.gz", "has_sig": false, "md5_digest": "49e7c6a11d0595c97c5df0639daec293", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13797, "upload_time": "2017-02-16T20:54:21", "url": "https://files.pythonhosted.org/packages/18/4e/c77e77977c667e918453de2e5496934d5df9aff42b932d9faa06504cb2cf/insteonplm-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "252422a396ff8f2937f59f7deb4fecd4", "sha256": "1d4d9b3cc4be8ecd29f10aedf935db916995c8e50956a45734d976d76c026678" }, "downloads": -1, "filename": "insteonplm-0.7.1.tar.gz", "has_sig": false, "md5_digest": "252422a396ff8f2937f59f7deb4fecd4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13855, "upload_time": "2017-02-16T22:07:43", "url": "https://files.pythonhosted.org/packages/f7/4c/3b5429a39345fde1451df864d03ff6e76b99cf8d707f0bbb045bbc0364e8/insteonplm-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "fd75a796101c120f1f866852a4f256c2", "sha256": "de5fe4b78fc4fd777fb07422d05daf30b7c6d820f5397694192b066483ea7f78" }, "downloads": -1, "filename": "insteonplm-0.7.2.tar.gz", "has_sig": false, "md5_digest": "fd75a796101c120f1f866852a4f256c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14564, "upload_time": "2017-02-17T17:29:43", "url": "https://files.pythonhosted.org/packages/f7/f0/6a1559239cc8190d6ddeedd1cd7aa7636e1402b0fd1df4a4251ed4abd194/insteonplm-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "fda77d00fa405bd346741bddf77e7006", "sha256": "d350509c2f1369af774f43ad8e31236b512b8b5fa5d72045788b600fae167305" }, "downloads": -1, "filename": "insteonplm-0.7.3.tar.gz", "has_sig": false, "md5_digest": "fda77d00fa405bd346741bddf77e7006", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14759, "upload_time": "2017-02-17T18:52:34", "url": "https://files.pythonhosted.org/packages/40/dc/b348a12c594f966bf5d71a0a40fda536bca92e998eebda159f6a41403d7f/insteonplm-0.7.3.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "9fb8f26dc9d641b0365e6c5bb752d6c8", "sha256": "211225cd30b7189747a1405d64205ce1f7874811614e2102e5b7ec9e895b2ef8" }, "downloads": -1, "filename": "insteonplm-0.7.4.tar.gz", "has_sig": false, "md5_digest": "9fb8f26dc9d641b0365e6c5bb752d6c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15790, "upload_time": "2017-02-19T15:19:39", "url": "https://files.pythonhosted.org/packages/0a/13/2add140df61e3d26cc2ff91da985c4ddaa25e6ca1c33346b776859ae2f03/insteonplm-0.7.4.tar.gz" } ], "0.7.5": [ { "comment_text": "", "digests": { "md5": "bf550ef175fb975de4a7e746d2410f63", "sha256": "19239beb5c2c4b32b0ec8a86914148525a51915d285e320d9f4449635d228cb2" }, "downloads": -1, "filename": "insteonplm-0.7.5.tar.gz", "has_sig": false, "md5_digest": "bf550ef175fb975de4a7e746d2410f63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16510, "upload_time": "2017-07-30T21:32:31", "url": "https://files.pythonhosted.org/packages/cf/1b/bb130c11d6da7bb1567abf596e724a00b157cb9534848f22173667d05be9/insteonplm-0.7.5.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "f2935053ce204650d6dc737464e9fc74", "sha256": "c078a655050ec3325827bbf73d763208479da35d526ffc40d4d451d0e0a30269" }, "downloads": -1, "filename": "insteonplm-0.8.1.tar.gz", "has_sig": false, "md5_digest": "f2935053ce204650d6dc737464e9fc74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41200, "upload_time": "2018-02-08T22:28:42", "url": "https://files.pythonhosted.org/packages/eb/a5/b25c25040415966544ccb4e029b9bfdedbde8d06783f944beec31ae20b59/insteonplm-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "6c9c215e937eb29ecb991bcb87e5560e", "sha256": "ff4dce89b067c8e0648e7028c2bdaa402589bc63d12cea2290c53b949852b435" }, "downloads": -1, "filename": "insteonplm-0.8.2.tar.gz", "has_sig": false, "md5_digest": "6c9c215e937eb29ecb991bcb87e5560e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45055, "upload_time": "2018-02-17T18:20:53", "url": "https://files.pythonhosted.org/packages/5f/bd/6d11f73ea21a8303944379a04da62ec0eccd7c391ef8510edeb9a2bb054e/insteonplm-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "44a54f709607f5d54057c8faf5fa7037", "sha256": "78c8493b9896d2a4ef29b36241208a06d2939ed2b8cdc5aa5e5de29db86e2f38" }, "downloads": -1, "filename": "insteonplm-0.8.3.tar.gz", "has_sig": false, "md5_digest": "44a54f709607f5d54057c8faf5fa7037", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51532, "upload_time": "2018-03-27T23:26:36", "url": "https://files.pythonhosted.org/packages/eb/4d/5c67c53e32c0aca0ba8994d581f0087263c5cd5c74135005d714813b1db4/insteonplm-0.8.3.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "aade526a55be985f1651601f40cc1ed4", "sha256": "ae210ce99bc6e227a1eefaf799a061cf92386e5ca9dca3e1b34b74b4f2537ff4" }, "downloads": -1, "filename": "insteonplm-0.8.5.tar.gz", "has_sig": false, "md5_digest": "aade526a55be985f1651601f40cc1ed4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52299, "upload_time": "2018-04-04T18:44:31", "url": "https://files.pythonhosted.org/packages/2a/2e/10ab1d209fe82cedcc47964255c1cd00d598d92c52f8fdee0ed77e4432b4/insteonplm-0.8.5.tar.gz" } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "661a5efe1f7d7e7864a5e3fca126e52c", "sha256": "60a908ecd6068a27eba46c86e802c4d165ffd9641d5528b7c20d44c18f815227" }, "downloads": -1, "filename": "insteonplm-0.8.6.tar.gz", "has_sig": false, "md5_digest": "661a5efe1f7d7e7864a5e3fca126e52c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52398, "upload_time": "2018-04-04T22:44:38", "url": "https://files.pythonhosted.org/packages/13/f2/4057490c333ee67f9afb07c2b9a19e9e03ae4fd3b4104affa5a6203fa8c8/insteonplm-0.8.6.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "a4377ca0e1cfa393bc70e50ad5270db4", "sha256": "a00d9e952a6c3dd55f063c95fbd0b27b25b76a3e7245246a8b17cd44b892541b" }, "downloads": -1, "filename": "insteonplm-0.9.1.tar.gz", "has_sig": false, "md5_digest": "a4377ca0e1cfa393bc70e50ad5270db4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61394, "upload_time": "2018-04-24T02:54:23", "url": "https://files.pythonhosted.org/packages/19/b1/246997dbbaf95066a9e2dac69514bc010a906ece570263ab7c47c5ad858b/insteonplm-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "b16736ae29bc45832e49f1d6c6cc2ca8", "sha256": "b64c35dbfe021abe02be9ec8ec421d857ab4d97f212dfa7fa954710b57d8587e" }, "downloads": -1, "filename": "insteonplm-0.9.2.tar.gz", "has_sig": false, "md5_digest": "b16736ae29bc45832e49f1d6c6cc2ca8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62335, "upload_time": "2018-05-21T19:42:45", "url": "https://files.pythonhosted.org/packages/94/43/7dbb2fe039d725ca110d06ceab2db21b69ef79cc5bdd15bd6525fe051e28/insteonplm-0.9.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "0d38169efe2f7bf6bffd6d4921071486", "sha256": "4d36b9f6f8c4944001aaf1a6c0cd812fd6c6388d4516525705ebb9aa08331c88" }, "downloads": -1, "filename": "insteonplm-0.16.5.tar.gz", "has_sig": false, "md5_digest": "0d38169efe2f7bf6bffd6d4921071486", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95824, "upload_time": "2019-07-30T20:46:57", "url": "https://files.pythonhosted.org/packages/54/41/d1cefe9fb45922b5d031fe27c4d3c88c892e6a15b5b6112fc853a3d1d001/insteonplm-0.16.5.tar.gz" } ] }