{ "info": { "author": "WildFoundry", "author_email": "willmcgugan@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Internet" ], "description": "# Dataplicity Lomond\n\nTranquil WebSockets for Python.\n\n[![PyPI version](https://badge.fury.io/py/lomond.svg)](https://pypi.org/project/lomond/)\n[![PyPI](https://img.shields.io/pypi/pyversions/lomond.svg)](https://pypi.org/project/lomond/)\n[![Coverage Status](https://coveralls.io/repos/github/wildfoundry/dataplicity-lomond/badge.svg?branch=master)](https://coveralls.io/github/wildfoundry/dataplicity-lomond?branch=master)\n[![CircleCI](https://circleci.com/gh/wildfoundry/dataplicity-lomond/tree/master.svg?style=svg)](https://circleci.com/gh/wildfoundry/dataplicity-lomond/tree/master)\n\nLomond is a Websocket client which turns a websocket connection in to\nan orderly stream of _events_. No threads or callbacks necessary.\n\n- [Documentation](https://lomond.readthedocs.io/)\n\n- [GitHub Repository](https://github.com/wildfoundry/dataplicity-lomond)\n\n- [Blog](https://www.willmcgugan.com/search/?s=lomond)\n\n## How to Use\n\nTo connect to a \"ws:\" or \"wss:\" WebSocket URL, construct a `lomond.WebSocket` object then iterate over it. This will yield an _event object_ for each step in the connection process and for any data sent by the server.\n\nYou will receive a ``Binary`` or ``Text`` event when the server sends you a message.\nYou may _send_ a message with the ``send_binary`` or ``send_text`` methods.\n\n## Example\n\nThe following is a silly example that connects to a websocket server\n(in this case a public echo server), and sends a string of text\nevery 5 seconds.\n\n\n```python\nfrom lomond import WebSocket\n\n\nwebsocket = WebSocket('wss://echo.websocket.org')\n\nfor event in websocket:\n if event.name == 'poll':\n websocket.send_text('Hello, World')\n elif event.name == 'text':\n print(event.text)\n```\n\n## Events\n\nA successful websocket connection will result in a series of events\nsuch as the following:\n\n```\n\u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n\u2502 Connecting \u2502 Contacting server\n\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \u2502\n \u25bc\n\u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510 Connected to server (but\n\u2502 Connected \u2502 not yet sent data)\n\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \u2502\n \u25bc\n\u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510 Negotiated Websocket\n\u2502 Ready \u2502 handshake\n\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \u2502 \u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n \u2502 \u2502 \u2502\n \u25bc \u25bc \u2502\n\u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510 \u2502 Send and receive\n\u2502 Binary / Text / Poll \u2502\u2500\u2500\u2518 application data\n\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \u2502\n \u25bc\n\u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510 Websocket close\n\u2502 Closed \u2502 handshake\n\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n \u2502\n \u25bc\n\u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\n\u2502 Disconnected \u2502 Disconnected TCP/IP\n\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518 connection to server\n```\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/wildfoundry/dataplicity-lomond", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "lomond", "package_url": "https://pypi.org/project/lomond/", "platform": "any", "project_url": "https://pypi.org/project/lomond/", "project_urls": { "Homepage": "https://github.com/wildfoundry/dataplicity-lomond" }, "release_url": "https://pypi.org/project/lomond/0.3.3/", "requires_dist": [ "six (>=1.10.0)" ], "requires_python": "", "summary": "Websocket Client Library", "version": "0.3.3" }, "last_serial": 4296680, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "5bbd2ca09499d085905b80d077148724", "sha256": "09f5c99f4acc162bebf6bd1ee193c1a0bdf88363830ee445dc303eef04107c19" }, "downloads": -1, "filename": "lomond-0.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "5bbd2ca09499d085905b80d077148724", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 15647, "upload_time": "2017-03-10T09:48:42", "url": "https://files.pythonhosted.org/packages/27/fe/f3ed53de12f4541c1696aa208b00cbd839b78f0ccd6c5ae16d89cf6b2018/lomond-0.1.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b6c73294470ad0ee2d75c9853d70e059", "sha256": "d7a3bd0299ec020699a572b8a3cf7dee3e922f02226c6e749b132422322b1b0c" }, "downloads": -1, "filename": "lomond-0.1.0.tar.gz", "has_sig": false, "md5_digest": "b6c73294470ad0ee2d75c9853d70e059", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10081, "upload_time": "2017-03-10T09:50:59", "url": "https://files.pythonhosted.org/packages/db/4b/efb6aa2b638b1416f18a746869eb03f25af0114d8c70a23d46b33b479f9c/lomond-0.1.0.tar.gz" } ], "0.1.0a0": [ { "comment_text": "", "digests": { "md5": "e0c793e4d8a7d4e9401f685ce1302cce", "sha256": "771210049a6af17184203b02379c01abd04e9c0a748cb64b99338bb229ededa8" }, "downloads": -1, "filename": "lomond-0.1.0a0-py2-none-any.whl", "has_sig": false, "md5_digest": "e0c793e4d8a7d4e9401f685ce1302cce", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 15683, "upload_time": "2017-03-10T09:46:22", "url": "https://files.pythonhosted.org/packages/8d/15/46203ec3bcb64f1f2f79b31e6f823727569d4a07161d691f480fc00566f9/lomond-0.1.0a0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d15f449a990852f2e132086179187bde", "sha256": "74dc4ced5a8d33255a63058b5ae09a22455c78bd4d8de3fe26a68ee328467e54" }, "downloads": -1, "filename": "lomond-0.1.0a0.tar.gz", "has_sig": false, "md5_digest": "d15f449a990852f2e132086179187bde", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10097, "upload_time": "2017-03-10T09:46:24", "url": "https://files.pythonhosted.org/packages/c8/53/76f5ca200b9ec662a1dd54a06bece6813c50e147e1d2bdcfb90a132eae83/lomond-0.1.0a0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "bb1a0c925cf676939eb70e3bfba109f8", "sha256": "a15cc9ff1de76c5073c0fb188d6c00efa76fbe9c72c06dda3267b97dae2661df" }, "downloads": -1, "filename": "lomond-0.1.1-py2-none-any.whl", "has_sig": false, "md5_digest": "bb1a0c925cf676939eb70e3bfba109f8", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15652, "upload_time": "2017-03-10T10:11:35", "url": "https://files.pythonhosted.org/packages/d3/8e/8d3f3e01d13e6ac7094a67466a0569ca54f4293b8be26f9bdf0b61498c92/lomond-0.1.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "804cbfe24bb570e9f641874a9a60f812", "sha256": "25a77f99cf42b872b41a50fd16887230abdd165a48e56d8ee098997ee97fc6fe" }, "downloads": -1, "filename": "lomond-0.1.1.tar.gz", "has_sig": false, "md5_digest": "804cbfe24bb570e9f641874a9a60f812", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10081, "upload_time": "2017-03-10T10:11:33", "url": "https://files.pythonhosted.org/packages/ae/3c/d7ec5b9e4612d290a8df5c8472a2e00b86bb1429535b1e92ae3b3d6bf31e/lomond-0.1.1.tar.gz" } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "80168e6c386b1caee6cf1a8e6726e107", "sha256": "73a453390568d6a959e474c045fe5c2c2108924bea0d499ca440555425ec17b6" }, "downloads": -1, "filename": "lomond-0.1.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "80168e6c386b1caee6cf1a8e6726e107", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 28119, "upload_time": "2017-07-25T15:24:57", "url": "https://files.pythonhosted.org/packages/6c/0d/68449baaa446de6e2942670264ef8bbd44e88bdc8c6875c6adb0eadedf6f/lomond-0.1.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "de5e5233670a4d7cf3619b44d434a2ab", "sha256": "beef62b5d5ad984847cd746cf4f038d03cda8d2bd304ad95548dfe4c18707f39" }, "downloads": -1, "filename": "lomond-0.1.10.tar.gz", "has_sig": false, "md5_digest": "de5e5233670a4d7cf3619b44d434a2ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20725, "upload_time": "2017-07-25T15:24:55", "url": "https://files.pythonhosted.org/packages/22/0f/cb745e4b7770a04cdc4e27a031594442f19574e524b55cbcaaa8f753d529/lomond-0.1.10.tar.gz" } ], "0.1.10a0": [ { "comment_text": "", "digests": { "md5": "b6f5ae543bf1ecea24ed0504ad79d26d", "sha256": "4caa76e27f79cb9a5aa70e8895cd80d75284a45d8328d88c56d51a70d7523c2b" }, "downloads": -1, "filename": "lomond-0.1.10a0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b6f5ae543bf1ecea24ed0504ad79d26d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 28152, "upload_time": "2017-07-25T13:28:59", "url": "https://files.pythonhosted.org/packages/aa/02/bc76ad88a9fa4e95b116cb9936842a3b272a325295ffc9b3cac3e015eb10/lomond-0.1.10a0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "87e6667797b1e6c10d811a4a870e16f5", "sha256": "f97994c21eb15d9c2288619eb9cbd0509baa4dcf5c7b3943736409288d033182" }, "downloads": -1, "filename": "lomond-0.1.10a0.tar.gz", "has_sig": false, "md5_digest": "87e6667797b1e6c10d811a4a870e16f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20750, "upload_time": "2017-07-25T13:28:57", "url": "https://files.pythonhosted.org/packages/dc/c6/cf7c54d5a07dee6810febc3feae5f76f7a7483c5f1763179e34e88e00bb6/lomond-0.1.10a0.tar.gz" } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "fdd0d836750ca7f2c9821adc91bfab97", "sha256": "e1ce7d705ce3a4fbb0b5f9e1ee2cbd4ebaeb399302e405735ed92778c33e2a50" }, "downloads": -1, "filename": "lomond-0.1.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fdd0d836750ca7f2c9821adc91bfab97", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 28238, "upload_time": "2017-08-09T10:24:30", "url": "https://files.pythonhosted.org/packages/b6/1c/394907c615b3b592a2689d40cb788966e2dea259c41e700c2c8e5d972632/lomond-0.1.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "389c073f6685a3214d14930b28201dab", "sha256": "06068fadda369037ee59b8a4caae8e5dd2aa36f7f1ff1370cde9abbbdc1abbf0" }, "downloads": -1, "filename": "lomond-0.1.11.tar.gz", "has_sig": false, "md5_digest": "389c073f6685a3214d14930b28201dab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20838, "upload_time": "2017-08-09T10:24:27", "url": "https://files.pythonhosted.org/packages/95/de/367ca5197c6346d798187c88e13839b635ed608c7a19ab07d1e0040c66f3/lomond-0.1.11.tar.gz" } ], "0.1.12": [ { "comment_text": "", "digests": { "md5": "4149d48efc962972ae845a0040c7fb39", "sha256": "c9df36ba18751d6fbf58babe43bb2de1e4339ac2ce8bc13272b40d65b0b5a14b" }, "downloads": -1, "filename": "lomond-0.1.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4149d48efc962972ae845a0040c7fb39", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 28290, "upload_time": "2017-10-17T09:04:27", "url": "https://files.pythonhosted.org/packages/de/38/91b43dab42b1b44f24beac9d7d6359e0d538d91e35228a77e821a7641c4d/lomond-0.1.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c03b43ebb39bea25f4c75c1a8f814e67", "sha256": "80cf27a39ecc5ad843072e5b9ad5fb9096f96fef0b691b420e4cf03bd911e104" }, "downloads": -1, "filename": "lomond-0.1.12.tar.gz", "has_sig": false, "md5_digest": "c03b43ebb39bea25f4c75c1a8f814e67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20929, "upload_time": "2017-10-17T09:04:24", "url": "https://files.pythonhosted.org/packages/d2/2e/f11015817681688f8edbf43b3d000d7009e555f85e7969b03bfe6064a65a/lomond-0.1.12.tar.gz" } ], "0.1.13": [ { "comment_text": "", "digests": { "md5": "c92b7c7608773d2eb78e94d43144c727", "sha256": "3b33e7d661944b5405c41f510776b450e1b02892b2c7b5f457d9aa8220f5f537" }, "downloads": -1, "filename": "lomond-0.1.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c92b7c7608773d2eb78e94d43144c727", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 29167, "upload_time": "2018-01-29T10:22:31", "url": "https://files.pythonhosted.org/packages/b1/54/998ad06e404a3107bde060d546bf163cf890d1527caaadb3e7eed6e349dd/lomond-0.1.13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f221d2309aef1688b02591ab9a0435f7", "sha256": "47044430d5ae9cca2fe452a670b7ff4299e62acef60ac8d83c6417f7e968e397" }, "downloads": -1, "filename": "lomond-0.1.13.tar.gz", "has_sig": false, "md5_digest": "f221d2309aef1688b02591ab9a0435f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21729, "upload_time": "2018-01-29T10:22:29", "url": "https://files.pythonhosted.org/packages/4f/28/3dc370c80bf9b906e6b060637e1ff1e420f7571dcc2375362c0c195a90fb/lomond-0.1.13.tar.gz" } ], "0.1.13a0": [ { "comment_text": "", "digests": { "md5": "490e4982b5c0db095ca5aebd79b51735", "sha256": "7d6e9c7fe0a043dbaafbf120ebb1e8224f1c20d8ad7a6fbf55e684fd3573f297" }, "downloads": -1, "filename": "lomond-0.1.13a0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "490e4982b5c0db095ca5aebd79b51735", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 29198, "upload_time": "2018-01-24T16:30:55", "url": "https://files.pythonhosted.org/packages/5e/6e/0e68f46285ccc02ce2f74b3b92b0aa33992279c7334231d7aedd10da0d42/lomond-0.1.13a0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "225ca05d916488dad81806d54b195639", "sha256": "838c09e067c397a2b743d0ccd9267afda5d42f4218cbf90fbc0311e4aa2d8ef4" }, "downloads": -1, "filename": "lomond-0.1.13a0.tar.gz", "has_sig": false, "md5_digest": "225ca05d916488dad81806d54b195639", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21752, "upload_time": "2018-01-24T16:30:52", "url": "https://files.pythonhosted.org/packages/41/af/6acbfcfa0254187db5c7cc95495337b63cb7a66044801e7ddc21966222e6/lomond-0.1.13a0.tar.gz" } ], "0.1.14": [ { "comment_text": "", "digests": { "md5": "4ef011768f626fdf3cdcaf517b147103", "sha256": "5dc92614a8c90a87a8a9f20e173bb10c7eb2937b7ecdf43750cfa7359f5ada70" }, "downloads": -1, "filename": "lomond-0.1.14-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4ef011768f626fdf3cdcaf517b147103", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 30029, "upload_time": "2018-04-05T08:53:47", "url": "https://files.pythonhosted.org/packages/fa/37/c229eaf8b6cd82085d0fec6a764ae40d78ac95a4d4df85b954845ed35530/lomond-0.1.14-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "46be8122e2b50c0cf3daf595891b566d", "sha256": "e18578303570844e23818a9e9c0e4d1acbe76acccd15221e2ed6b2157a67812e" }, "downloads": -1, "filename": "lomond-0.1.14.tar.gz", "has_sig": false, "md5_digest": "46be8122e2b50c0cf3daf595891b566d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22529, "upload_time": "2018-04-05T08:53:45", "url": "https://files.pythonhosted.org/packages/37/a9/99f444162d4b9664fb7bed5741b9e61997685fd665e8da9ff145181572bf/lomond-0.1.14.tar.gz" } ], "0.1.15": [ { "comment_text": "", "digests": { "md5": "ab43e3641c8ae8512bb06da316d55168", "sha256": "f63569cac437f1b2c45f97f4d5b8db81afa84a3cecaf46364da779f7774b405c" }, "downloads": -1, "filename": "lomond-0.1.15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ab43e3641c8ae8512bb06da316d55168", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 32463, "upload_time": "2018-04-07T16:43:58", "url": "https://files.pythonhosted.org/packages/b0/28/b1c07b6f487189ed3c7130bf2f9d0b456523d3032dcf051ed3d4c338483b/lomond-0.1.15-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3d6a132181d20722d61ae79c18425056", "sha256": "360355cf4916a888c465e7afb1884cf68fd5ef8ac4935c91a4cfbcda52fc393d" }, "downloads": -1, "filename": "lomond-0.1.15.tar.gz", "has_sig": false, "md5_digest": "3d6a132181d20722d61ae79c18425056", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24114, "upload_time": "2018-04-07T16:43:56", "url": "https://files.pythonhosted.org/packages/53/ad/4d8ed987c99ff21245c8f5e7de843906a20ecb0476f3cdb236117bb6197e/lomond-0.1.15.tar.gz" } ], "0.1.16a0": [ { "comment_text": "", "digests": { "md5": "6e0fc0aee82e16d4e3885d127d7397b9", "sha256": "bd2b340ed7f1fa2bcf217493b45ca861d66f128e20bdcac55d7e3afc593e5e70" }, "downloads": -1, "filename": "lomond-0.1.16a0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6e0fc0aee82e16d4e3885d127d7397b9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 34677, "upload_time": "2018-04-19T15:14:53", "url": "https://files.pythonhosted.org/packages/ae/ea/6ced4ded241e3a0017bc704ad3d4e73f6b8d61fcce0195118ef386a2831d/lomond-0.1.16a0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "54d3baa9b04645b0e37eabd83182a382", "sha256": "b08217a761d46740bd3d68273738cbbd18e26a282d770014ad3b6c4411316429" }, "downloads": -1, "filename": "lomond-0.1.16a0.tar.gz", "has_sig": false, "md5_digest": "54d3baa9b04645b0e37eabd83182a382", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25719, "upload_time": "2018-04-19T15:14:52", "url": "https://files.pythonhosted.org/packages/dc/02/79d2b2658f85a386999367c3e1b92b85520c412a9d986871fe5bacad2cc2/lomond-0.1.16a0.tar.gz" } ], "0.1.16a1": [ { "comment_text": "", "digests": { "md5": "66ca9f341d968f5dca3ba90ddf8c8366", "sha256": "c43f4c59be8d475faeb6dd3b11c5cb54669109b116d73ea3fa930323247edb11" }, "downloads": -1, "filename": "lomond-0.1.16a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "66ca9f341d968f5dca3ba90ddf8c8366", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 34675, "upload_time": "2018-04-19T15:16:54", "url": "https://files.pythonhosted.org/packages/02/78/831544729991730ee827edba3f55f24191835b966e25a36c6f328b71c1ef/lomond-0.1.16a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e5177c4c229fe44fff053f45512f4d84", "sha256": "2d52684f8361b8dc8841f2565f677d1db555d7d1fa2f87abc4dd5a4d8cbe8fcf" }, "downloads": -1, "filename": "lomond-0.1.16a1.tar.gz", "has_sig": false, "md5_digest": "e5177c4c229fe44fff053f45512f4d84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25713, "upload_time": "2018-04-19T15:16:53", "url": "https://files.pythonhosted.org/packages/47/e1/15010c1fabd3af114cbfb443cb7864595c47f3701787b096ec522fb4740c/lomond-0.1.16a1.tar.gz" } ], "0.1.16a2": [ { "comment_text": "", "digests": { "md5": "322abda81d33a86f431f20d6c77b3d78", "sha256": "510e55a1f9485a02c65045dbf7fcfddcdbe4e80ad0f93015eb3c3c42a4fcf24c" }, "downloads": -1, "filename": "lomond-0.1.16a2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "322abda81d33a86f431f20d6c77b3d78", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 34672, "upload_time": "2018-04-19T15:20:42", "url": "https://files.pythonhosted.org/packages/a7/66/dfbf840e9db215d72231b5481de1b05d2ba295d02a320a5250f185f6ad42/lomond-0.1.16a2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4f1b42af11540c6e566c36b0c5513d71", "sha256": "026416d9a639af5aa08ef750fae4b14b5fa6039d337296ee722e6b4865bb916f" }, "downloads": -1, "filename": "lomond-0.1.16a2.tar.gz", "has_sig": false, "md5_digest": "4f1b42af11540c6e566c36b0c5513d71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25720, "upload_time": "2018-04-19T15:20:40", "url": "https://files.pythonhosted.org/packages/80/7c/b353f5b4b32be7e7e85e6b112694cc78fd70cce7b3a8bfb34ce6d2badfb0/lomond-0.1.16a2.tar.gz" } ], "0.1.16a3": [ { "comment_text": "", "digests": { "md5": "c53076f810d527ca37fab4f826c57004", "sha256": "9596e724d00d3196c453bac75cb3b34ebf6629e61cd626d612981cba4a4ce6e0" }, "downloads": -1, "filename": "lomond-0.1.16a3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c53076f810d527ca37fab4f826c57004", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 32970, "upload_time": "2018-04-19T15:22:57", "url": "https://files.pythonhosted.org/packages/f4/0a/874ef76db9eae134f0c87a77d14aaa5e636aa8221f732f6e37fbfcfd2567/lomond-0.1.16a3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "387c59fede90b21fddc5b29deb182613", "sha256": "5157b82b6b23eb8e070daf4b3b66928c1be24e746093e73571998cc334b445fd" }, "downloads": -1, "filename": "lomond-0.1.16a3.tar.gz", "has_sig": false, "md5_digest": "387c59fede90b21fddc5b29deb182613", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25429, "upload_time": "2018-04-19T15:22:55", "url": "https://files.pythonhosted.org/packages/64/f7/ae42bb74da24c4435de47330504aea132afc1f49de3ca6df0d162b5578f2/lomond-0.1.16a3.tar.gz" } ], "0.1.16a4": [ { "comment_text": "", "digests": { "md5": "f7b79dec5601b51103d8b328ba442ac8", "sha256": "e18c54d350653349ff29dd69508925b2d0f96959f5630ac89e62b0649defba97" }, "downloads": -1, "filename": "lomond-0.1.16a4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f7b79dec5601b51103d8b328ba442ac8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 32919, "upload_time": "2018-04-19T15:27:36", "url": "https://files.pythonhosted.org/packages/73/ec/d353d5a7addea42c70cd60aa409493a5a9a622917418acba9e49a65141f7/lomond-0.1.16a4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "31a57163aaf4255c85f9fd6235855f8a", "sha256": "8b49fe9eb1db46e6a4eee63a86a84b2983d2fd2b61525a8fe5c8c0beded926ea" }, "downloads": -1, "filename": "lomond-0.1.16a4.tar.gz", "has_sig": false, "md5_digest": "31a57163aaf4255c85f9fd6235855f8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25747, "upload_time": "2018-04-19T15:27:38", "url": "https://files.pythonhosted.org/packages/77/12/9696ca2be42fd92d780d00f86769ab31af3e361ea77884dd9e7a9aa93b1c/lomond-0.1.16a4.tar.gz" } ], "0.1.16a5": [ { "comment_text": "", "digests": { "md5": "b23ce6b6c67ee9d2f2602fcfc7cfef97", "sha256": "ed6b158b20dd92480f0604ddeca7d31b829ffbfe3381df31a0ab8a87481de095" }, "downloads": -1, "filename": "lomond-0.1.16a5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b23ce6b6c67ee9d2f2602fcfc7cfef97", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 32995, "upload_time": "2018-04-19T15:54:07", "url": "https://files.pythonhosted.org/packages/79/a7/8c402ee52042e8dc242d561a433da1172a82a559a9cd0d52f78e1daecaa6/lomond-0.1.16a5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c4ac52845f63750dd23f1d8f7f4ec191", "sha256": "e066f5c725d5e44d1639b0d22f73280df509fb2b04346a9b8d846ec77e222602" }, "downloads": -1, "filename": "lomond-0.1.16a5.tar.gz", "has_sig": false, "md5_digest": "c4ac52845f63750dd23f1d8f7f4ec191", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25785, "upload_time": "2018-04-19T15:54:09", "url": "https://files.pythonhosted.org/packages/7f/9c/e8c83f00b3176afdc29eb490390ec2cf9bf2af04f60c201ade1d1bb51db8/lomond-0.1.16a5.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "e7d6ac1e246297f8c97a9bd2871fbc1a", "sha256": "a2d4c7d6c30ac76beef9843ae1bcbf1d1fd532ab36d2156e148e65f78d147ca3" }, "downloads": -1, "filename": "lomond-0.1.2-py2-none-any.whl", "has_sig": false, "md5_digest": "e7d6ac1e246297f8c97a9bd2871fbc1a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15647, "upload_time": "2017-03-10T10:12:11", "url": "https://files.pythonhosted.org/packages/c2/d9/421f4cdbf549edc7771c34c538d4dc82e0adb321bc78206acaf3d1dbdb64/lomond-0.1.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "391c8981a020c947242f6158dbdda48b", "sha256": "c36ab5fec6f82f86abc5d7a898b4176ed6202d2b912456d78237653ebdf80f5e" }, "downloads": -1, "filename": "lomond-0.1.2.tar.gz", "has_sig": false, "md5_digest": "391c8981a020c947242f6158dbdda48b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10081, "upload_time": "2017-03-10T10:12:09", "url": "https://files.pythonhosted.org/packages/3f/ca/ac045891579c99a0a5d4cc3c5e5b3343623ee9e368e266c78d024c1afced/lomond-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "6e953fe830c560643394035d8315751c", "sha256": "361c68370243091a774dbdfda4bb28a3de3445218e67279b5aa1605a7e4e1eac" }, "downloads": -1, "filename": "lomond-0.1.3-py2-none-any.whl", "has_sig": false, "md5_digest": "6e953fe830c560643394035d8315751c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 18145, "upload_time": "2017-03-14T10:52:44", "url": "https://files.pythonhosted.org/packages/b1/de/f14c7ca415e548b0fcbda8de20cc489f1ee3ee794be421fae2432c5d2640/lomond-0.1.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad3cd513dd836cd78a651df583219aaa", "sha256": "1e256fa74ea01907b732d18b1a4b117cbc9cc7b37b90b3da7aa90c70c9fae8d9" }, "downloads": -1, "filename": "lomond-0.1.3.tar.gz", "has_sig": false, "md5_digest": "ad3cd513dd836cd78a651df583219aaa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11899, "upload_time": "2017-03-14T10:52:43", "url": "https://files.pythonhosted.org/packages/6c/50/a457d413452bdf6f3ddae95a949238ffcf965fe19082ac15803951ab26c3/lomond-0.1.3.tar.gz" } ], "0.1.3a0": [ { "comment_text": "", "digests": { "md5": "b182b8f354a04e701fef7f7e34ae3486", "sha256": "c0811222e2865816cc546051a5b2eba4925cbaf5be8a04c02bf8a046384f88a3" }, "downloads": -1, "filename": "lomond-0.1.3a0-py2-none-any.whl", "has_sig": false, "md5_digest": "b182b8f354a04e701fef7f7e34ae3486", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15774, "upload_time": "2017-03-10T11:46:14", "url": "https://files.pythonhosted.org/packages/95/27/23e7453bc0b779ec1af9f71479087fd91e21a0cbddbf2959a3f2ec64d90e/lomond-0.1.3a0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cbd5daa8c13e553695dfd03d7d4c6c8c", "sha256": "c52df2b721f1da4a24512bee5eadfc33658fd18e8f8b1960dc94c25433283161" }, "downloads": -1, "filename": "lomond-0.1.3a0.tar.gz", "has_sig": false, "md5_digest": "cbd5daa8c13e553695dfd03d7d4c6c8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10139, "upload_time": "2017-03-10T11:46:12", "url": "https://files.pythonhosted.org/packages/b6/45/21ff169f408d8eeb579e35bf029bcab25ec1597f56e3c0d933879c41a4bc/lomond-0.1.3a0.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "7df3437fe1ed3c80bdef90dd880eca51", "sha256": "c09875c086ab7767ce5dd5b4d479c735dba3490be937d28a62b51b5fa3415906" }, "downloads": -1, "filename": "lomond-0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "7df3437fe1ed3c80bdef90dd880eca51", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 18196, "upload_time": "2017-03-14T12:13:09", "url": "https://files.pythonhosted.org/packages/9e/39/463ad8b061b068ae8e7e0ee2fefa1f66dd981329eef89d59162181fd3b01/lomond-0.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a2615acf7f051c799d2a3ffc25226afc", "sha256": "5b91d81fd7a7aaafe94cb84deeada01dded81c8dfe92cb67eb0e2a94c7ffa0e1" }, "downloads": -1, "filename": "lomond-0.1.4.tar.gz", "has_sig": false, "md5_digest": "a2615acf7f051c799d2a3ffc25226afc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11950, "upload_time": "2017-03-14T12:13:06", "url": "https://files.pythonhosted.org/packages/92/78/cdbd52c73075a81dfb77feedeba8b1c4d4adc0e842fb555a425e8579b683/lomond-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "96d1e3ed497e673d050e0c2e33de3662", "sha256": "2f373e42f8b9755a4e2ba1e251011c29763f66194e9b0923e10b05db5386f908" }, "downloads": -1, "filename": "lomond-0.1.5-py2-none-any.whl", "has_sig": false, "md5_digest": "96d1e3ed497e673d050e0c2e33de3662", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 18197, "upload_time": "2017-03-14T12:44:50", "url": "https://files.pythonhosted.org/packages/86/96/483674bccbc4e86345ef2803300240396c0a2fbba4429641490383a0e829/lomond-0.1.5-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eee9ef4af9392a641a96b3785c56e801", "sha256": "591ffcc49d820da36f72cda75ea16a375a4d78787b057b74b456021bf1dfd037" }, "downloads": -1, "filename": "lomond-0.1.5.tar.gz", "has_sig": false, "md5_digest": "eee9ef4af9392a641a96b3785c56e801", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12018, "upload_time": "2017-03-14T12:44:48", "url": "https://files.pythonhosted.org/packages/56/4d/39aaceed3db7504d229c3af27f8fb36fc6e9264109b61b1e287135185891/lomond-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "7114c51e8228247b917463d891a696f3", "sha256": "342b70fb179e290d2951fa25376d5e4409fd90558f36db0250ee9f0100e131d2" }, "downloads": -1, "filename": "lomond-0.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7114c51e8228247b917463d891a696f3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24622, "upload_time": "2017-03-23T09:44:16", "url": "https://files.pythonhosted.org/packages/1c/6f/eb356b5f31fbfb7f31df3e987ee752ac9f2fe9c94d6d7ee647085ef248cf/lomond-0.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a4ebf81f824b0e87e055f2a6c0055594", "sha256": "3face4cd6357f4f74bed25df84dbad0e85ea3404db990576ce27d02ee3e5b9b3" }, "downloads": -1, "filename": "lomond-0.1.6.tar.gz", "has_sig": false, "md5_digest": "a4ebf81f824b0e87e055f2a6c0055594", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17209, "upload_time": "2017-03-23T09:44:13", "url": "https://files.pythonhosted.org/packages/32/c5/dd0c610ffa5e03793e4d38e6890557cf5f12609c9839303942c4afcddbef/lomond-0.1.6.tar.gz" } ], "0.1.6a0": [ { "comment_text": "", "digests": { "md5": "7701c8c0e0606af13e32277eeab0e5d9", "sha256": "594de851ede4d341d7cac0104848b0a6006862db2bf486764d95bd725f61a490" }, "downloads": -1, "filename": "lomond-0.1.6a0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7701c8c0e0606af13e32277eeab0e5d9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24433, "upload_time": "2017-03-22T10:33:07", "url": "https://files.pythonhosted.org/packages/aa/e5/e82e61004f9bd12dab04fb4189b2eb79fb017aa84cf13edd5f3d839cd5bf/lomond-0.1.6a0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f65f0f18f9ad38b77ad05abfb60d084b", "sha256": "66f45610878e875f336465a66f5a0859dd6e042a28be358aa9de89df47485939" }, "downloads": -1, "filename": "lomond-0.1.6a0.tar.gz", "has_sig": false, "md5_digest": "f65f0f18f9ad38b77ad05abfb60d084b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16976, "upload_time": "2017-03-22T10:33:04", "url": "https://files.pythonhosted.org/packages/1f/ed/dc18c0cfb3125b0fd5547a8e4916d91278ab780de39e82a9a1fabb01e765/lomond-0.1.6a0.tar.gz" } ], "0.1.6a1": [ { "comment_text": "", "digests": { "md5": "7366298fef6a061ecc4a1c8a352db851", "sha256": "3f03cefb1f1dcec4655978701e19bb22ee405bb81751c433173caa11c8dd6698" }, "downloads": -1, "filename": "lomond-0.1.6a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7366298fef6a061ecc4a1c8a352db851", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24552, "upload_time": "2017-03-22T15:45:26", "url": "https://files.pythonhosted.org/packages/21/d5/51404e9f10fdeedebbba411e84c1cde417b22f9c64e8c6c59c5dd2ec3ac3/lomond-0.1.6a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dfee6028ab9e1927e1765ac61088dd54", "sha256": "4aa6796ad617835c70ce3816c008cb4240864b9bd7722c69626d3b4226791e6a" }, "downloads": -1, "filename": "lomond-0.1.6a1.tar.gz", "has_sig": false, "md5_digest": "dfee6028ab9e1927e1765ac61088dd54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17121, "upload_time": "2017-03-22T15:45:24", "url": "https://files.pythonhosted.org/packages/d3/fa/eef603e5f1d42370b25c1f48650e726fa7da3b03a7e18ed099b2229f79f2/lomond-0.1.6a1.tar.gz" } ], "0.1.6a2": [ { "comment_text": "", "digests": { "md5": "3d3dc97e30c34f3432ebb1f7213590be", "sha256": "1038efd12bffc1c9af516428e029c104885a9f52fad2a91dc479e44c5f875f7c" }, "downloads": -1, "filename": "lomond-0.1.6a2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3d3dc97e30c34f3432ebb1f7213590be", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24551, "upload_time": "2017-03-22T15:58:23", "url": "https://files.pythonhosted.org/packages/4f/0d/846fec7cee5b48fac79a01a7f2f092dd39dfb047b95a4a088f1f9f9af284/lomond-0.1.6a2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "43fceb2a62964283b33830851403bb06", "sha256": "d4893559745fc61f5936c36adcfd9ee76d9b1994ae6c6d3bc53e4e050bf9210b" }, "downloads": -1, "filename": "lomond-0.1.6a2.tar.gz", "has_sig": false, "md5_digest": "43fceb2a62964283b33830851403bb06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17116, "upload_time": "2017-03-22T15:58:21", "url": "https://files.pythonhosted.org/packages/82/a8/00b79d956dfc51dda0e6214717d4377b8e9dcfad6bb387ca47f7c7600886/lomond-0.1.6a2.tar.gz" } ], "0.1.6a3": [ { "comment_text": "", "digests": { "md5": "73633857e2e288b748c1f44cd330866a", "sha256": "37763f592cbfe9a79a1a3a0dcedecf9ee8459f0cfdde765e92d1b78d3756697a" }, "downloads": -1, "filename": "lomond-0.1.6a3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "73633857e2e288b748c1f44cd330866a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 24564, "upload_time": "2017-03-22T16:12:19", "url": "https://files.pythonhosted.org/packages/25/ce/039e7452ad1b09f65f08fbf3f87c5a493b42a778009a698fd9621a65b947/lomond-0.1.6a3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "39f7b6a6cac03cbf93e98dbf229d2853", "sha256": "99a670c810d590e82e173ec36b0868ae4ff1cd641901c7181519cd91ed6074a0" }, "downloads": -1, "filename": "lomond-0.1.6a3.tar.gz", "has_sig": false, "md5_digest": "39f7b6a6cac03cbf93e98dbf229d2853", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17127, "upload_time": "2017-03-22T16:12:16", "url": "https://files.pythonhosted.org/packages/93/f9/09ef3f3f3537d89bdc7aa8cc4bd4e717df31fe48256d3e5d77813d9a0cf4/lomond-0.1.6a3.tar.gz" } ], "0.1.7a0": [ { "comment_text": "", "digests": { "md5": "13cb047ab61150f04edcf6b70a7d4c23", "sha256": "2b703facb3e8f2b20c6c6a15d29be77979bd2b408a597f1caf17d0e7e45e1fb5" }, "downloads": -1, "filename": "lomond-0.1.7a0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "13cb047ab61150f04edcf6b70a7d4c23", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 25703, "upload_time": "2017-04-26T14:34:38", "url": "https://files.pythonhosted.org/packages/6d/e8/1f6e324caa58c01cf08c64c52489f7e6b03e909a21de837d980947086c4e/lomond-0.1.7a0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5b72a9dd09b6c42e711b9ecb09cdf7e7", "sha256": "0a5d2778398d24ea4e4bb54910eb77abd3845830a0564f8f2ef3b9b1aeff543b" }, "downloads": -1, "filename": "lomond-0.1.7a0.tar.gz", "has_sig": false, "md5_digest": "5b72a9dd09b6c42e711b9ecb09cdf7e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18331, "upload_time": "2017-04-26T14:34:35", "url": "https://files.pythonhosted.org/packages/ba/96/5ae763d59414842938b4c2a8c8c9a59ae5b3495c22400fd8e6c41b44bc51/lomond-0.1.7a0.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "cc57fe47cdaaea25ae7bedf1217f8ca7", "sha256": "f49e469162234c2df9b9447f643a0f66ec0b80dc0fba6ea252719e8d5d7422ee" }, "downloads": -1, "filename": "lomond-0.1.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cc57fe47cdaaea25ae7bedf1217f8ca7", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 27997, "upload_time": "2017-06-01T14:49:39", "url": "https://files.pythonhosted.org/packages/2f/33/a59b10b908640cfc35321aa62062fa0ded3ceb7a1a16ae36bea887cd32df/lomond-0.1.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2cf7424eafa29090f62452e77eea9e07", "sha256": "7dda4735896d0601274bfe7dac833b21a7b53a972f93f8d6d259479377bd78ae" }, "downloads": -1, "filename": "lomond-0.1.8.tar.gz", "has_sig": false, "md5_digest": "2cf7424eafa29090f62452e77eea9e07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20638, "upload_time": "2017-06-01T14:49:37", "url": "https://files.pythonhosted.org/packages/2f/42/d01858c10e11f7868fd68319f98389e0dc03e8635899a27060c86bcca62d/lomond-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "5cbd1224e69bcdd4977177ed0a01e952", "sha256": "1f782dd87ea27038edb6c69b34c92d087626babe74b883c1637cf7ed80deccb2" }, "downloads": -1, "filename": "lomond-0.1.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5cbd1224e69bcdd4977177ed0a01e952", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 28028, "upload_time": "2017-06-06T08:52:56", "url": "https://files.pythonhosted.org/packages/da/d4/966c3eeb86d4d81f757f7c851b790b1a633f88402ebc206665efeb79986a/lomond-0.1.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1dba4e37ecfe0362d5ef499d9afac2df", "sha256": "23563ba8a63762733e00586ebd4a83bcb5176df958e80aa5c930704ba91bce4a" }, "downloads": -1, "filename": "lomond-0.1.9.tar.gz", "has_sig": false, "md5_digest": "1dba4e37ecfe0362d5ef499d9afac2df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20652, "upload_time": "2017-06-06T08:52:54", "url": "https://files.pythonhosted.org/packages/9a/ad/8307f5d270d7d53e6d40027a8763a44f021a024489ab039e96d6ca44abb2/lomond-0.1.9.tar.gz" } ], "0.1.9a0": [ { "comment_text": "", "digests": { "md5": "28b52dd783eb7b555bb795543d325a91", "sha256": "bec0db2c93a48f936c87beec07fb1bb87e84d1a148eb380101eff3f985638305" }, "downloads": -1, "filename": "lomond-0.1.9a0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "28b52dd783eb7b555bb795543d325a91", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 28062, "upload_time": "2017-06-05T10:16:27", "url": "https://files.pythonhosted.org/packages/5d/d1/93f913b3c4b99f92888c271acbea989f7a16596517ebeeb4f7ab27164c30/lomond-0.1.9a0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c2fa526f352a52bc0d1e79c5b44a0b56", "sha256": "0d75e07438f4cb3f475e493f75951ab294a0a3970f37091791a066df7387ffcc" }, "downloads": -1, "filename": "lomond-0.1.9a0.tar.gz", "has_sig": false, "md5_digest": "c2fa526f352a52bc0d1e79c5b44a0b56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20663, "upload_time": "2017-06-05T10:16:25", "url": "https://files.pythonhosted.org/packages/b3/b3/c03a81ef801b2a7b7da99a178ec0b75a56fc979819864dfd3467f095d64b/lomond-0.1.9a0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "28a6c1feb4fb01e05a8629758e6c1983", "sha256": "48ba923f09987082c59a0a4f51fe3737261ee14d5ef83c66d89361a259d838a9" }, "downloads": -1, "filename": "lomond-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "28a6c1feb4fb01e05a8629758e6c1983", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33224, "upload_time": "2018-04-22T17:05:23", "url": "https://files.pythonhosted.org/packages/50/fe/8aa32dfabe3ac725cbcaaae764ea03a7102c3b110978dbbca31e18349f45/lomond-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5f87b30782a65cb81d16615a9e0ebf82", "sha256": "71b7106f9252fcf58c658030d556a1501e8eb2438c645bf1d9fe42049d7b2324" }, "downloads": -1, "filename": "lomond-0.2.0.tar.gz", "has_sig": false, "md5_digest": "5f87b30782a65cb81d16615a9e0ebf82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26015, "upload_time": "2018-04-22T17:05:25", "url": "https://files.pythonhosted.org/packages/c3/60/476e9d998fd74789a26b7c82c1df2efc56bfa02a18a03f7229cd2faa3ab4/lomond-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "97a63166589c931e60d2dbda858a2ee6", "sha256": "630fd7f3b0bc3e2480b1718c6d08b78119431912ac8ae4e76f76a043b2a086d0" }, "downloads": -1, "filename": "lomond-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "97a63166589c931e60d2dbda858a2ee6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33224, "upload_time": "2018-04-23T18:23:19", "url": "https://files.pythonhosted.org/packages/fd/40/e00f2352a8cdb981f70c756da408cd7a0da68739cf934199f4925bb3afb3/lomond-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c5cb84cb0f45606bc83f3a51b4228121", "sha256": "4a66352cf6484d1073a5e8b3899b33b8f6941af8a92f9e01d1f8e490338fc99f" }, "downloads": -1, "filename": "lomond-0.2.1.tar.gz", "has_sig": false, "md5_digest": "c5cb84cb0f45606bc83f3a51b4228121", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25957, "upload_time": "2018-04-23T18:23:21", "url": "https://files.pythonhosted.org/packages/3b/aa/ab53e254a3ea14ccaa4df3e3d6956dc5e8d726e16824dcbdace8e7b2e368/lomond-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "6bd936603cd890fd58bbff25c180a3af", "sha256": "018a093554b44b018a2cbea06cd7804d2fe1934a736ade45111959f948d22d44" }, "downloads": -1, "filename": "lomond-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6bd936603cd890fd58bbff25c180a3af", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 32997, "upload_time": "2018-05-09T19:50:12", "url": "https://files.pythonhosted.org/packages/89/aa/dac53958d6da688ccf2d19f695712420833a3562952c4b7abf7889749680/lomond-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ec0751f9537f6797988884dfcb2f6b97", "sha256": "76decf8eff42758f34e53bf7cae6f0e649017318f0b582eafb6cddd945f3de1f" }, "downloads": -1, "filename": "lomond-0.2.2.tar.gz", "has_sig": false, "md5_digest": "ec0751f9537f6797988884dfcb2f6b97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25897, "upload_time": "2018-05-09T19:50:15", "url": "https://files.pythonhosted.org/packages/20/d0/806bc02abd28cf3cf7b0755ab836d8f432d39bb4da97efa4be8b9dc8416c/lomond-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "82c4380bd8c1ba6ae43ae0ee86cf7391", "sha256": "556095c8bd0b58ec33af0cda3807ddee1496cbf8de533058ef573eff827c52ab" }, "downloads": -1, "filename": "lomond-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "82c4380bd8c1ba6ae43ae0ee86cf7391", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33012, "upload_time": "2018-05-14T20:30:41", "url": "https://files.pythonhosted.org/packages/44/38/5af9da7a7408ed19c70bfe41c482fe04379235dbcd4fc4f94a075512fc34/lomond-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f8a969d61cb1f223aba801b6fd854f23", "sha256": "617e683243c4e2e52076f01ccb836c49f378c68f4940dd0b1e294c0a63eaf6e6" }, "downloads": -1, "filename": "lomond-0.2.3.tar.gz", "has_sig": false, "md5_digest": "f8a969d61cb1f223aba801b6fd854f23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25931, "upload_time": "2018-05-14T20:30:44", "url": "https://files.pythonhosted.org/packages/ea/d8/0f7a9c4f61e571a2181c1a9c31a1ad935a01c3f633ddf8a33be12ed79490/lomond-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "62969f651a428355eef86b00af8f7975", "sha256": "831450232526f99be6b364eb36684cc75b178036f063f4db86d7ff059b5e4971" }, "downloads": -1, "filename": "lomond-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "62969f651a428355eef86b00af8f7975", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33009, "upload_time": "2018-05-15T14:56:55", "url": "https://files.pythonhosted.org/packages/63/93/d92c758740d06f1cf3735d395afd264fc70f5f0cad5a5ae46179eecc83ff/lomond-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f1695184207ac8eb6bef7766154afc75", "sha256": "e1298b520daf627db4132b2d1fc49f671e81bb37f7aa73a48ea9ed6eaf1da1ec" }, "downloads": -1, "filename": "lomond-0.2.4.tar.gz", "has_sig": false, "md5_digest": "f1695184207ac8eb6bef7766154afc75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25958, "upload_time": "2018-05-15T14:57:00", "url": "https://files.pythonhosted.org/packages/25/00/6abbd480a628976b7f6890058130f0ed72dc4cc64abefbbab0ea49df7ec0/lomond-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "e3932cbc2247b802a22fef258520ad06", "sha256": "c72398b880fc00a298a7bda04337811c7204f7f9512ae4bc614099f83b56e720" }, "downloads": -1, "filename": "lomond-0.2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e3932cbc2247b802a22fef258520ad06", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33029, "upload_time": "2018-05-28T17:15:54", "url": "https://files.pythonhosted.org/packages/6d/49/20fbba533aff3558c5222dd383c0e9b7f326ebe55e1f074e194cf4e450c1/lomond-0.2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5c3e18a31759bee6581feb29a6df4d8e", "sha256": "477c1334e20eaca20d7cca6e2020338739174029ce29ffce4746843790f2d3d2" }, "downloads": -1, "filename": "lomond-0.2.5.tar.gz", "has_sig": false, "md5_digest": "5c3e18a31759bee6581feb29a6df4d8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25958, "upload_time": "2018-05-28T17:16:00", "url": "https://files.pythonhosted.org/packages/50/b5/c709c146aebbce9c5a0e854c72aea0285a1bdffdb598e2ae06246a602169/lomond-0.2.5.tar.gz" } ], "0.2.5a0": [ { "comment_text": "", "digests": { "md5": "bd6a77a571aeb023d79e07b0c3c06f63", "sha256": "d2f6f864055eaaa2190d4c8259ebf1a2e26a629718b4d259625b74e29c11c893" }, "downloads": -1, "filename": "lomond-0.2.5a0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bd6a77a571aeb023d79e07b0c3c06f63", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33054, "upload_time": "2018-05-19T18:25:28", "url": "https://files.pythonhosted.org/packages/aa/dd/4bd7f35fa1f138a1758a8c05a52b58810f45dbe534b3f8941364f6d3222f/lomond-0.2.5a0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6ce465a52e16942cdfdf2858e3751d85", "sha256": "7f48560c6cb63d423d9bdb7085ae34612f8515ed9356da448dc2be62becc79d4" }, "downloads": -1, "filename": "lomond-0.2.5a0.tar.gz", "has_sig": false, "md5_digest": "6ce465a52e16942cdfdf2858e3751d85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25957, "upload_time": "2018-05-19T18:25:31", "url": "https://files.pythonhosted.org/packages/b1/4d/d8894e64e7421d8a864eeffd0eeb60a3c78242b8b7529c0d5122c6189478/lomond-0.2.5a0.tar.gz" } ], "0.2.6a0": [ { "comment_text": "", "digests": { "md5": "7a24ea6d7fab6fbaf316dbc861e7e29f", "sha256": "e46f155cd1420e01e38b6bc973f55c72c8f38a769a9306d9a59f766c63a472b4" }, "downloads": -1, "filename": "lomond-0.2.6a0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7a24ea6d7fab6fbaf316dbc861e7e29f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33089, "upload_time": "2018-06-15T10:41:04", "url": "https://files.pythonhosted.org/packages/78/f4/647998d3e02b6b88b87a5dac05ae88377f969b0638203cf94b433e793478/lomond-0.2.6a0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e6da8fe6ec42517fe5d770ab4dd65ddc", "sha256": "a2b8b05d3ee1a18a7bb6927f60d9835401f4d59de14fa20e48b61d2ab4d488d8" }, "downloads": -1, "filename": "lomond-0.2.6a0.tar.gz", "has_sig": false, "md5_digest": "e6da8fe6ec42517fe5d770ab4dd65ddc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26000, "upload_time": "2018-06-15T10:41:10", "url": "https://files.pythonhosted.org/packages/5f/64/3fc78e95d110ee821c8594c870df1b95e6f60e0fe8c500f965ec02cc80dd/lomond-0.2.6a0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "0468849d60bf88bd1551d1cf927413c6", "sha256": "39a8b7df0a18743e4b97527e711a14c12edf1a30d5bc5095c37af16dc69337da" }, "downloads": -1, "filename": "lomond-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0468849d60bf88bd1551d1cf927413c6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 35934, "upload_time": "2018-06-25T23:39:04", "url": "https://files.pythonhosted.org/packages/8c/2f/582e86576a3b377fd5bab4321359aeaaea4dba221072c9788c2a17019ac6/lomond-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bae0b7893c12be39c0129dacb5a66b5d", "sha256": "fb74d88705bc49bf02db1fc5a4e58df2133b6e32d0bb9ef9b189be2054f26b50" }, "downloads": -1, "filename": "lomond-0.3.0.tar.gz", "has_sig": false, "md5_digest": "bae0b7893c12be39c0129dacb5a66b5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28191, "upload_time": "2018-06-25T23:39:09", "url": "https://files.pythonhosted.org/packages/90/ae/4abf981f99a271a6a539e95be1894f7115da39b5befd202fc04d58246f42/lomond-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "d584cd00c4213b4122d32d5234f2b7bd", "sha256": "2c00c38a6d369e943a0ae3d80f8c34ef3fb29539914e415525c4df2d5114cc39" }, "downloads": -1, "filename": "lomond-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d584cd00c4213b4122d32d5234f2b7bd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36203, "upload_time": "2018-06-27T12:45:08", "url": "https://files.pythonhosted.org/packages/9a/fe/0fc0c377ce6faa1a450791f940696ed7bffb1c8da42e5972bc3eb948e888/lomond-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fdff3660a5a2ae4c00c7a451c6a7fbb6", "sha256": "2c3731bf10d7fc0c781ef586ae5330dd2ed8a46759e91e25f2ffec39de294037" }, "downloads": -1, "filename": "lomond-0.3.1.tar.gz", "has_sig": false, "md5_digest": "fdff3660a5a2ae4c00c7a451c6a7fbb6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29452, "upload_time": "2018-06-27T12:45:09", "url": "https://files.pythonhosted.org/packages/a5/04/f0a923949ad6eb52282f57062e740d7409d696fe475e8f691883ad13f8e7/lomond-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "f0f08286d38a18edca1aef6a5f17e448", "sha256": "cf8fd0b52d9e5f7246be084a22adf68870a0ed629541791581cc8ec9b3196db4" }, "downloads": -1, "filename": "lomond-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f0f08286d38a18edca1aef6a5f17e448", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 35174, "upload_time": "2018-07-04T20:09:06", "url": "https://files.pythonhosted.org/packages/24/11/8968863167de09e464672010b59b8e8848bb142c49538711cd3e24c07c59/lomond-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "48a99b6bd83d1825d37bac5df70b57dd", "sha256": "701a66db761140dee654499675f216ed624c3ede5c6550fe7fb8929bb0e2fc97" }, "downloads": -1, "filename": "lomond-0.3.2.tar.gz", "has_sig": false, "md5_digest": "48a99b6bd83d1825d37bac5df70b57dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28482, "upload_time": "2018-07-04T20:09:08", "url": "https://files.pythonhosted.org/packages/93/23/2daaf8dad251566b72554a74a0bab86f8970510c1a8931e101ab10986246/lomond-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "236e9076f7788d76f3390405b89d2eb1", "sha256": "df1dd4dd7b802a12b71907ab1abb08b8ce9950195311207579379eb3b1553de7" }, "downloads": -1, "filename": "lomond-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "236e9076f7788d76f3390405b89d2eb1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 35512, "upload_time": "2018-09-21T15:17:38", "url": "https://files.pythonhosted.org/packages/0f/b1/02eebed49c754b01b17de7705caa8c4ceecfb4f926cdafc220c863584360/lomond-0.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad456d549ca49c42b050f27ff349a2ce", "sha256": "427936596b144b4ec387ead99aac1560b77c8a78107d3d49415d3abbe79acbd3" }, "downloads": -1, "filename": "lomond-0.3.3.tar.gz", "has_sig": false, "md5_digest": "ad456d549ca49c42b050f27ff349a2ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28789, "upload_time": "2018-09-21T15:17:43", "url": "https://files.pythonhosted.org/packages/c0/9e/ef7813c910d4a893f2bc763ce9246269f55cc68db21dc1327e376d6a2d02/lomond-0.3.3.tar.gz" } ], "0.3.3a0": [ { "comment_text": "", "digests": { "md5": "3d313dad267c556cd2e3cf17d4be47f2", "sha256": "ac3883d9b7afd1486cb1888cc2f676edec683e568589df7912533d7be59e77dc" }, "downloads": -1, "filename": "lomond-0.3.3a0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3d313dad267c556cd2e3cf17d4be47f2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 35454, "upload_time": "2018-09-19T14:01:32", "url": "https://files.pythonhosted.org/packages/fc/cb/6731197bcc84d8589839c65e4623195d44499ba2b2d050b3f62591cd97b5/lomond-0.3.3a0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e59081ac6e98a23d92d9abc0af200bbf", "sha256": "42ae5e484e20efa78feff22b59ab54e1e9c121dd8e1bca8c8697f791772f3248" }, "downloads": -1, "filename": "lomond-0.3.3a0.tar.gz", "has_sig": false, "md5_digest": "e59081ac6e98a23d92d9abc0af200bbf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28725, "upload_time": "2018-09-19T14:01:34", "url": "https://files.pythonhosted.org/packages/c0/6d/b030252f6657cde31f1d1d43dbf2e5d388b0d3d559a43566744c78917bcb/lomond-0.3.3a0.tar.gz" } ], "0.3.3a1": [ { "comment_text": "", "digests": { "md5": "6bb70644c7ffb2b48f579e5b03fda3a2", "sha256": "6a75f7466caea941a5646766f521f99ad5f2afc0d32e99d88b5b86db66d809f2" }, "downloads": -1, "filename": "lomond-0.3.3a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6bb70644c7ffb2b48f579e5b03fda3a2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 35541, "upload_time": "2018-09-21T13:50:01", "url": "https://files.pythonhosted.org/packages/f2/59/330eecaf7220a2aaf5d7b648f818b00b0f6984c2fac5461fd7e4e41c6669/lomond-0.3.3a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ea09b8cde244ee5e4930af53fae4f498", "sha256": "b21ea35c42a72126168e7e884389bfbe09ae187c4dbccdd0d1fe443460599b19" }, "downloads": -1, "filename": "lomond-0.3.3a1.tar.gz", "has_sig": false, "md5_digest": "ea09b8cde244ee5e4930af53fae4f498", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28804, "upload_time": "2018-09-21T13:50:05", "url": "https://files.pythonhosted.org/packages/68/40/cfc1b790f91c609b6204aedbbac2ad5de554e5c1bc8f84f4a84d88ce7270/lomond-0.3.3a1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "236e9076f7788d76f3390405b89d2eb1", "sha256": "df1dd4dd7b802a12b71907ab1abb08b8ce9950195311207579379eb3b1553de7" }, "downloads": -1, "filename": "lomond-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "236e9076f7788d76f3390405b89d2eb1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 35512, "upload_time": "2018-09-21T15:17:38", "url": "https://files.pythonhosted.org/packages/0f/b1/02eebed49c754b01b17de7705caa8c4ceecfb4f926cdafc220c863584360/lomond-0.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad456d549ca49c42b050f27ff349a2ce", "sha256": "427936596b144b4ec387ead99aac1560b77c8a78107d3d49415d3abbe79acbd3" }, "downloads": -1, "filename": "lomond-0.3.3.tar.gz", "has_sig": false, "md5_digest": "ad456d549ca49c42b050f27ff349a2ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28789, "upload_time": "2018-09-21T15:17:43", "url": "https://files.pythonhosted.org/packages/c0/9e/ef7813c910d4a893f2bc763ce9246269f55cc68db21dc1327e376d6a2d02/lomond-0.3.3.tar.gz" } ] }