{ "info": { "author": "Ladybug Tools", "author_email": "info@ladybug.tools", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: Implementation :: CPython" ], "description": "![Honeybee](http://www.ladybug.tools/assets/img/honeybee.png)\n\n[![Build Status](https://travis-ci.org/ladybug-tools/honeybee.svg?branch=master)](https://travis-ci.org/ladybug-tools/honeybee)\n[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)\n[![Coverage Status](https://coveralls.io/repos/github/ladybug-tools/honeybee/badge.svg)](https://coveralls.io/github/ladybug-tools/honeybee)\n\n[![Python 2.7](https://img.shields.io/badge/python-2.7-green.svg)](https://www.python.org/downloads/release/python-270/) [![IronPython](https://img.shields.io/badge/ironpython-2.7-red.svg)](https://github.com/IronLanguages/ironpython2/releases/tag/ipy-2.7.8/)\n\n# honeybee\n\nHoneybee is a Python library to create, run and visualize the results of daylight ([RADIANCE](https://radiance-online.org//)) and energy analysis ([EnergyPlus](https://energyplus.net/)/[OpenStudio](https://www.openstudio.net/)). The current version supports only Radiance integration. For energy simulation you may use the [legacy honeybee for Grasshopper](https://github.com/mostaphaRoudsari/honeybee).\n\nThis repository includes the core library which is the base for Honeybee plugins. For plugin-specific questions and comments refer to [honeybee-grasshopper](https://github.com/ladybug-tools/honeybee-grasshopper) or [honeybee-dynamo](https://github.com/ladybug-tools/honeybee-dynamo) repositories.\n\nCheck [this repository](https://github.com/mostaphaRoudsari/honeybee) for the legacy honeybee plugin for Grasshopper.\n\n## Installation\n\n```\npip install lbt-honeybee\n```\n\n## Tentative road map\n- [x] Basic Radiance Integration.\n- [x] Support annual daylight simulation - daylight coefficient method [Nov 2016].\n- [x] Support three-phase daylight simulation [Dec 2016].\n- [x] Support five-phase daylight simulation [Aug 2017].\n- [x] Fix PEP 8 issues [Dec 2017]\n- [x] Code documentation [Dec 2017]\n- [ ] Provide cloud service support for daylight simulation.\n- [ ] Basic EnergyPlus integration.\n- [ ] Support basic HVAC modeling.\n- [ ] Full OpenStudio integration.\n\n\n## [API Documentation](http://ladybug-tools.github.io/apidoc/honeybee)\n\n## Citing honeybee\n\nFor the daylighting library cite this presentation:\n\n*Sadeghipour Roudsari, Mostapha. Subramaniam, Sarith. 2016. Automating Radiance workflows with Python. The 15th Annual Radiance Workshop. Padua, Italy. Available at: https://www.radiance-online.org/community/workshops/2016-padua/presentations/213-SadeghipourSubramaniam-AutomatingWorkflows.pdf*\n`\n\n## Examples\nHere is a Python example that shows how to put a grid-based analysis together. For more examples check one of the plugins repository.\n\n```python\nfrom honeybee.room import Room\nfrom honeybee.radiance.material.glass import Glass\nfrom honeybee.radiance.sky.certainIlluminance import CertainIlluminanceLevel\nfrom honeybee.radiance.recipe.pointintime.gridbased import GridBased\n\n# create a test room\nroom = Room(origin=(0, 0, 3.2), width=4.2, depth=6, height=3.2,\n rotation_angle=45)\n\n# add fenestration\n# # add a window to the back wall\nroom.add_fenestration_surface(wall_name='back', width=2, height=2, sill_height=0.7)\n\n# add another window with custom material. This time to the right wall\nglass_60 = Glass.by_single_trans_value('tvis_0.6', 0.6)\nroom.add_fenestration_surface('right', 4, 1.5, 1.2, radiance_material=glass_60)\n\n# run a grid-based analysis for this room\n# generate the sky\nsky = CertainIlluminanceLevel(illuminance_value=2000)\n\n# generate grid of test points\nanalysis_grid = room.generate_test_points(grid_size=0.5, height=0.75)\n\n# put the recipe together\nrp = GridBased(sky=sky, analysis_grids=(analysis_grid,), simulation_type=0,\n hb_objects=(room,))\n\n# write and run the analysis\nbatch_file = rp.write(target_folder=r'c:\\ladybug', project_name='room')\nrp.run(batch_file, debug=False)\n\n# results - in this case it will be an analysis grid\nresult = rp.results()[0]\n\n# print the values for each point\nfor value in result.combined_value_by_id():\n print('illuminance value: %d lux' % value[0])\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/ladybug-tools/honeybee", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "lbt-honeybee", "package_url": "https://pypi.org/project/lbt-honeybee/", "platform": "", "project_url": "https://pypi.org/project/lbt-honeybee/", "project_urls": { "Homepage": "https://github.com/ladybug-tools/honeybee" }, "release_url": "https://pypi.org/project/lbt-honeybee/0.1.12/", "requires_dist": [ "lbt-ladybug (==0.4.3)" ], "requires_python": "", "summary": "Honeybee is a Python library to create, run and visualize the results of daylight (RADIANCE) and energy analysis (EnergyPlus/OpenStudio). The current version supports only Radiance integration.", "version": "0.1.12" }, "last_serial": 5838727, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "c16242762253c40607c2cf2712422708", "sha256": "089c28402824a42aefd44552000feb0d00fe08e0853b53126a6cdd447bbed87e" }, "downloads": -1, "filename": "lbt_honeybee-0.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "c16242762253c40607c2cf2712422708", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 365104, "upload_time": "2018-11-04T20:33:21", "url": "https://files.pythonhosted.org/packages/30/30/8514d550d5b4329561118fa7c85fb8ab65cfe9097435d2afef1bc2eea856/lbt_honeybee-0.1.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6834109d18ef593251f199051a84ba79", "sha256": "dfe7ad4b15101d0e024e2ff6387e7e132353f3d0f3e3008b688912258465faad" }, "downloads": -1, "filename": "lbt-honeybee-0.1.0.tar.gz", "has_sig": false, "md5_digest": "6834109d18ef593251f199051a84ba79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 244521, "upload_time": "2018-11-04T20:33:23", "url": "https://files.pythonhosted.org/packages/73/61/2993026587442cc301128cba1117526cd1866f5f65fffc1d0c2aaa7ae657/lbt-honeybee-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "3e43529c2bdf8b51ac09bc82cf8d20b6", "sha256": "c27d7e25a56f6ef99807cf7f97315f8cb4c82eeffe1ab9ff89526ae010c76d9e" }, "downloads": -1, "filename": "lbt_honeybee-0.1.1-py2-none-any.whl", "has_sig": false, "md5_digest": "3e43529c2bdf8b51ac09bc82cf8d20b6", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 365423, "upload_time": "2018-11-04T23:12:01", "url": "https://files.pythonhosted.org/packages/bf/9c/4e030b1e5c7af95748d886d1495520a398aa4d8620ef69f27ae301b7fed2/lbt_honeybee-0.1.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "709d379ec7aff32e1e5f8964dd844bb3", "sha256": "92810a87b70ad6fb6260bafb58ad07bb70a6ad907152f17d4a9342ab259ba443" }, "downloads": -1, "filename": "lbt-honeybee-0.1.1.tar.gz", "has_sig": false, "md5_digest": "709d379ec7aff32e1e5f8964dd844bb3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 244704, "upload_time": "2018-11-04T23:12:03", "url": "https://files.pythonhosted.org/packages/22/4a/3b6d5aca3cc31d74dec5ffb33e193ff149875348226b1a5712f199a1edde/lbt-honeybee-0.1.1.tar.gz" } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "17072bdc12ba37ec28c15ed983309af7", "sha256": "cc77116ab92b672403d8c2b95b005fbe861511b8351cbbaf0e9617e9f80a2416" }, "downloads": -1, "filename": "lbt_honeybee-0.1.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "17072bdc12ba37ec28c15ed983309af7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4240447, "upload_time": "2019-08-10T23:58:57", "url": "https://files.pythonhosted.org/packages/f9/4f/9515448f2d818c6b6b2aa8079505f784abf8a282eee3cc87eead7b63c42b/lbt_honeybee-0.1.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "10129bc3b082d0dc633c577491644006", "sha256": "b26091605710e49c7d7caad52bffe6936e8bc5d44892553124ce6052c329e89b" }, "downloads": -1, "filename": "lbt-honeybee-0.1.10.tar.gz", "has_sig": false, "md5_digest": "10129bc3b082d0dc633c577491644006", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4034562, "upload_time": "2019-08-10T23:58:59", "url": "https://files.pythonhosted.org/packages/60/30/7aa31e79090587c63a8cd866ccc453ec56cf91821078657ecabbcf6615d2/lbt-honeybee-0.1.10.tar.gz" } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "37c17da68922c62817fb241e6722a5f9", "sha256": "114a0f6449a54913663de2d47899373bbbbaf2cfcc058a8d19fb03f1e238d506" }, "downloads": -1, "filename": "lbt_honeybee-0.1.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "37c17da68922c62817fb241e6722a5f9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4240475, "upload_time": "2019-09-10T15:50:33", "url": "https://files.pythonhosted.org/packages/33/0f/73b45370df3984e39673ced4f6290f02d754be5921f414e73833df0172ba/lbt_honeybee-0.1.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "961cf527c264793bae1af758a5376628", "sha256": "7e0dc24fd668dde018f1c0f1eb43e542025ffd7a3a2cecf19073629e7d225831" }, "downloads": -1, "filename": "lbt-honeybee-0.1.11.tar.gz", "has_sig": false, "md5_digest": "961cf527c264793bae1af758a5376628", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4034642, "upload_time": "2019-09-10T15:50:36", "url": "https://files.pythonhosted.org/packages/c1/5c/0d7a04b9ff310ed7ce451b022792fc99c575da3f06b70c8f0abdd4931caa/lbt-honeybee-0.1.11.tar.gz" } ], "0.1.12": [ { "comment_text": "", "digests": { "md5": "fa69eee7538075e9a8d5328494c051ac", "sha256": "f854e1aed0e220c63aa0366c7fbd811d162f428f2a124d166e772fc6ab753cff" }, "downloads": -1, "filename": "lbt_honeybee-0.1.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fa69eee7538075e9a8d5328494c051ac", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4240482, "upload_time": "2019-09-16T23:53:24", "url": "https://files.pythonhosted.org/packages/f8/d6/45e8aca29c8aa8981d75b0ee9dafbcefbcd46176ceb2c2a372118e64c3d4/lbt_honeybee-0.1.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a5fb71b6f6f572fbe2147029d8e691ea", "sha256": "f1a43baf9fb87bd50d6a1aefefadc1ebbefbfa0ac70b6c5efbd7ee65fcc18168" }, "downloads": -1, "filename": "lbt-honeybee-0.1.12.tar.gz", "has_sig": false, "md5_digest": "a5fb71b6f6f572fbe2147029d8e691ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4035067, "upload_time": "2019-09-16T23:53:26", "url": "https://files.pythonhosted.org/packages/cc/da/49f5a6f86f828645f0c4a89a04645a4062f2bf804501f4de2c90eb26e55c/lbt-honeybee-0.1.12.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "1bd7c2543bfffe7d0db2d83ea43a633e", "sha256": "40963073bf027854fdb18047289b1ed95dd6caa4797ed3efe0a42e34379241f9" }, "downloads": -1, "filename": "lbt_honeybee-0.1.2-py2-none-any.whl", "has_sig": false, "md5_digest": "1bd7c2543bfffe7d0db2d83ea43a633e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 365425, "upload_time": "2018-11-08T02:54:00", "url": "https://files.pythonhosted.org/packages/46/c0/bc9e3b4f0e659c90191972fc05df43e853e7d05c80705e6d8fae960cc2e2/lbt_honeybee-0.1.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f31a4253c2f7f131fcbcd22fb94017ae", "sha256": "164a1b57dc3a729c7e218f80dea98abbe74d8e95d912b59936bdc2a05885d6c1" }, "downloads": -1, "filename": "lbt-honeybee-0.1.2.tar.gz", "has_sig": false, "md5_digest": "f31a4253c2f7f131fcbcd22fb94017ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 244745, "upload_time": "2018-11-08T02:54:02", "url": "https://files.pythonhosted.org/packages/de/15/267c3931482b3b6baf798b03faa8d04de196124b98d9c9e7984863853952/lbt-honeybee-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "af1f55c2c129fc145f32bb5def412b6d", "sha256": "1ac9b7d454dadc796e57f009bf20e8f1aaaf3519281541fc9a85245bbb443765" }, "downloads": -1, "filename": "lbt_honeybee-0.1.3-py2-none-any.whl", "has_sig": false, "md5_digest": "af1f55c2c129fc145f32bb5def412b6d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 365525, "upload_time": "2018-11-28T22:54:19", "url": "https://files.pythonhosted.org/packages/76/3c/b8653fd07435da814f8811344503569c8c191caa41ea67841e5eb20a135d/lbt_honeybee-0.1.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "144cc0f306c3ad6136107999950370d6", "sha256": "1689f213c8e353f9a7e3dd441107530173dd62a231ec9ceaafa1608c8db5548f" }, "downloads": -1, "filename": "lbt-honeybee-0.1.3.tar.gz", "has_sig": false, "md5_digest": "144cc0f306c3ad6136107999950370d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 244838, "upload_time": "2018-11-28T22:54:20", "url": "https://files.pythonhosted.org/packages/73/de/19006a2a89d556a3e91d2cf0552ce3cfd56b81b56362b4c235a9c65daec8/lbt-honeybee-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "f95b12b4b16b1c8cfe5aec5d2eb341b4", "sha256": "81c5678e3a8f9c0bddc52cb5437170ecd24e0896d578c39185dc6f17d6cc60b0" }, "downloads": -1, "filename": "lbt_honeybee-0.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f95b12b4b16b1c8cfe5aec5d2eb341b4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 377894, "upload_time": "2018-11-30T18:25:29", "url": "https://files.pythonhosted.org/packages/f9/a3/2ffbd30065a39c9014ae0c5437a7c5c34ede1d546cb58770fc3f29230578/lbt_honeybee-0.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5cceec350752c5e00531d358bdfb1f46", "sha256": "5c9313f652bb885bd6bae89c8a3100bf31a811f92c78ff6bf66eb5115751de73" }, "downloads": -1, "filename": "lbt-honeybee-0.1.4.tar.gz", "has_sig": false, "md5_digest": "5cceec350752c5e00531d358bdfb1f46", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 244833, "upload_time": "2018-11-30T18:25:31", "url": "https://files.pythonhosted.org/packages/57/82/a8386f2dcbbf0c44e5eb4fb7976829d7c8378eacce69a90eca88bdbff06a/lbt-honeybee-0.1.4.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "2606b01e8cedf01e8d5da3facaa3c2e7", "sha256": "0de6c5187b5bb87ea7253aa8ecdea77e9f9b7335cb2f295cc4b6dedef36def37" }, "downloads": -1, "filename": "lbt_honeybee-0.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2606b01e8cedf01e8d5da3facaa3c2e7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4243098, "upload_time": "2019-04-30T20:57:08", "url": "https://files.pythonhosted.org/packages/1b/de/94bdf0d62c587fefb285b39d200219e8c7498dac2b2bb295405becce25dd/lbt_honeybee-0.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "edeac311c1e79643dfb076893205898c", "sha256": "cceb9174fc2a22aa28a9dc8dc448b20b50281725e790074634b21ff8205831cf" }, "downloads": -1, "filename": "lbt-honeybee-0.1.6.tar.gz", "has_sig": false, "md5_digest": "edeac311c1e79643dfb076893205898c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4035979, "upload_time": "2019-04-30T20:57:12", "url": "https://files.pythonhosted.org/packages/d1/0f/5de7fc0a5ded0d19b6952504532c36181a24794f64e0405ab5079d5c765f/lbt-honeybee-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "d1f45f6265916919d6b711635d860068", "sha256": "a0a14dc38a7db6e64c5219ce0ebddc200422f3a5584764a2ef9ca276483198b8" }, "downloads": -1, "filename": "lbt_honeybee-0.1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d1f45f6265916919d6b711635d860068", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4243098, "upload_time": "2019-05-01T20:09:37", "url": "https://files.pythonhosted.org/packages/76/57/9bee603b1d93a5585404e985e9c3903a311ab1b7b2edb440fbea32e5a656/lbt_honeybee-0.1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "03315d7001b1dfa8d6bf67c6b4b20724", "sha256": "25dcdd97257a40ada207115f632205b6e2c7b00517923356773400ee6169aba7" }, "downloads": -1, "filename": "lbt-honeybee-0.1.7.tar.gz", "has_sig": false, "md5_digest": "03315d7001b1dfa8d6bf67c6b4b20724", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4035959, "upload_time": "2019-05-01T20:09:40", "url": "https://files.pythonhosted.org/packages/ad/53/9acc51e52fc25de8b83baf4b676009c9f57bd601bb3065a38d69c1e70c26/lbt-honeybee-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "e24123c551314b8759845643e8d465ed", "sha256": "490d3b4547b3dfe0c72263db19f33c20657360384863aea2f012cbea7ded2f58" }, "downloads": -1, "filename": "lbt_honeybee-0.1.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e24123c551314b8759845643e8d465ed", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4240406, "upload_time": "2019-06-21T22:00:48", "url": "https://files.pythonhosted.org/packages/6f/d4/a7c7221a78419b98d5c25df15956928926117479766eba5b166407999f34/lbt_honeybee-0.1.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "acc0b2518877881c193260309e630b88", "sha256": "0bf0117237de7f39b689bca12b574d4cb5e6013d2b59cc228b2e3ec7c3a7e051" }, "downloads": -1, "filename": "lbt-honeybee-0.1.8.tar.gz", "has_sig": false, "md5_digest": "acc0b2518877881c193260309e630b88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4034370, "upload_time": "2019-06-21T22:00:51", "url": "https://files.pythonhosted.org/packages/5c/a4/2ee2ff1e0ff869d238ebb92bac2bb816332471f93c5086b074fee0dec3b8/lbt-honeybee-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "06a0ea15478cb470bec8b8b8f6c95c76", "sha256": "13f57233e4b2e2aa68b919423a5a27daf655d5dab57ff19a7532c332bb3829c4" }, "downloads": -1, "filename": "lbt_honeybee-0.1.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "06a0ea15478cb470bec8b8b8f6c95c76", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4240413, "upload_time": "2019-08-02T11:33:04", "url": "https://files.pythonhosted.org/packages/11/fb/2954a5a3838f83c80fde3a7f945a91fb6cd0f18a90f08bfff60ccb8e6e12/lbt_honeybee-0.1.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ec9c98c98e170fcdc6a824dfe9aafdc4", "sha256": "dfc5602b92ee07c330d95e58c184fc070a5e25679f651eafa39b9e68bf59a722" }, "downloads": -1, "filename": "lbt-honeybee-0.1.9.tar.gz", "has_sig": false, "md5_digest": "ec9c98c98e170fcdc6a824dfe9aafdc4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4034589, "upload_time": "2019-08-02T11:33:07", "url": "https://files.pythonhosted.org/packages/a6/58/369482af0edee7a52b323006678b65eb2f66dec07559ffd34d8627f9daa7/lbt-honeybee-0.1.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "fa69eee7538075e9a8d5328494c051ac", "sha256": "f854e1aed0e220c63aa0366c7fbd811d162f428f2a124d166e772fc6ab753cff" }, "downloads": -1, "filename": "lbt_honeybee-0.1.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fa69eee7538075e9a8d5328494c051ac", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4240482, "upload_time": "2019-09-16T23:53:24", "url": "https://files.pythonhosted.org/packages/f8/d6/45e8aca29c8aa8981d75b0ee9dafbcefbcd46176ceb2c2a372118e64c3d4/lbt_honeybee-0.1.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a5fb71b6f6f572fbe2147029d8e691ea", "sha256": "f1a43baf9fb87bd50d6a1aefefadc1ebbefbfa0ac70b6c5efbd7ee65fcc18168" }, "downloads": -1, "filename": "lbt-honeybee-0.1.12.tar.gz", "has_sig": false, "md5_digest": "a5fb71b6f6f572fbe2147029d8e691ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4035067, "upload_time": "2019-09-16T23:53:26", "url": "https://files.pythonhosted.org/packages/cc/da/49f5a6f86f828645f0c4a89a04645a4062f2bf804501f4de2c90eb26e55c/lbt-honeybee-0.1.12.tar.gz" } ] }