{ "info": { "author": "Dwight Hubbard", "author_email": "dwight@dwighthubbard.com", "bugtrack_url": null, "classifiers": [], "description": "Micropython ESP8266 Flash image with cloudmanager\n=================================================\n\nThis package provides a utility to flash an esp8266 board such as a nodemcu or\nwemos d1 board with Micropython. It will optionally configure networking and\nset up the board to run cloudmanager or webrepl at start.\n\nRequirements\n============\n\nThis Utility requires python 3.6+ and is installed using the python pip package manager.\n\nMac OSX requirements\n--------------------\n\nOn Mac OSX you may need to install the device driver for the usb to serial converter chip\nto interface with your board.\n\nFor NodeMCU boards, you will need to install the SiLabs [serial driver for the chip](https://www.silabs.com/products/mcu/Pages/USBtoUARTBridgeVCPDrivers.aspx) ([direct link](https://www.silabs.com/Support%20Documents/Software/Mac_OSX_VCP_Driver.zip))\n\nFor Wemos D1 boards, you will need to intall the [CH340 USB to UART driver](https://www.wemos.cc/downloads) ([direct link](https://www.wemos.cc/downloads/CH34x_Install_mac.zip))\n\nInstallation\n============\n\nInstall the package using the python pip tool\n\n.. code-block:: console\n\n $ pip install cloudmanager_micropython_esp8266\n \nFlashing a board\n================\n\nThe **flash_esp_image** utility will flash a micropython image to the board and optionally configure it.\n\nTo just flash the image to the board, if the are no other serial devices installed\n----------------------------------------------------------------------------------\n\nThis is the simplest option, the utility will attempt to guess the serial port the device is on and flash it.\n\n1. Plug the board into the usb port\n2. Run the **flash_esp_image** utility without arguments.\n\n.. code-block:: console\n\n $ flash_esp_image \n esptool.py --port /dev/ttyUSB0 --baud 115200 erase_flash\n esptool.py v1.2.1\n Connecting...\n Running Cesanta flasher stub...\n Erasing flash (this may take a while)...\n Erase took 9.1 seconds\n esptool.py --port /dev/ttyUSB0 --baud 115200 write_flash --verify --flash_size=32m --flash_mode=qio 0 /tmp/cloudmanager-micropython-esp8266/local/lib/python2.7/site-packages/cloudmanager_micropython_esp8266/firmware/firmware-combined.bin\n esptool.py v1.2.1\n Connecting...\n Running Cesanta flasher stub...\n Flash params set to 0x0040\n Writing 557056 @ 0x0... 19456 (3 %)\n 557056 (100 %)\n Wrote 557056 bytes at 0x0 in 48.3 seconds (92.3 kbit/s)...\n Leaving...\n Verifying just-written flash...\n Verifying 0x8734c (553804) bytes @ 0x00000000 in flash against /tmp/cloudmanager-micropython-esp8266/local/lib/python2.7/site-packages/cloudmanager_micropython_esp8266/firmware/firmware-combined.bin...\n -- verify OK (digest matched)\n $\n\nThe board should now be flashed with micropython and the micropython repl prompt will be available on the serial port.\n\nFlash the board and configure it to automatically start as a cloudmanager client\n--------------------------------------------------------------------------------\n\n1. Plug the board into the usb port\n2. Run the **flash_esp_image** utility with the arguments to configure the network and cloudmanager.\n\nThe following example starts a cloudmanager server on the default port and tells the board to connect to wifi network \"mywifi\" using wpa password of \"wifipassword\" and register with a cloudmanager server at our address \"192.168.1.127\" running on the default port of \"18266\" as a device named \"nodemcu1\" \n\n.. code-block:: console\n\n $ mbm server-start\n $ mbm board-list\n $ flash_esp_image --wifi_ssid mywifi --wifi_password mywifipassword --cloudmanager_server 192.168.1.127 --cloudmanager_port 18266 --name nodemcu1 \n esptool.py --port /dev/ttyUSB0 --baud 115200 erase_flash\n esptool.py v1.2.1\n Connecting...\n Running Cesanta flasher stub...\n Erasing flash (this may take a while)...\n Erase took 9.0 seconds\n esptool.py --port /dev/ttyUSB0 --baud 115200 write_flash --verify --flash_size=32m --flash_mode=qio 0 /tmp/cloudmanager-micropython-esp8266/local/lib/python2.7/site-packages/cloudmanager_micropython_esp8266/firmware/firmware-combined.bin\n esptool.py v1.2.1\n Connecting...\n Running Cesanta flasher stub...\n Flash params set to 0x0040\n Writing 557056 @ 0x0... 557056 (100 %)\n Wrote 557056 bytes at 0x0 in 48.3 seconds (92.3 kbit/s)...\n Leaving...\n Verifying just-written flash...\n Verifying 0x8734c (553804) bytes @ 0x00000000 in flash against /tmp/cloudmanager-micropython-esp8266/local/lib/python2.7/site-packages/cloudmanager_micropython_esp8266/firmware/firmware-combined.bin...\n -- verify OK (digest matched)\n >>> \n >>> import os\n >>> os.mkdir('etc')\n >>> from bootconfig.config import get, set\n >>> set('wifi_ssid', 'mywifi')\n >>> set('wifi_password', 'mywifipassword')\n >>> set('redis_server', '192.168.1.127')\n >>> set('redis_port', '18266')\n >>> set('name', 'nodemcu1')\n >>> import bootconfig.service\n >>> bootconfig.service.autostart()\n >>> import redis_cloudclient.service\n >>> redis_cloudclient.service.autostart()\n >>> import machine\n >>> machine.reset()\n $ mbm board-list\n Platform Name State \n esp8266 nodemcu1 idle \n $\n\n\nIt's now possible to use the **mbm** utility to upload/run code on the board.\n\nConnecting to the serial terminal\n=================================\n\nThe **esp_terminal** command is a simple terminal program that will automatically connect the the micropython repl over usb/serial using the same device and port as the **flash_esp_image** utility.\n\n.. code-block:: console\n\n $ esp_terminal\n MicroPython v1.8.5-124-gbc4441a on 2016-11-06; ESP module with ESP8266\n Type \"help()\" for more information.\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/dwighthubbard/cloudmanager-micropython-esp8266", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "cloudmanager-micropython-esp8266", "package_url": "https://pypi.org/project/cloudmanager-micropython-esp8266/", "platform": "", "project_url": "https://pypi.org/project/cloudmanager-micropython-esp8266/", "project_urls": { "Homepage": "https://github.com/dwighthubbard/cloudmanager-micropython-esp8266" }, "release_url": "https://pypi.org/project/cloudmanager-micropython-esp8266/1.9.70/", "requires_dist": null, "requires_python": "", "summary": "Cloudmanager esp8266 flash image", "version": "1.9.70" }, "last_serial": 3926170, "releases": { "0.0.10": [ { "comment_text": "", "digests": { "md5": "c16b55b34695e24821b528ba3d5bfcd5", "sha256": "d696ca8cecd614454f5fba907f67633666ca2a8d5da013dfe6380d17e7fd497c" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-0.0.10.tar.gz", "has_sig": false, "md5_digest": "c16b55b34695e24821b528ba3d5bfcd5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 365680, "upload_time": "2016-11-09T19:57:38", "url": "https://files.pythonhosted.org/packages/f7/69/71d923150435b10f52135abb806d4c3f007717c0c7993945a197967602d9/cloudmanager-micropython-esp8266-0.0.10.tar.gz" } ], "0.0.11": [ { "comment_text": "", "digests": { "md5": "ca3dd8764ac0bb71452ef32f409a247b", "sha256": "5cfef949ef3e8a66f302747969aed442aabc023723d527f4bc3a185243796f68" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-0.0.11.tar.gz", "has_sig": false, "md5_digest": "ca3dd8764ac0bb71452ef32f409a247b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 365713, "upload_time": "2016-11-09T20:27:26", "url": "https://files.pythonhosted.org/packages/cb/25/720a339f8b376c33c22891bb3b81d966be750ac2fb9e72d93b5e91855dc5/cloudmanager-micropython-esp8266-0.0.11.tar.gz" } ], "0.0.13": [ { "comment_text": "", "digests": { "md5": "6672297bbe2f4eef7777a63a74975dc5", "sha256": "3a52a93b73e58f44cd9c1ec37660985f36dba00ac33875895e4f844c0d6854e6" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-0.0.13.tar.gz", "has_sig": false, "md5_digest": "6672297bbe2f4eef7777a63a74975dc5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 365885, "upload_time": "2016-11-09T20:49:10", "url": "https://files.pythonhosted.org/packages/78/7b/cb40b5d4b044c45ef219871184c2fa3cc90a5b4cebf1770a63cd02854e11/cloudmanager-micropython-esp8266-0.0.13.tar.gz" } ], "0.0.14": [ { "comment_text": "", "digests": { "md5": "170c893fbfe5465061c0440e9d6b8f29", "sha256": "2752ece647b01d8fd82cf70b64ca57c57f4d85392ed5157d9d8a682b3234f802" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-0.0.14.tar.gz", "has_sig": false, "md5_digest": "170c893fbfe5465061c0440e9d6b8f29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 365971, "upload_time": "2016-11-09T20:53:58", "url": "https://files.pythonhosted.org/packages/14/2a/b8f61538d67620b4f7e0fd098f6c6e1f4877151d245ac64d94a813957707/cloudmanager-micropython-esp8266-0.0.14.tar.gz" } ], "0.0.15": [ { "comment_text": "", "digests": { "md5": "d6f15189923536caf3d5f3b514672448", "sha256": "c1b2285a2d0cda3571740e82154768bf1a03b98f2d1cafcde4fa4db35f44180b" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-0.0.15.tar.gz", "has_sig": false, "md5_digest": "d6f15189923536caf3d5f3b514672448", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 367872, "upload_time": "2016-11-09T21:11:32", "url": "https://files.pythonhosted.org/packages/da/1f/09e4486eb7e7df17711672e809c5a58f344d86f923f8fbb3c2376a3235cf/cloudmanager-micropython-esp8266-0.0.15.tar.gz" } ], "0.0.16": [ { "comment_text": "", "digests": { "md5": "1945d75095681b1b7526d8c24d6a5928", "sha256": "30f7e656e079b5a8523f8afb94583907b45967498c88f514963cb212d35924e8" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-0.0.16.tar.gz", "has_sig": false, "md5_digest": "1945d75095681b1b7526d8c24d6a5928", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 366345, "upload_time": "2016-11-09T21:18:13", "url": "https://files.pythonhosted.org/packages/30/30/c249639945a0545fea13befa9ca64d7d807b621654acacd3cc3c600dff2b/cloudmanager-micropython-esp8266-0.0.16.tar.gz" } ], "0.0.17": [ { "comment_text": "", "digests": { "md5": "e348fadb40a7f64452a38258471b6ef3", "sha256": "524df453aa652c02c900e4501c5af43283445cc991080d7e7611741a82cf6514" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-0.0.17.tar.gz", "has_sig": false, "md5_digest": "e348fadb40a7f64452a38258471b6ef3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 366363, "upload_time": "2016-11-09T21:24:46", "url": "https://files.pythonhosted.org/packages/b7/a6/9d25cac1deb41c571194223c267ce3da1dd5b0692ff9b19e666afc599c59/cloudmanager-micropython-esp8266-0.0.17.tar.gz" } ], "0.0.18": [ { "comment_text": "", "digests": { "md5": "50685497cf8478847400788b03578a7e", "sha256": "08cc8e38ce64bc605411d0200adac348ed30eafc7f1be999a338e42004c7f228" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-0.0.18.tar.gz", "has_sig": false, "md5_digest": "50685497cf8478847400788b03578a7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 366376, "upload_time": "2016-11-09T21:28:40", "url": "https://files.pythonhosted.org/packages/ba/3d/e07ae640803cdbc73941a41f932588840aa6539343221bc6bc5a29a90a18/cloudmanager-micropython-esp8266-0.0.18.tar.gz" } ], "0.0.19": [ { "comment_text": "", "digests": { "md5": "7a18c1f08bedda233735b456f36a8ec4", "sha256": "f974dda0343c18a50e7ed140cd443c4ceac071e1f1ce1004695564fdcb412f32" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-0.0.19.tar.gz", "has_sig": false, "md5_digest": "7a18c1f08bedda233735b456f36a8ec4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 366364, "upload_time": "2016-11-09T21:31:55", "url": "https://files.pythonhosted.org/packages/a7/a6/bbda39f0522b2a7081405225ce0983fc617a5dea9ff535041fca0cdef294/cloudmanager-micropython-esp8266-0.0.19.tar.gz" } ], "0.0.20": [ { "comment_text": "", "digests": { "md5": "b05f03f5a8fd9717a81606b573280f55", "sha256": "283279b39dd8aacda71eecb1e625bd01981efb2a5313506536cc5d8f520c8107" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-0.0.20.tar.gz", "has_sig": false, "md5_digest": "b05f03f5a8fd9717a81606b573280f55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 366363, "upload_time": "2016-11-09T21:33:17", "url": "https://files.pythonhosted.org/packages/0a/26/5426b695015120f64be4c7f54e366a2a1e6d81042bca103e7905300e562f/cloudmanager-micropython-esp8266-0.0.20.tar.gz" } ], "0.0.21": [ { "comment_text": "", "digests": { "md5": "a7ca163e6de205d4daaafd946a13fe05", "sha256": "7b6d1ffb0cdf1a7480787d91e7550cbe5cbf63440473203912f9938ed9db6373" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-0.0.21.tar.gz", "has_sig": false, "md5_digest": "a7ca163e6de205d4daaafd946a13fe05", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 366358, "upload_time": "2016-11-09T21:34:23", "url": "https://files.pythonhosted.org/packages/48/8d/1f8ae41a2f5678b102174341785a186777703b69c9d8abd888337072cff0/cloudmanager-micropython-esp8266-0.0.21.tar.gz" } ], "0.0.22": [ { "comment_text": "", "digests": { "md5": "22835142506d3ba3f23bf227b5fe7ee9", "sha256": "ff6c8c20e525cabc11668ab6d3ffc42640f358eaadf6b27c063321145b91ad8c" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-0.0.22.tar.gz", "has_sig": false, "md5_digest": "22835142506d3ba3f23bf227b5fe7ee9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 366357, "upload_time": "2016-11-09T21:43:23", "url": "https://files.pythonhosted.org/packages/3d/36/f14b62342949e4a0bc7236a87a01a92bf675e9b99ea55587fdb4bae7a222/cloudmanager-micropython-esp8266-0.0.22.tar.gz" } ], "0.0.23": [ { "comment_text": "", "digests": { "md5": "b23e25cf39ab993ec2954b689f5d2399", "sha256": "dd53cf55d3ab7cb0d1e2717f94232443f4210c0da897690bfea5eec7b13b3edd" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-0.0.23.tar.gz", "has_sig": false, "md5_digest": "b23e25cf39ab993ec2954b689f5d2399", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 366392, "upload_time": "2016-11-10T00:44:51", "url": "https://files.pythonhosted.org/packages/55/ee/3ee88d98613493fd1e698402fc3f822e813ce0e261feb86ab4f3ac13488b/cloudmanager-micropython-esp8266-0.0.23.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "1ae27f9c4e04fbe982b0edcdc48f9986", "sha256": "4b0581fa1df6a5223f11a0b71cfca09b06d09b716c660ac3c27d05943db7c4d6" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-0.0.6.tar.gz", "has_sig": false, "md5_digest": "1ae27f9c4e04fbe982b0edcdc48f9986", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2493, "upload_time": "2016-11-08T07:54:19", "url": "https://files.pythonhosted.org/packages/6e/8c/9dcc89f576377d4a0594fa3ecb8e3b422373631630d01308e3336abe3b5b/cloudmanager-micropython-esp8266-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "36ae16b3a822ba04bd873ad9e537906a", "sha256": "8ab8c938f276ee9b2f02aeb9cddb55c93cd7ea57f8dde6ab11f7eb3ea75aa26d" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-0.0.7.tar.gz", "has_sig": false, "md5_digest": "36ae16b3a822ba04bd873ad9e537906a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2505, "upload_time": "2016-11-08T07:56:24", "url": "https://files.pythonhosted.org/packages/bc/08/9fa2834a1a99c52df62203148e34576562e25fdef93e581d01a4cc95af4d/cloudmanager-micropython-esp8266-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "267f1161a001984e45fb804c67d0ae60", "sha256": "77682be5650a1654b77b999fc0356f171e83317019bc2b2306f5020c244d2938" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-0.0.8.tar.gz", "has_sig": false, "md5_digest": "267f1161a001984e45fb804c67d0ae60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 365237, "upload_time": "2016-11-08T08:21:33", "url": "https://files.pythonhosted.org/packages/c1/b9/099153d80f4710314212efa2bcc5febe1b69c275af3c7f59b9376f5bd1b4/cloudmanager-micropython-esp8266-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "2e1cf6f3311b00a1b7fbefca5a077fe4", "sha256": "c62e706918002367775da3dbbd048e1503be52197de8bfcfe36c3a357b313a92" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-0.0.9.tar.gz", "has_sig": false, "md5_digest": "2e1cf6f3311b00a1b7fbefca5a077fe4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 365673, "upload_time": "2016-11-09T19:47:11", "url": "https://files.pythonhosted.org/packages/26/11/18c728f5897d78d1ca12b6ca2231665c7a130ff4abd626099b7651b56221/cloudmanager-micropython-esp8266-0.0.9.tar.gz" } ], "1.8.5.dev1": [ { "comment_text": "", "digests": { "md5": "6f585cb5af26a2d310ee7e665fda53da", "sha256": "47d02f0e6f64721c42cccc33ee435fe9383acbe9fad16a688a71530163adde7d" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-1.8.5.dev1.tar.gz", "has_sig": false, "md5_digest": "6f585cb5af26a2d310ee7e665fda53da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 370656, "upload_time": "2016-11-10T07:26:23", "url": "https://files.pythonhosted.org/packages/a2/d2/471d4dda53ad62c136ff4fabdf14061bbf6330a3ade6535093d13e39a4aa/cloudmanager-micropython-esp8266-1.8.5.dev1.tar.gz" } ], "1.8.5.dev7": [ { "comment_text": "", "digests": { "md5": "844cd276bc01ee6e1e340fc5a913233c", "sha256": "734826cbdd5ca7b4d18f0e79b8d287ddb3546bda642104ef1e9e0a6836cc6a38" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-1.8.5.dev7.tar.gz", "has_sig": false, "md5_digest": "844cd276bc01ee6e1e340fc5a913233c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 370669, "upload_time": "2016-11-10T08:03:41", "url": "https://files.pythonhosted.org/packages/88/d5/f085b6cff27f5908bf77169f0bd63fc0864c55cd293415b7335b6bf0640a/cloudmanager-micropython-esp8266-1.8.5.dev7.tar.gz" } ], "1.8.5.dev8": [ { "comment_text": "", "digests": { "md5": "f59cd93cf9922aee04c1cdf68e436b3e", "sha256": "48ec279849ef207c1a7936b392cca01df785d58aba9615e0e7f5b7e60b6375ad" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-1.8.5.dev8.tar.gz", "has_sig": false, "md5_digest": "f59cd93cf9922aee04c1cdf68e436b3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 370691, "upload_time": "2016-11-11T03:43:48", "url": "https://files.pythonhosted.org/packages/0f/af/981961b884689d34eb8d47cc8e35364c78e56ba82f460cdbe038ccabee95/cloudmanager-micropython-esp8266-1.8.5.dev8.tar.gz" } ], "1.8.6": [ { "comment_text": "", "digests": { "md5": "3fb5868e1dad479fdcdeb5d874c947af", "sha256": "6bd264199dd2c21d2d5565cd1821fa19ab93f95b97c2d4a99389d3b9c5262670" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-1.8.6.tar.gz", "has_sig": false, "md5_digest": "3fb5868e1dad479fdcdeb5d874c947af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 373822, "upload_time": "2016-12-03T07:46:10", "url": "https://files.pythonhosted.org/packages/3b/2f/29714ee78d079aa1895ef4eb936e47caac94908afecea0cb148390dbe367/cloudmanager-micropython-esp8266-1.8.6.tar.gz" } ], "1.8.6.dev0": [ { "comment_text": "", "digests": { "md5": "1b6c39c847d18c4f51c2764c66dfcca6", "sha256": "9ca2a8d33d124d69b91854cbdfa4cbac90bd19285f3be76390e04e65a75aa4a6" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-1.8.6.dev0.tar.gz", "has_sig": false, "md5_digest": "1b6c39c847d18c4f51c2764c66dfcca6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 371164, "upload_time": "2016-11-12T06:08:17", "url": "https://files.pythonhosted.org/packages/dd/fb/dfb9fd43b13215c972482af6e943ee9991c95755ba65294fcc3da88a70cd/cloudmanager-micropython-esp8266-1.8.6.dev0.tar.gz" } ], "1.8.6.dev3": [ { "comment_text": "", "digests": { "md5": "0820e94117d9f8733ff61ed29c11df81", "sha256": "87c01a8ea18174ce32173814130c53b4df89b063fa46238a5cdfc1b82d91599e" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-1.8.6.dev3.tar.gz", "has_sig": false, "md5_digest": "0820e94117d9f8733ff61ed29c11df81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 371869, "upload_time": "2016-11-17T08:26:48", "url": "https://files.pythonhosted.org/packages/e2/40/e84d24c57520e7533d2a2e205d681ff56119b78db8796d9ebd8db840291b/cloudmanager-micropython-esp8266-1.8.6.dev3.tar.gz" } ], "1.8.6.dev4": [ { "comment_text": "", "digests": { "md5": "8957dfea06fbf4761392db36a1e680d4", "sha256": "37c0e88186a01a2211e871f1ca157ea7f9e7a4fbbb231781a67f0e90828cc22e" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-1.8.6.dev4.tar.gz", "has_sig": false, "md5_digest": "8957dfea06fbf4761392db36a1e680d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 371871, "upload_time": "2016-11-17T09:15:17", "url": "https://files.pythonhosted.org/packages/5d/37/732fb3db7caed8bd379d3649f9e70f5d86fea3c14ce48bd32fafd2d129e4/cloudmanager-micropython-esp8266-1.8.6.dev4.tar.gz" } ], "1.8.6.dev40": [ { "comment_text": "", "digests": { "md5": "c27d921104e0af9d0579238543a94fed", "sha256": "c5f1b58ab0ac42a6b3830400e12ec2daf461897a1607fce2d7e6b33c055d5af6" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-1.8.6.dev40.tar.gz", "has_sig": false, "md5_digest": "c27d921104e0af9d0579238543a94fed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 373683, "upload_time": "2016-11-23T09:28:33", "url": "https://files.pythonhosted.org/packages/fa/d3/b3318b2d77233d3ff66bb34952964f1c4f37de33416bd0f59e27d7ca5d61/cloudmanager-micropython-esp8266-1.8.6.dev40.tar.gz" } ], "1.8.6.dev50": [ { "comment_text": "", "digests": { "md5": "aac773910399b614e23ce2d471d5c903", "sha256": "43e9750e4024e8b1ac1fb750d74945248a8093ca9d029eb55d1cbbbecc614d85" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-1.8.6.dev50.tar.gz", "has_sig": false, "md5_digest": "aac773910399b614e23ce2d471d5c903", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 373839, "upload_time": "2016-11-27T08:29:46", "url": "https://files.pythonhosted.org/packages/32/81/ccdca5e59cb97fe022bc19545a8712a493c69cbe68ff5497e33d7bdef198/cloudmanager-micropython-esp8266-1.8.6.dev50.tar.gz" } ], "1.8.6.dev51": [ { "comment_text": "", "digests": { "md5": "fb5915c63ace095fab66d19c9404d451", "sha256": "4cfa3ba217a103168d586bf5e7d39d0a95d095f0b6af0ed5814f7602a6a3ea1d" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-1.8.6.dev51.tar.gz", "has_sig": false, "md5_digest": "fb5915c63ace095fab66d19c9404d451", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 373849, "upload_time": "2016-12-03T07:34:32", "url": "https://files.pythonhosted.org/packages/34/96/b5d1dee08603b853e7015d8ff8c5c11a682b9dc4b1932534361d143cd0fd/cloudmanager-micropython-esp8266-1.8.6.dev51.tar.gz" } ], "1.8.6.dev70": [ { "comment_text": "", "digests": { "md5": "dea65cbae055984b8f134cc6dfab750e", "sha256": "7170fa88560147ce1cfdc4328bbb545da3e68d46c0930813c6394c574f81bda4" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-1.8.6.dev70.tar.gz", "has_sig": false, "md5_digest": "dea65cbae055984b8f134cc6dfab750e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 396385, "upload_time": "2018-05-30T03:22:41", "url": "https://files.pythonhosted.org/packages/1d/81/3160ec5c06244370010926083d80705e352f9ad4117dc0244a455c335d23/cloudmanager-micropython-esp8266-1.8.6.dev70.tar.gz" } ], "1.8.70": [ { "comment_text": "", "digests": { "md5": "f521bc05b70aadda25623b33c7a3e6d0", "sha256": "361b301f566c0b9d4c67780f14b553fe39ab8521473b141aa4bf8880cef07dff" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-1.8.70.tar.gz", "has_sig": false, "md5_digest": "f521bc05b70aadda25623b33c7a3e6d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 396368, "upload_time": "2018-05-30T03:49:36", "url": "https://files.pythonhosted.org/packages/b2/9f/0c53e9e9907010ad0704ca2f3a3a1a08ea8c491c33ee843933c23e775362/cloudmanager-micropython-esp8266-1.8.70.tar.gz" } ], "1.9.70": [ { "comment_text": "", "digests": { "md5": "1ec4d63b997b43a4203293b565c75431", "sha256": "249cbaeb4045c5a20ea709226db6874fd33dc788feaf958e33e9619a0bf94c98" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-1.9.70.tar.gz", "has_sig": false, "md5_digest": "1ec4d63b997b43a4203293b565c75431", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1189777, "upload_time": "2018-06-03T20:19:17", "url": "https://files.pythonhosted.org/packages/58/06/4a3f1950a462303c13f384aa4e9412e57425c21ece0d8462a88f209e40e9/cloudmanager-micropython-esp8266-1.9.70.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "1ec4d63b997b43a4203293b565c75431", "sha256": "249cbaeb4045c5a20ea709226db6874fd33dc788feaf958e33e9619a0bf94c98" }, "downloads": -1, "filename": "cloudmanager-micropython-esp8266-1.9.70.tar.gz", "has_sig": false, "md5_digest": "1ec4d63b997b43a4203293b565c75431", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1189777, "upload_time": "2018-06-03T20:19:17", "url": "https://files.pythonhosted.org/packages/58/06/4a3f1950a462303c13f384aa4e9412e57425c21ece0d8462a88f209e40e9/cloudmanager-micropython-esp8266-1.9.70.tar.gz" } ] }