{ "info": { "author": "Richard Hull", "author_email": "richard.hull@destructuring-bind.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Education", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Education", "Topic :: System :: Hardware", "Topic :: System :: Hardware :: Hardware Drivers" ], "description": "luma.core **|** \n`luma.docs `__ **|** \n`luma.emulator `__ **|** \n`luma.examples `__ **|** \n`luma.lcd `__ **|** \n`luma.led_matrix `__ **|** \n`luma.oled `__ \n\nLuma.Core\n=========\n\n.. image:: https://travis-ci.org/rm-hull/luma.core.svg?branch=master\n :target: https://travis-ci.org/rm-hull/luma.core\n\n.. image:: https://coveralls.io/repos/github/rm-hull/luma.core/badge.svg?branch=master\n :target: https://coveralls.io/github/rm-hull/luma.core?branch=master\n\n.. image:: https://requires.io/github/rm-hull/luma.core/requirements.svg?branch=master\n :target: https://requires.io/github/rm-hull/luma.core/requirements/?branch=master\n\n.. image:: https://img.shields.io/pypi/pyversions/luma.core.svg\n :target: https://pypi.python.org/pypi/luma.core\n\n.. image:: https://img.shields.io/pypi/v/luma.core.svg\n :target: https://pypi.python.org/pypi/luma.core\n\n.. image:: https://img.shields.io/maintenance/yes/2019.svg?maxAge=2592000\n\n**luma.core** is a component library providing a Pillow-compatible drawing\ncanvas, and other functionality to support drawing primitives and\ntext-rendering capabilities for small displays on the Raspberry Pi and other\nsingle board computers:\n\n* scrolling/panning capability,\n* terminal-style printing,\n* state management,\n* color/greyscale (where supported),\n* dithering to monochrome,\n* sprite animation,\n* flexible framebuffering (depending on device capabilities)\n\nDevice drivers extend **luma.core** to provide the correct initialization\nsequences for specific physical display devices/chipsets.\n\nThere are several drivers for different classes of device available:\n\n* `luma.oled `_\n* `luma.lcd `_\n* `luma.led_matrix `_\n* `luma.emulator `_\n\nThere are emulators that run in real-time (with pygame) and others that can\ntake screenshots, or assemble animated GIFs, as per the examples below. Source\ncode for these are available in the `examples\n`_\ndirectory of the ``luma.examples`` repository.\n\n.. image:: https://raw.githubusercontent.com/rm-hull/luma.oled/master/doc/images/clock_anim.gif?raw=true\n :alt: clock\n\n.. image:: https://raw.githubusercontent.com/rm-hull/luma.oled/master/doc/images/invaders_anim.gif?raw=true\n :alt: invaders\n\n.. image:: https://raw.githubusercontent.com/rm-hull/luma.oled/master/doc/images/crawl_anim.gif?raw=true\n :alt: crawl\n\nLicense\n-------\nThe MIT License (MIT)\n\nCopyright (c) 2017-18 Richard Hull and contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\nContributing\n------------\n\nPull requests (code changes / documentation / typos / feature requests / setup)\nare gladly accepted. If you are intending to introduce some large-scale\nchanges, please get in touch first to make sure we're on the same page: try to\ninclude a docstring for any new method or class, and keep method bodies small,\nreadable and PEP8-compliant. Add tests and strive to keep the code coverage\nlevels high.\n\nGitHub\n^^^^^^\nThe source code is available to clone at: https://github.com/rm-hull/luma.core\n\nContributors\n^^^^^^^^^^^^\n* Thijs Triemstra (@thijstriemstra)\n* Christoph Handel (@fragfutter)\n* @Boeeerb\n* @xes\n* Roger Dahl (@rogerdahl)\n* V\u00e1clav \u0160milauer (@eudoxos)\n* Claus Bjerre (@bjerrep)\n* @bkntrx\n* @7754359337\n* @theraspydev\n* @vortigont\n* Maarten Los (@mlos)\n* Jonathan Pereira (@jonathanrjpereira)\n* Daniel Smullen (@drspangle)\n* Hans Liss (@hansliss)\n* Phil Howard (@gadgetoid)\n\n\nChangeLog\n---------\n\n+------------+---------------------------------------------------------------------+------------+\n| Version | Description | Date |\n+============+=====================================================================+============+\n| **1.12.0** | * Rework namespace support for subprojects | 2019/06/15 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.11.0** | * Support luma.lcd.aux (if present) | 2019/06/02 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.10.1** | * Fix [Error 22] emitted from within I2C serial adapter when used | 2019/05/25 |\n| | with SSD1327 device | |\n+------------+---------------------------------------------------------------------+------------+\n| **1.10.0** | * Allow viewport pseudo-display to dither when rendering to | 2019/05/23 |\n| | device with lower-fidelity color mode | |\n+------------+---------------------------------------------------------------------+------------+\n| **1.9.0** | * Improve I2C render speed by not chunking into 32-byte blocks | 2019/05/10 |\n| | * Add support for bridging FTDI to I2C/SPI | |\n+------------+---------------------------------------------------------------------+------------+\n| **1.8.3** | * Improve command line help output | 2019/01/07 |\n| | * Split API docs into separate pages | |\n+------------+---------------------------------------------------------------------+------------+\n| **1.8.2** | * Fix type hint for SPI's cs_high parameter | 2018/11/05 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.8.1** | * Mutable string now works over unicode (for both py2/3) | 2018/09/18 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.8.0** | * Namespace packaging fix | 2018/09/04 |\n| | * Correct implementation of pkgutil style namespace | |\n| | * Support for Python 3.7 | |\n| | * Docstring updates | |\n+------------+---------------------------------------------------------------------+------------+\n| **1.7.2** | * Fix upside-down SEG7_FONT | 2018/03/29 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.7.1** | * Support unicode in terminal class | 2018/03/22 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.7.0** | * Add ``persist`` flag on device | 2018/03/21 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.6.0** | * Add ``--spi-transfer-size=...`` flag in cmdline args | 2018/02/21 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.5.0** | * Add SEG7_FONT: Compact 7x3 font for LED Matrix | 2018/02/06 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.4.0** | * Add ``--spi-cs-high=...`` flag in cmdline args | 2018/01/29 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.3.0** | * Add ``--gpio-mode=...`` flag in cmdline args | 2018/01/02 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.2.1** | * Use ``extras_require`` in ``setup.py`` for Linux dependencies | 2017/11/26 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.2.0** | * Added ``get_library_version`` & ``get_library_for_display_type`` | 2017/11/23 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.1.1** | * Version number available as ``luma.core.__version__`` now | 2017/11/23 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.1.0** | * Added image composition classes | 2017/10/28 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.0.3** | * Explicitly state 'UTF-8' encoding in setup when reading files | 2017/10/18 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.0.2** | * Fix conditional install on wheel | 2017/09/15 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.0.1** | * Don't install RPi.GPIO & spidev if setup running on OSX | 2017/09/04 |\n+------------+---------------------------------------------------------------------+------------+\n| **1.0.0** | * Stable release (remove all deprecated methods & parameters) | 2017/07/29 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.9.5** | * Remove assert in ``terminal`` to allow extended characters to be | 2017/07/06 |\n| | printed (note: this only works for Python3 presently) | |\n+------------+---------------------------------------------------------------------+------------+\n| **0.9.4** | * Add ``tolerant`` class for legacy font handling non-ASCII chars | 2017/07/01 |\n| | * Add CP437 chars to fonts.py | |\n+------------+---------------------------------------------------------------------+------------+\n| **0.9.3** | * LCD_FONT: lowercase cyrillic chars added, minor corrections in | 2017/06/25 |\n| | uppercase chars | |\n+------------+---------------------------------------------------------------------+------------+\n| **0.9.2** | * Add ``background=`` option to ``luma.core.render.canvas`` | 2017/06/19 |\n| | * Add TCA9548A I2C multiplex scanner (contrib) | |\n| | * Display I2C address in hex when error occurs | |\n+------------+---------------------------------------------------------------------+------------+\n| **0.9.1** | * Add cmdline block orientation of 180 | 2017/05/01 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.9.0** | * Add word-wrap capability to ``luma.core.virtual.terminal`` | 2017/04/22 |\n| | * Bug fix to ``luma.core.virtual.terminal`` when scrolling | |\n+------------+---------------------------------------------------------------------+------------+\n| **0.8.1** | * Propagate segment_mapper through other virtual devices | 2017/04/14 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.8.0** | * Migrate seven-segment wrapper from ``luma.led_matrix`` | 2017/04/14 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.7.5** | * Allow alternative RPi.GPIO implementations | 2017/04/09 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.7.4** | * Reduce size of space character in legacy proportional font | 2017/04/09 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.7.3** | * Cmdline args now supports backlight active high/low | 2017/04/07 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.7.2** | * Add ``--h-offset=N`` and ``--v-offset=N`` params to cmdline args | 2017/04/07 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.7.1** | * Improve formatting in command line options | 2017/04/06 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.7.0** | * Add software-based bitbang SPI implementation | 2017/03/27 |\n| | * Cmdline args parsing | |\n| | * Use monotonic clock | |\n+------------+---------------------------------------------------------------------+------------+\n| **0.6.2** | * Move GPIO.setmode() to point when referenced | 2017/03/19 |\n| | * Use regex prefix in ANSI color parser (fixes deprecation warning) | |\n+------------+---------------------------------------------------------------------+------------+\n| **0.6.1** | * Deprecate spi params | 2017/03/13 |\n| | * Fix resource leak in spritesheet | |\n+------------+---------------------------------------------------------------------+------------+\n| **0.6.0** | * Terminal supports ANSI Color escape codes | 2017/03/13 |\n| | * Catch & rethrow IOErrors | |\n+------------+---------------------------------------------------------------------+------------+\n| **0.5.4** | * Rework decorators | 2017/03/08 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.5.3** | * Catch & rethrow all RPi.GPIO RuntimeExceptions | 2017/03/08 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.5.2** | * Raise ``error.UnsupportedPlatform`` if RPi.GPIO is not available | 2017/03/08 |\n| | * Bug fix to ``luma.core.virtual.terminal`` to handle multiple \\\\n | |\n+------------+---------------------------------------------------------------------+------------+\n| **0.5.1** | * Bug fix: ``legacy.show_message`` regression | 2017/03/05 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.5.0** | * **BREAKING CHANGES:** Rework ``framework_regulator`` class | 2017/03/05 |\n| | * Documentation updates | |\n+------------+---------------------------------------------------------------------+------------+\n| **0.4.4** | * Bug fix: ``legacy.show_message`` off-by-one bug | 2017/03/02 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.4.3** | * Restrict exported Python symbols from ``luma.core.serial`` | 2017/03/02 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.4.2** | * Optional alignment of framebuffer bounding_box to word-boundaries | 2017/02/28 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.4.1** | * Refactor framebuffer interface | 2017/02/27 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.4.0** | * Add spritesheet and framerate_regulator functionality | 2017/02/27 |\n| | * Add full-frame and diff-to-previous framebuffer implementations | |\n| | * Remove unnecessary travis/tox dependencies | |\n+------------+---------------------------------------------------------------------+------------+\n| **0.3.2** | * Bug fix: ``legacy.show_message`` wrong device height | 2017/02/24 |\n| | * Add Cyrillic chars to legacy font | |\n| | * Make pytest-runner a conditional requirement | |\n+------------+---------------------------------------------------------------------+------------+\n| **0.3.1** | * Imported legacy font handling from ``rm-hull/luma.led_matrix`` | 2017/02/19 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.2.0** | * Fix bug in seven_segment transform (display correct char) | 2017/02/17 |\n| | * Moved emulator code to ``rm-hull/luma.emulator`` github repo | |\n+------------+---------------------------------------------------------------------+------------+\n| **0.1.15** | * Require at least Pillow 4.0.0 | 2017/02/11 |\n| | * Configurable ``transfer_size`` on SPI writes | |\n| | * Documentation updates | |\n+------------+---------------------------------------------------------------------+------------+\n| **0.1.14** | * Use a more flexible no-op implementation | 2017/02/03 |\n| | * Use spidev's ``writebytes()`` rather than ``xfer2()`` | |\n| | * Dont write GIF animation if nothing was displayed | |\n| | * Attempt to optimize palette when saving GIF animations | |\n+------------+---------------------------------------------------------------------+------------+\n| **0.1.13** | * Fix bug in setup script | 2017/01/23 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.1.12** | * Assert valid SPI bus speed | 2017/01/21 |\n| | * Don't report errors in shutdown | |\n| | * Don't package as zip-safe | |\n| | * Add 7-segment LED emulation transformer | |\n+------------+---------------------------------------------------------------------+------------+\n| **0.1.11** | * Rejig packaging to include emulator assets | 2017/01/20 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.1.3** | * Reset SPI device on initialization | 2017/01/19 |\n| | * Add LED matrix emulation transformer | |\n+------------+---------------------------------------------------------------------+------------+\n| **0.1.2** | * Namespace packaging | 2017/01/10 |\n+------------+---------------------------------------------------------------------+------------+\n| **0.1.0** | * Split out core functionality from ``rm-hull/ssd1306`` | 2017/01/10 |\n+------------+---------------------------------------------------------------------+------------+\n", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/rm-hull/luma.core/tarball/1.12.0", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/rm-hull/luma.core", "keywords": "raspberry orange banana pi rpi opi sbc oled lcd led display screen spi i2c ftdi usb", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "luma.core", "package_url": "https://pypi.org/project/luma.core/", "platform": "", "project_url": "https://pypi.org/project/luma.core/", "project_urls": { "Download": "https://github.com/rm-hull/luma.core/tarball/1.12.0", "Homepage": "https://github.com/rm-hull/luma.core" }, "release_url": "https://pypi.org/project/luma.core/1.12.0/", "requires_dist": null, "requires_python": "", "summary": "A component library to support SBC display drivers", "version": "1.12.0" }, "last_serial": 5404775, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "427ac9df800ce11e2211ac8b38a94350", "sha256": "b31df17ae228fff899d56319d40ba0be36520fd0069cf260853025537fb550ac" }, "downloads": -1, "filename": "luma.core-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "427ac9df800ce11e2211ac8b38a94350", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 18918, "upload_time": "2017-01-10T22:24:19", "url": "https://files.pythonhosted.org/packages/99/22/bc943d5a48def4b66e5f96971e51847f82f5667c9e4e65ec350a3122d2dc/luma.core-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d15a3be78664041e68d2b8113f22152f", "sha256": "4b1f4b6e478eda57d094873f213fed2fca963be985264248d60b567a6b724eee" }, "downloads": -1, "filename": "luma.core-0.1.0.tar.gz", "has_sig": false, "md5_digest": "d15a3be78664041e68d2b8113f22152f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14908, "upload_time": "2017-01-10T22:24:16", "url": "https://files.pythonhosted.org/packages/00/72/e9f49ff1811b619697acd8ef6cab5ac7fea788d5f6742dde43159b68e4b9/luma.core-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "14f434da1744c25ca944f113da115429", "sha256": "993e066757bfe8520d8022282b0d76e525648711f0f6da5f08d85834b8587694" }, "downloads": -1, "filename": "luma.core-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "14f434da1744c25ca944f113da115429", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 19561, "upload_time": "2017-01-11T00:31:05", "url": "https://files.pythonhosted.org/packages/15/d0/b5c9e35161e8631cc234bc346ffb4d5d76b1e4eea0301c84d46b4336d12b/luma.core-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "47cb05b06d792846d923564116db52af", "sha256": "296b6850c61382aff8ed0c0a44c788d0a02929dffb82ead97f288284589823b7" }, "downloads": -1, "filename": "luma.core-0.1.1.tar.gz", "has_sig": false, "md5_digest": "47cb05b06d792846d923564116db52af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14915, "upload_time": "2017-01-11T00:31:03", "url": "https://files.pythonhosted.org/packages/4a/0f/d0694cd05ec85a39c817afa6316f7c81a215e1e8d7b029223453fffa2e2c/luma.core-0.1.1.tar.gz" } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "432104929bf8d1ff4651010e5da4a639", "sha256": "6c42a4e8e2cc7766fc6687a7455d23773069d982190c025232ff4b036ca2a933" }, "downloads": -1, "filename": "luma.core-0.1.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "432104929bf8d1ff4651010e5da4a639", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20256, "upload_time": "2017-01-20T02:59:47", "url": "https://files.pythonhosted.org/packages/31/06/178f714ccc44e5ab516466514dfe3f5a7bd5b557728d43f4d0d8417e5497/luma.core-0.1.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f0ae5058f222123405aed95af5dda006", "sha256": "409ed47a726f415347b9749dcd5c96e6fbae4722c4600d7246afcf3fb8036869" }, "downloads": -1, "filename": "luma.core-0.1.10.tar.gz", "has_sig": false, "md5_digest": "f0ae5058f222123405aed95af5dda006", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74136, "upload_time": "2017-01-20T02:59:45", "url": "https://files.pythonhosted.org/packages/90/f3/47c58530b2ee0fa9359ecb84c1d0f5aabbd1b9ebfb76cc34adff303d4b35/luma.core-0.1.10.tar.gz" } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "0c4d2d8070f7a505f8553d4a80348d6b", "sha256": "3c61d0af4de7b3a64f2699cd5e7faea74547951caa99f0bc4782d5f9550a0225" }, "downloads": -1, "filename": "luma.core-0.1.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0c4d2d8070f7a505f8553d4a80348d6b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 77326, "upload_time": "2017-01-20T03:02:19", "url": "https://files.pythonhosted.org/packages/c6/f8/e9e41afe463eaae50b6be7a0da328d7f478a515f663fd3a70a54c8f33b5e/luma.core-0.1.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f822a15bdd4c4ab173d5827a8c8f2e62", "sha256": "5f2e0304c549e8087c0c9a6535e440fae24207113ee18e9dc24ef686ff5d698f" }, "downloads": -1, "filename": "luma.core-0.1.11.tar.gz", "has_sig": false, "md5_digest": "f822a15bdd4c4ab173d5827a8c8f2e62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74090, "upload_time": "2017-01-20T03:02:17", "url": "https://files.pythonhosted.org/packages/88/ac/57be716a00588b251888a6f613f309f402fa400f782daa243b228070565c/luma.core-0.1.11.tar.gz" } ], "0.1.12": [ { "comment_text": "", "digests": { "md5": "78a3e31656923a67da263f13faa15e67", "sha256": "7128076ecec025fe887653a9343ddad6b12248c085eea4f69cee1b3b44bf15cd" }, "downloads": -1, "filename": "luma.core-0.1.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "78a3e31656923a67da263f13faa15e67", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 56131, "upload_time": "2017-01-21T22:52:30", "url": "https://files.pythonhosted.org/packages/bf/0c/cbfe90d8397f2c9bfc8dd805f5a2329844a71461d2b1201816131f30a4aa/luma.core-0.1.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cd20cebe9176419a0d240dacc2cc0fa5", "sha256": "85e2ee135250db7637a8930ad85e6bde7f2136fb2df4d55cfb28272d1f8114d7" }, "downloads": -1, "filename": "luma.core-0.1.12.tar.gz", "has_sig": false, "md5_digest": "cd20cebe9176419a0d240dacc2cc0fa5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32205, "upload_time": "2017-01-21T22:52:28", "url": "https://files.pythonhosted.org/packages/f6/9f/40624e50f6e497bd757b7120344acbd37089ff979ecc451ff35c3a81dab4/luma.core-0.1.12.tar.gz" } ], "0.1.13": [ { "comment_text": "", "digests": { "md5": "83659498d709f57f5b3694233a2afc38", "sha256": "3c605893f6bedaa1d16fc8403b18dd8058b749ab2e5626ee4b3176cd2d4a60c3" }, "downloads": -1, "filename": "luma.core-0.1.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "83659498d709f57f5b3694233a2afc38", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 56127, "upload_time": "2017-01-23T22:04:45", "url": "https://files.pythonhosted.org/packages/7c/e7/483354a7b9c7d1372b5e19219f96e6ef9c4baee51c604ae3c328f555d630/luma.core-0.1.13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8cc9162401ceb49648dd80fdc46b29a4", "sha256": "7d4ae8ab73a731f7e692e5b121f529e144ba7d32833269fb77fcfe5b5fcd5e4a" }, "downloads": -1, "filename": "luma.core-0.1.13.tar.gz", "has_sig": false, "md5_digest": "8cc9162401ceb49648dd80fdc46b29a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40284, "upload_time": "2017-01-23T22:04:43", "url": "https://files.pythonhosted.org/packages/12/c5/76dd80ee703d4c89db5a0cbee70185a5cb5751577ca1cd7ab1dad7992f55/luma.core-0.1.13.tar.gz" } ], "0.1.14": [ { "comment_text": "", "digests": { "md5": "95eecc8668cea786a01e407fd9b95d4c", "sha256": "a54508427542a783ba0073e6a56940db2cab949a8dc1b89898f6d4e6814e26cf" }, "downloads": -1, "filename": "luma.core-0.1.14-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "95eecc8668cea786a01e407fd9b95d4c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 56525, "upload_time": "2017-02-03T20:44:01", "url": "https://files.pythonhosted.org/packages/10/d0/4ba989946b1f09bbde1bf874fb1a032a0b4b0e80ccb07594a4ec88a4c692/luma.core-0.1.14-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5514c013dd05286954ec5b3bb63de4a2", "sha256": "c8820738c06ea95eb5c94335299fd3fd5803f501da3373e41331ab921ecf3c2f" }, "downloads": -1, "filename": "luma.core-0.1.14.tar.gz", "has_sig": false, "md5_digest": "5514c013dd05286954ec5b3bb63de4a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40736, "upload_time": "2017-02-03T20:43:59", "url": "https://files.pythonhosted.org/packages/3d/c0/e2eb131423688ce74c4c02285af981799ab065066d225e5b4d41384d7ef5/luma.core-0.1.14.tar.gz" } ], "0.1.15": [ { "comment_text": "", "digests": { "md5": "b13dcd90a54923fa73302228bfd0af83", "sha256": "2c470d69edc33ca572f9a86d00444e2f45c73c46cabe96262dd724b2cdcce60c" }, "downloads": -1, "filename": "luma.core-0.1.15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b13dcd90a54923fa73302228bfd0af83", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 56977, "upload_time": "2017-02-11T11:41:44", "url": "https://files.pythonhosted.org/packages/c3/b4/56b105e3957bc665d1cb05363baad821890fd061666724e933d3bbc0dbb2/luma.core-0.1.15-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3309695de1c4b1c43ad912693088111c", "sha256": "f88ad266c80f6d4ccb955270fd162747aac8a9f36e8d72f3c5f9bf5c53bde1e4" }, "downloads": -1, "filename": "luma.core-0.1.15.tar.gz", "has_sig": false, "md5_digest": "3309695de1c4b1c43ad912693088111c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41113, "upload_time": "2017-02-11T11:41:42", "url": "https://files.pythonhosted.org/packages/3b/87/3c864f9ed4d866e7021efb08d0d74fb5c6a6dde2fe3f516b0b373881a1a0/luma.core-0.1.15.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "fd24eb34b25882de97a57639906a3216", "sha256": "35bd8c9aa5e94dfa79fca7c6e07048c7dc157b8d4f6ee13385385dfcbe37f7bd" }, "downloads": -1, "filename": "luma.core-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fd24eb34b25882de97a57639906a3216", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 19590, "upload_time": "2017-01-11T01:06:39", "url": "https://files.pythonhosted.org/packages/f5/db/e8ad125b949855d0ef133ac5c227eb6014e01629b859ea506d448e59af81/luma.core-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7c5df7369564909d901ed92a3ecc53fe", "sha256": "7356837510403ecb7749457c4251c3b3a2bde7b4132a2e5e47d684dd1a078968" }, "downloads": -1, "filename": "luma.core-0.1.2.tar.gz", "has_sig": false, "md5_digest": "7c5df7369564909d901ed92a3ecc53fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14998, "upload_time": "2017-01-11T01:06:36", "url": "https://files.pythonhosted.org/packages/e0/a2/2034f6c2442792ce8ad780296bcc7d5a735286856e874c08e2ae9be96ede/luma.core-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "a4c1e2843d1683812a27ef5cdb9d6d84", "sha256": "6355ed1db5e71bf54390aaa9a2d7866760c30fb611a614a5f013e37d809dfd9c" }, "downloads": -1, "filename": "luma.core-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a4c1e2843d1683812a27ef5cdb9d6d84", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20158, "upload_time": "2017-01-19T00:55:30", "url": "https://files.pythonhosted.org/packages/52/74/1dc57cdcb26c72d44e21dee523d70b0ae745522ca8b3b90596f05d8f29fa/luma.core-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9b99af91256b075924f41752de4b0dea", "sha256": "f731b8a04b40d50805cb145946ff73ba96200b0f9109733767794cb199bcd8d6" }, "downloads": -1, "filename": "luma.core-0.1.3.tar.gz", "has_sig": false, "md5_digest": "9b99af91256b075924f41752de4b0dea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73941, "upload_time": "2017-01-19T00:55:27", "url": "https://files.pythonhosted.org/packages/b2/a5/09715a318939d978a64210463d2e86879d63c72b38386d14304c6a60db38/luma.core-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "0adec263ea55232fd76b636a8648151e", "sha256": "5fab29c1dcce4a353ec802f6538289776ae577223b5530b9a4210d38b24626a0" }, "downloads": -1, "filename": "luma.core-0.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0adec263ea55232fd76b636a8648151e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 21741, "upload_time": "2017-01-20T02:19:36", "url": "https://files.pythonhosted.org/packages/9c/09/1ed2a74fcea385d9ca5c9becc30da26bf6ff783cc7f4ed5967b6f3bc6eca/luma.core-0.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c7314f9ce1871f372dc476f901eb4be7", "sha256": "4ca4293f805abba7e6fec82d7256e4260440379dd149cf9d8120334fb6b82c6f" }, "downloads": -1, "filename": "luma.core-0.1.4.tar.gz", "has_sig": false, "md5_digest": "c7314f9ce1871f372dc476f901eb4be7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74040, "upload_time": "2017-01-20T02:19:34", "url": "https://files.pythonhosted.org/packages/bf/0c/9aa1cf0b16ec0ca8bad6cbd3eb6ec741030c7269514e96359585c4615baf/luma.core-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "8e8ba1da12369520fe443f4e59f1b985", "sha256": "eccb0fc0267db059ba3036a546421c9c07dccb6b0aa0b4921d5a9f31fa1ae9df" }, "downloads": -1, "filename": "luma.core-0.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8e8ba1da12369520fe443f4e59f1b985", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 21741, "upload_time": "2017-01-20T02:33:11", "url": "https://files.pythonhosted.org/packages/b2/fe/3cd7452acec6fbf6579f514bae4a84acea8a0517acef82df989dde61d004/luma.core-0.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d5f1aba41f3c9fa4014e5f1805022fc2", "sha256": "8c4c3a175f9136f0e20e0528b7703bc83c60e07589f88c4aa7dbe218ffcf5994" }, "downloads": -1, "filename": "luma.core-0.1.5.tar.gz", "has_sig": false, "md5_digest": "d5f1aba41f3c9fa4014e5f1805022fc2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74060, "upload_time": "2017-01-20T02:33:09", "url": "https://files.pythonhosted.org/packages/b4/cd/78c1c678fcb73f0fa0f27ff441d1e591d6be97679057c0213e679a5e13c8/luma.core-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "4d959ffc2f031ee75caeb2426901cae4", "sha256": "d313925fe8c3719070f790e064dd5bac4c2a34c2122182c2e4bf27868182d112" }, "downloads": -1, "filename": "luma.core-0.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4d959ffc2f031ee75caeb2426901cae4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20232, "upload_time": "2017-01-20T02:39:47", "url": "https://files.pythonhosted.org/packages/b0/22/89c4f1521f8a85bd264cb7eec7748daf23de85f015803fc24efcb2448e5c/luma.core-0.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "80754da5b2ab0dc02ca041bdb41596fa", "sha256": "6e36620fbf0ff6712665a5a120b382500e716ae1a301224ecbe95dda36ffeedd" }, "downloads": -1, "filename": "luma.core-0.1.6.tar.gz", "has_sig": false, "md5_digest": "80754da5b2ab0dc02ca041bdb41596fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74062, "upload_time": "2017-01-20T02:39:44", "url": "https://files.pythonhosted.org/packages/a0/b5/094d03c6525b21b702415ef5cafc9f8d279eeeb172f4b0f0e577c99e801e/luma.core-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "b759b0c54bd2100abb1eca90a6869fcb", "sha256": "5cddcc98abebcb8f8e8dffe60187466348223f9efdf268c1fae36027eb4c1683" }, "downloads": -1, "filename": "luma.core-0.1.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b759b0c54bd2100abb1eca90a6869fcb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20233, "upload_time": "2017-01-20T02:45:01", "url": "https://files.pythonhosted.org/packages/73/f1/52a0bed889df50e1dc43504651bf349b2a26306f0fc1f7473ee946d3c28d/luma.core-0.1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cb3f5719a97c00ea189098b684a38434", "sha256": "9b7b253a9736720d740fbc44610c5e86c32a684f738657694f5a701d4a4e5082" }, "downloads": -1, "filename": "luma.core-0.1.7.tar.gz", "has_sig": false, "md5_digest": "cb3f5719a97c00ea189098b684a38434", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74105, "upload_time": "2017-01-20T02:44:59", "url": "https://files.pythonhosted.org/packages/42/e4/a21c45f490286ee53a1fd8c452701ffefb713de2e333d50dbd4fc06d6d6e/luma.core-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "ac596e14376660486b9cdbb40aab70e2", "sha256": "6affea18ab9b7e85ff89c2d9ed2517f949a609d12c3c8c3b22059090b662e95e" }, "downloads": -1, "filename": "luma.core-0.1.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ac596e14376660486b9cdbb40aab70e2", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20235, "upload_time": "2017-01-20T02:48:40", "url": "https://files.pythonhosted.org/packages/7c/b3/9155dbba3164494c0a2c691fed4ec47b7e429895e7a47b551ef120c641f7/luma.core-0.1.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "37412dbbe0596a63f45b98a9440f4f0c", "sha256": "7d1ad6f6e83594616f70f446f9d89983e775c6890267926f74bbc3e7c2027a5c" }, "downloads": -1, "filename": "luma.core-0.1.8.tar.gz", "has_sig": false, "md5_digest": "37412dbbe0596a63f45b98a9440f4f0c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74126, "upload_time": "2017-01-20T02:48:36", "url": "https://files.pythonhosted.org/packages/3a/5f/c1893009fee70ba4ee0dab529bccbf6c63b82a377bc54feb93e903253940/luma.core-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "044f415553949ee0a1bafb1e7d4e364a", "sha256": "8dceb4726bb249b5af2dca78893a1481bc765cb3a0d03f3895cbac97072a96b3" }, "downloads": -1, "filename": "luma.core-0.1.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "044f415553949ee0a1bafb1e7d4e364a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20236, "upload_time": "2017-01-20T02:55:16", "url": "https://files.pythonhosted.org/packages/26/62/09fa296628b6eeecfa44c28fa7b03a7695dac9bf3f6bb354637f38cf6afa/luma.core-0.1.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ed5d027a4083d4716f23f8919b86fdb8", "sha256": "c01b9e61842222f0fb700ea67d480569c5a8ba4f1a3ba75120aea0b29445f111" }, "downloads": -1, "filename": "luma.core-0.1.9.tar.gz", "has_sig": false, "md5_digest": "ed5d027a4083d4716f23f8919b86fdb8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74132, "upload_time": "2017-01-20T02:55:13", "url": "https://files.pythonhosted.org/packages/54/06/630457d13be139c8c2a9ac9e1464a8ee71c90eaf8fd55854aca03e78bdae/luma.core-0.1.9.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "eae14a4c75b1a5a8942e208a1df17e8f", "sha256": "ac366cfb3c45b249af8614e87c487950746d6e2971e7612a04852a23ce2c453e" }, "downloads": -1, "filename": "luma.core-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "eae14a4c75b1a5a8942e208a1df17e8f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 57410, "upload_time": "2017-02-17T23:37:33", "url": "https://files.pythonhosted.org/packages/f0/b0/f6075b99d2aff30a30744c045491b3e0381cca78d5630f4193477f60b335/luma.core-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bedb882a9ab2e312ed05a593291a3f73", "sha256": "7095cb907af03ac756a2cf7719f657194ef7c82d3af144159aa674255b0b5d21" }, "downloads": -1, "filename": "luma.core-0.2.0.tar.gz", "has_sig": false, "md5_digest": "bedb882a9ab2e312ed05a593291a3f73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22076, "upload_time": "2017-02-17T23:37:30", "url": "https://files.pythonhosted.org/packages/0b/b8/eb75a92e01362e1d67b38d35da2218d04c601e96f787ae75855841d3b7a1/luma.core-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "d7de786912a766a4253aefeacf67006f", "sha256": "daf08dfdf3224e4e6cad5cf9c51020a49a5dd329557c3f65379eb6b758551ecc" }, "downloads": -1, "filename": "luma.core-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d7de786912a766a4253aefeacf67006f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 57492, "upload_time": "2017-02-19T15:46:09", "url": "https://files.pythonhosted.org/packages/3b/b0/01840d0847d01d1e782bb7d8839f0c4fe7cb22dd7d9dbd79498b2cc7529c/luma.core-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "70901cb0a0b3fb8e7e46565244da3d78", "sha256": "9d2378a121abc04b30197456f022f7bb77861e7b46e281984777849edd3f75bc" }, "downloads": -1, "filename": "luma.core-0.3.0.tar.gz", "has_sig": false, "md5_digest": "70901cb0a0b3fb8e7e46565244da3d78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33163, "upload_time": "2017-02-19T15:46:06", "url": "https://files.pythonhosted.org/packages/e6/f1/5d8d63e6c6ec2092ec3a0d60bc43ebfa8d7fcdb0f87e8c5cec82c7153679/luma.core-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "e376a0956e1476c6a3c65b056bdfec86", "sha256": "befeaecbadf18d330c2271d3e7a20752000898a7ff92913721592ff3de07ff64" }, "downloads": -1, "filename": "luma.core-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e376a0956e1476c6a3c65b056bdfec86", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 30225, "upload_time": "2017-02-19T18:46:33", "url": "https://files.pythonhosted.org/packages/f3/11/c6c75aaee97e48239d521faa03f08f3a9fb4f9699bf23dd83804b5a7c546/luma.core-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "da35e7a31b0174e329aa15873d7bd256", "sha256": "18dddcfe2758ed6d4d3793a770279a7200dee7e935d4b423a3914a93bb308c51" }, "downloads": -1, "filename": "luma.core-0.3.1.tar.gz", "has_sig": false, "md5_digest": "da35e7a31b0174e329aa15873d7bd256", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33166, "upload_time": "2017-02-19T18:46:31", "url": "https://files.pythonhosted.org/packages/7b/33/973a43a17a0c29156118d9b34f312b73b3468e5cbc11767853e51028a49a/luma.core-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "6e0f647a95d776c5995dfc093ad91a25", "sha256": "a92b69241342af5b62ac73ba1ae1a767b469678a8721405369bcb73586fb467b" }, "downloads": -1, "filename": "luma.core-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6e0f647a95d776c5995dfc093ad91a25", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 30615, "upload_time": "2017-02-24T09:04:54", "url": "https://files.pythonhosted.org/packages/cc/92/3b5948bbb79a27c3f9cb3162696ca9233e6f3aeaedc19bde3d861598e2c6/luma.core-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "53c20638471ddbfec222929a9f3d5f5e", "sha256": "9a8f1f02153ee404e020a7f7ba7a03dfeff6bf9abcd46f319856505b8d023a6e" }, "downloads": -1, "filename": "luma.core-0.3.2.tar.gz", "has_sig": false, "md5_digest": "53c20638471ddbfec222929a9f3d5f5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33001, "upload_time": "2017-02-24T09:04:52", "url": "https://files.pythonhosted.org/packages/8e/f8/b7220cb6adc34975847776cefd5a4ddb169be5fe72901e8829c352bbfdc9/luma.core-0.3.2.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "2de2483acee364814ddcd169d35391fb", "sha256": "c345acfcf2d268275ce6cc90c3fb14768620063f7bdab50a840ee46f106a5d3f" }, "downloads": -1, "filename": "luma.core-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2de2483acee364814ddcd169d35391fb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 35256, "upload_time": "2017-02-27T01:04:27", "url": "https://files.pythonhosted.org/packages/7a/07/9230063fce4c3a82f14274dc7bcf18888d8a4bc46d000f5dec76bf1eccbf/luma.core-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6ae4dd03e9b9f61c33289cded0d18b52", "sha256": "d5b1e39ccb503c4af98e2cf0b599171bb439bedcf4fbddca9464d54b0919f14a" }, "downloads": -1, "filename": "luma.core-0.4.0.tar.gz", "has_sig": false, "md5_digest": "6ae4dd03e9b9f61c33289cded0d18b52", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37469, "upload_time": "2017-02-27T01:04:24", "url": "https://files.pythonhosted.org/packages/a8/ee/91f653992ec54a8b342f350fa9d8dc3e2364019535cf7ab177d7f2ab97ab/luma.core-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "a22a5e2d5c4331424f0f9c3fd5888141", "sha256": "cea81db67051d8e98794b4405ee3ec1e56d53347bfc0493436de5dc8b0a4b8c1" }, "downloads": -1, "filename": "luma.core-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a22a5e2d5c4331424f0f9c3fd5888141", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 35441, "upload_time": "2017-02-27T21:08:17", "url": "https://files.pythonhosted.org/packages/08/22/e9df67504300f064cd53e0ed063533c5d8ab3ebcee3d1ca44f7b7d613ae3/luma.core-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c4b26d9881ee2e9a8011dba15dd25602", "sha256": "bb6fe13f79c7ddb93b4dde639bcd28d9545278514765dc167e89278f1c8a906f" }, "downloads": -1, "filename": "luma.core-0.4.1.tar.gz", "has_sig": false, "md5_digest": "c4b26d9881ee2e9a8011dba15dd25602", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37494, "upload_time": "2017-02-27T21:08:12", "url": "https://files.pythonhosted.org/packages/32/af/8d7e06c53c9bde2f1645dd53ce406336387d74f1c3ac273bc8e812a60fd8/luma.core-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "56c638bff46a1c034d450dd34af34e68", "sha256": "f9b84410611a16ee9b33c05d390d7af180b3c06cf48bd14abbd02a268ea78b0b" }, "downloads": -1, "filename": "luma.core-0.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "56c638bff46a1c034d450dd34af34e68", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 36702, "upload_time": "2017-02-28T01:57:54", "url": "https://files.pythonhosted.org/packages/e0/52/54f97cb294f7c96a0a3870b650f0a7216240902af16106332e31e4e2c472/luma.core-0.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "31f840129cba95ba0035129e47e92404", "sha256": "2f0ec2da8f50c7079dd45ec6ff529e2ed66ae71dce3a0894356c0f420c22b678" }, "downloads": -1, "filename": "luma.core-0.4.2.tar.gz", "has_sig": false, "md5_digest": "31f840129cba95ba0035129e47e92404", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36396, "upload_time": "2017-02-28T01:57:52", "url": "https://files.pythonhosted.org/packages/16/bb/7d42b5105bf99c295a1fbc3e4f61192722d1d13ca40255466d4121b29ae7/luma.core-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "1ee19109e86ee61bd40223368577201b", "sha256": "8ebe8710ae469369f63af06777b141dabd9898ea2cca416d6341778c714619d5" }, "downloads": -1, "filename": "luma.core-0.4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1ee19109e86ee61bd40223368577201b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 36801, "upload_time": "2017-03-02T20:24:04", "url": "https://files.pythonhosted.org/packages/7a/97/0cb1cbfa0867b84dbe615b41f9876f0d47e9eeb1be272b423b3874767fae/luma.core-0.4.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4ecfbbcb5048b18809e0f4aebddfe994", "sha256": "2426499655f4ac5ae97a44e6d9df79e4eb403a75699ec09250d6ca3d9dcf840c" }, "downloads": -1, "filename": "luma.core-0.4.3.tar.gz", "has_sig": false, "md5_digest": "4ecfbbcb5048b18809e0f4aebddfe994", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40577, "upload_time": "2017-03-02T20:24:00", "url": "https://files.pythonhosted.org/packages/c5/30/3023b8ebf3a1167df7454055cf895ae8145a8d3d1c437b011aadb7495596/luma.core-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "25f8cbf9784acef454724c2ba29cb350", "sha256": "949154aa96879a65e9d37b622aa2791504af35b9e20dfad8a5d8e0e91278fef8" }, "downloads": -1, "filename": "luma.core-0.4.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "25f8cbf9784acef454724c2ba29cb350", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 36837, "upload_time": "2017-03-02T22:30:24", "url": "https://files.pythonhosted.org/packages/43/2e/c5e8dca00853d65201e7187ad325107342864769c6abd68671ef38839000/luma.core-0.4.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ca6bd90558bbbf1fe502a8c21e5d625c", "sha256": "5681111548f3e1cf97715d70c1f9d50417473336a6cc1771cc33840ad5e0752b" }, "downloads": -1, "filename": "luma.core-0.4.4.tar.gz", "has_sig": false, "md5_digest": "ca6bd90558bbbf1fe502a8c21e5d625c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40631, "upload_time": "2017-03-02T22:30:22", "url": "https://files.pythonhosted.org/packages/93/08/b3e75717b02ff9bdb44de77ecc4df1be5bff5a0b3bac9ab27230155c1845/luma.core-0.4.4.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "8bd1954305064898ddd07d05ab15f081", "sha256": "cdc28c868aed13b6ccab43726d5c69aaf2ea2fc47bfdfa1fa088f8d563989f2b" }, "downloads": -1, "filename": "luma.core-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8bd1954305064898ddd07d05ab15f081", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 37684, "upload_time": "2017-03-05T20:57:28", "url": "https://files.pythonhosted.org/packages/da/6e/6cc2a8272e2e76095f2bc198c0fd7e0f89fa5e663a53014699a08df49338/luma.core-0.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ec7f8b174605ee5237a7af0e593127f8", "sha256": "2b6725436f7b284c7041c7cb388ecddad2f2b6056e8b45981728cbef03d35472" }, "downloads": -1, "filename": "luma.core-0.5.0.tar.gz", "has_sig": false, "md5_digest": "ec7f8b174605ee5237a7af0e593127f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41373, "upload_time": "2017-03-05T20:57:26", "url": "https://files.pythonhosted.org/packages/ae/cd/6c0a6a2e090a4a0249583dc9b405cf45a8d89b7f915667215eecd2cb7c93/luma.core-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "082325b34c45b4ef0827e070c922e4a7", "sha256": "1ae3d6a021e3dfd5b1553e2ba7632b5d4e3e39cc6effe4364e551dab92a80a3f" }, "downloads": -1, "filename": "luma.core-0.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "082325b34c45b4ef0827e070c922e4a7", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 37723, "upload_time": "2017-03-06T00:17:56", "url": "https://files.pythonhosted.org/packages/95/0c/a52d60be088b673f72c38a60dc6c2ebdef7513d75e5d7179977fcbdbdd00/luma.core-0.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "29072cfd662e26645c3d050b42b751d6", "sha256": "06c95ae7d72c6234fef5219a49f4c84ed5ce7e95504b19574ec7128a2acbfeec" }, "downloads": -1, "filename": "luma.core-0.5.1.tar.gz", "has_sig": false, "md5_digest": "29072cfd662e26645c3d050b42b751d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41440, "upload_time": "2017-03-06T00:17:53", "url": "https://files.pythonhosted.org/packages/7a/5f/e4a8c75a54703c6a2278081eb435f7248098b4f2d1ec7ce96648c3d1f32f/luma.core-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "b05d88b582216b45fe3aeb6c24810f50", "sha256": "daa5d3169a7534a884e63fc8f48e01b1c3b54966b519ca3d9892e4810cdd9348" }, "downloads": -1, "filename": "luma.core-0.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b05d88b582216b45fe3aeb6c24810f50", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 38489, "upload_time": "2017-03-08T00:13:51", "url": "https://files.pythonhosted.org/packages/a8/63/3579f797e0db4eff9f44c37a77e692e46e02bcc645b3dbc1080307c6fa0a/luma.core-0.5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "56d0b7e1bde949f5a8feed0d30f4ae1a", "sha256": "510224b4523299a8b363550a6b59a12574d6952b9ce739dffff09bc951e43a83" }, "downloads": -1, "filename": "luma.core-0.5.2.tar.gz", "has_sig": false, "md5_digest": "56d0b7e1bde949f5a8feed0d30f4ae1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41993, "upload_time": "2017-03-08T00:13:48", "url": "https://files.pythonhosted.org/packages/44/f4/e926e0faac199942ace77d857076b4903f2de2df9f679025b6586b2fefec/luma.core-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "61c1ab89960040625969e9cf2a270704", "sha256": "0238a221d44181606b90bd55df58a50f0c417a6bd86ae8889ad4a6fd20260b75" }, "downloads": -1, "filename": "luma.core-0.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "61c1ab89960040625969e9cf2a270704", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 38666, "upload_time": "2017-03-08T20:32:53", "url": "https://files.pythonhosted.org/packages/36/a6/1d93db347dc6788e8297658cb9e98a4c009a0a060dda89c79e540e66124e/luma.core-0.5.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5489c2315c17c11f4ed1f5ceafad7366", "sha256": "2005075fc0befa75852f2809daf4eaab2407de4338ef8cfef66b11e44b67bd79" }, "downloads": -1, "filename": "luma.core-0.5.3.tar.gz", "has_sig": false, "md5_digest": "5489c2315c17c11f4ed1f5ceafad7366", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42077, "upload_time": "2017-03-08T20:32:49", "url": "https://files.pythonhosted.org/packages/cc/d9/2fd7c99950e33c3e13c74ae20a254cdee2e00d8cbeb5d929e74bac6af38f/luma.core-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "ea07c3bf3448f046f0373a3636bed92f", "sha256": "48ebb11cc26011d9c37282b0fda6ed531efac0589d66f28affb3a2e14662374b" }, "downloads": -1, "filename": "luma.core-0.5.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ea07c3bf3448f046f0373a3636bed92f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 39445, "upload_time": "2017-03-08T22:41:10", "url": "https://files.pythonhosted.org/packages/3e/11/faff3d36f2f0f3523a10fd977f766550d542b917e4200be5bf94509a1008/luma.core-0.5.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cf436a1a7f9116efb310827342ae06b8", "sha256": "57405bcc517164add5b307d331c1886ad0cb9829e8c41dcc2378b3ba50679b1a" }, "downloads": -1, "filename": "luma.core-0.5.4.tar.gz", "has_sig": false, "md5_digest": "cf436a1a7f9116efb310827342ae06b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42599, "upload_time": "2017-03-08T22:41:06", "url": "https://files.pythonhosted.org/packages/d7/78/2e1288664f161faa7d121cf03d51ffc7c65e478c92fba25506ac2df124d6/luma.core-0.5.4.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "2b61574d2544b88f40a51cd084849e4c", "sha256": "c9a41c2d7792b7171f533f4499e387d2d1b5475da0774c91d144799fe9e8a79e" }, "downloads": -1, "filename": "luma.core-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2b61574d2544b88f40a51cd084849e4c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 40162, "upload_time": "2017-03-13T20:14:49", "url": "https://files.pythonhosted.org/packages/5c/93/353b9d349c90c4e5d0161aa1cd508d2eb900ba7b5261f6f79bf2e5b7e2fe/luma.core-0.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d589a38983366a8f741b834058d1aab1", "sha256": "7aebdbff4909897d87d0b1a4baad1fa65ce005e142fd8e3db938e6f3a23efa43" }, "downloads": -1, "filename": "luma.core-0.6.0.tar.gz", "has_sig": false, "md5_digest": "d589a38983366a8f741b834058d1aab1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42882, "upload_time": "2017-03-13T20:14:45", "url": "https://files.pythonhosted.org/packages/b1/01/903945459bcc164efe60b0df183cf8e1c4f65a858a0297b0c5f031848e85/luma.core-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "9552f860e8d6a8e81a0d14c7df173365", "sha256": "14b586aca4dd4bb986265526c963fe95248db7417518d155149fcaf9b1543ddd" }, "downloads": -1, "filename": "luma.core-0.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9552f860e8d6a8e81a0d14c7df173365", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 40727, "upload_time": "2017-03-13T23:47:11", "url": "https://files.pythonhosted.org/packages/ae/c4/727a696676b736c724ea2112f647fd8ecb92c8299aaade5ae1d2d2dce558/luma.core-0.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d4426e110266084ca9bae2bb4c9176a7", "sha256": "9aba7ef43b12bf932c31b21c0defd05454498d535090bf816b408f435a65c079" }, "downloads": -1, "filename": "luma.core-0.6.1.tar.gz", "has_sig": false, "md5_digest": "d4426e110266084ca9bae2bb4c9176a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43246, "upload_time": "2017-03-13T23:47:08", "url": "https://files.pythonhosted.org/packages/7d/ba/79d1ea320902df55eb2f8bdf13fcd1c9a24479e3381b7df25f4500dfe522/luma.core-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "24c13f121154f688dc099cd797ccc6d1", "sha256": "16cce8330228db9d144fae84dbb39776201a796ddbbe4a1b66d01a8afb597e7c" }, "downloads": -1, "filename": "luma.core-0.6.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "24c13f121154f688dc099cd797ccc6d1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 40981, "upload_time": "2017-03-19T17:25:26", "url": "https://files.pythonhosted.org/packages/97/4b/6f0b1fb5b99e2554eac937b7c87c106e8361693de0a6012214510f3f3a2a/luma.core-0.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bd6b7db2747dbefc31ac28c67e8981c6", "sha256": "371fa5bac55a67e8e8795445bb75ecfbcd3d274c7c9da42d5e4b21154fac295b" }, "downloads": -1, "filename": "luma.core-0.6.2.tar.gz", "has_sig": false, "md5_digest": "bd6b7db2747dbefc31ac28c67e8981c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43481, "upload_time": "2017-03-19T17:25:23", "url": "https://files.pythonhosted.org/packages/17/b8/d14ab1a8c74394bea0959c24b5a7a6963e7ff9267cfdd79a6b1603147d03/luma.core-0.6.2.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "60fc7b25c2ca313a786d3ddff14410c0", "sha256": "78ce7c958417bfdac48938bb8edd09e61d82f09d801da8e1a5e226982db983ca" }, "downloads": -1, "filename": "luma.core-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "60fc7b25c2ca313a786d3ddff14410c0", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 44088, "upload_time": "2017-03-27T21:53:22", "url": "https://files.pythonhosted.org/packages/c6/c2/dee3eca24350bd67fa30efadfc4af55245e769f17a26b9f501cb0e333971/luma.core-0.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0f1e3ae23659fb9d10f89c8bda3d4362", "sha256": "35f92a52d0ad607514e59d7fe361884969fdf66a555fe7d53d21504e03ff6d3c" }, "downloads": -1, "filename": "luma.core-0.7.0.tar.gz", "has_sig": false, "md5_digest": "0f1e3ae23659fb9d10f89c8bda3d4362", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45783, "upload_time": "2017-03-27T21:53:17", "url": "https://files.pythonhosted.org/packages/ad/19/cbc701b3dd8923b7860cdb79a3d26d43bbafbf31a738869abe6a59507c79/luma.core-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "48ade1551ed2dcfed8d65b0bba8b9aa0", "sha256": "9b40dd87c03b0d6ea8e5b7e1407f7a26ec90a4325bc6a0fa77a6f7281e78cf4b" }, "downloads": -1, "filename": "luma.core-0.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "48ade1551ed2dcfed8d65b0bba8b9aa0", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 44291, "upload_time": "2017-04-06T20:06:56", "url": "https://files.pythonhosted.org/packages/e7/b3/d66a99bed2147ed9ed4c9e27dc4d3c86547350d12bed4d723ee98c6dcb67/luma.core-0.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "83f00a8e8e5cec8ec4e3956a3a382ec0", "sha256": "156678ee4ccebf83e3b32a791f280dcbfd9ffc62bc528c85ed64c1a9cd5f357e" }, "downloads": -1, "filename": "luma.core-0.7.1.tar.gz", "has_sig": false, "md5_digest": "83f00a8e8e5cec8ec4e3956a3a382ec0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46363, "upload_time": "2017-04-06T20:06:53", "url": "https://files.pythonhosted.org/packages/32/d6/f1a67ffc21025471af69cbd9731b79ce7698d2a22146186604e3bee5307a/luma.core-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "1f401daa8feb4904650f2927c8cd7924", "sha256": "e86218bc44575758491a56545017585883bc2f593307f09edc4008a46aa0a532" }, "downloads": -1, "filename": "luma.core-0.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1f401daa8feb4904650f2927c8cd7924", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 44399, "upload_time": "2017-04-07T17:12:51", "url": "https://files.pythonhosted.org/packages/63/c3/97aa3f2c5e35f77b15ea0f0ea0e81772cbdbc2fe1410edfe865dcc1ac5c2/luma.core-0.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e15e551678aadc326f4c8fe514537f6a", "sha256": "7ddbf9124fe9ec39bb1d5e1443b7f14b0501b168f5cd9800ada69a26bccacec4" }, "downloads": -1, "filename": "luma.core-0.7.2.tar.gz", "has_sig": false, "md5_digest": "e15e551678aadc326f4c8fe514537f6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43968, "upload_time": "2017-04-07T17:12:47", "url": "https://files.pythonhosted.org/packages/1b/a7/fbe6921aaf2194593769e4ba44902f08619024747a5212151b2046400d7f/luma.core-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "43e09294c7f729238b28e2cb6ce3607b", "sha256": "deb4e27f50b3d20bd55c720ccd13fe43f1c5b780e302e0cca0b4980e0152b159" }, "downloads": -1, "filename": "luma.core-0.7.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "43e09294c7f729238b28e2cb6ce3607b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 44576, "upload_time": "2017-04-07T19:42:28", "url": "https://files.pythonhosted.org/packages/83/85/c737dc8dd8f3978a46db3e46d9eb3c5600b43f92f1cb2f28d0d723baa21c/luma.core-0.7.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "79b61c9d0e5d9e216bc744e7e1d97f94", "sha256": "4df9aef7fc9bed2785cd78666e8b0b0dd81f87d371753031206e3af8ba3d2194" }, "downloads": -1, "filename": "luma.core-0.7.3.tar.gz", "has_sig": false, "md5_digest": "79b61c9d0e5d9e216bc744e7e1d97f94", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46649, "upload_time": "2017-04-07T19:42:24", "url": "https://files.pythonhosted.org/packages/da/f8/b471f0d45a791fe6a682377169ad416ba5d9260a4807e0763500d6991e18/luma.core-0.7.3.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "05936eed73a61afcd4104e7c96340d5d", "sha256": "2aa0d81704b2efae1a391670405bfc95158bd43b988c9f7b9836a1fd12ab3b2f" }, "downloads": -1, "filename": "luma.core-0.7.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "05936eed73a61afcd4104e7c96340d5d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 44663, "upload_time": "2017-04-09T17:34:20", "url": "https://files.pythonhosted.org/packages/d0/68/1717707b40331e3b566b3cb18a324383fd5601a10c0b7a1b21300748597c/luma.core-0.7.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ba1c3f3653a37299414a169fa745978c", "sha256": "2f461b81bc497ed779e7a5124097fbe933fe5e93215ef932277b6c870f34025d" }, "downloads": -1, "filename": "luma.core-0.7.4.tar.gz", "has_sig": false, "md5_digest": "ba1c3f3653a37299414a169fa745978c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46744, "upload_time": "2017-04-09T17:34:17", "url": "https://files.pythonhosted.org/packages/c6/e8/e6e82d0b5f5dfbae8fcd02827c34ec1e47ac0f525e1f4773813f96e87a01/luma.core-0.7.4.tar.gz" } ], "0.7.5": [ { "comment_text": "", "digests": { "md5": "aa1c1c15be346384c0a582ff637f027d", "sha256": "b209669960e51a7929660952ba1453e31bb32c8a0376cb1169b7ef025c73dd77" }, "downloads": -1, "filename": "luma.core-0.7.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aa1c1c15be346384c0a582ff637f027d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 44793, "upload_time": "2017-04-13T18:04:56", "url": "https://files.pythonhosted.org/packages/49/1e/fbc16f350d3521e445087ae7ba1495ace777a892c3055138904e3732fd41/luma.core-0.7.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7f4058045200055fee9a62657710aad5", "sha256": "06ee0f5fe27c8eeb5b7e6f78b32403d79e41907f6697aef3cdbed4053f83a842" }, "downloads": -1, "filename": "luma.core-0.7.5.tar.gz", "has_sig": false, "md5_digest": "7f4058045200055fee9a62657710aad5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42649, "upload_time": "2017-04-13T18:04:54", "url": "https://files.pythonhosted.org/packages/5f/76/c11f90507f1e99af3ad2df27044fd5ec408262a497f618add006462c16e5/luma.core-0.7.5.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "ffd2e5e2edad9d5e119a92f705eca535", "sha256": "b72276be7f7e67dd0814acbbeb481d385dc86fc7c0856ef37a03595253ad0753" }, "downloads": -1, "filename": "luma.core-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ffd2e5e2edad9d5e119a92f705eca535", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 46222, "upload_time": "2017-04-14T21:42:19", "url": "https://files.pythonhosted.org/packages/d5/9f/7cb2857ddc90073c968fd88301c6f457aa33c7ebfa4fd714815c04d121b6/luma.core-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "65acf95c713dfd2af758186aa4f2ca4b", "sha256": "f954c7ae19e66fd21b0c25cb3896faf3eb5b1de022c26ff3b534946d2fc8e849" }, "downloads": -1, "filename": "luma.core-0.8.0.tar.gz", "has_sig": false, "md5_digest": "65acf95c713dfd2af758186aa4f2ca4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48164, "upload_time": "2017-04-14T21:42:18", "url": "https://files.pythonhosted.org/packages/8c/3e/7b05b2940850b005158738dd2a3891921390f9662d706ad42cd5829f0512/luma.core-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "0a3352e22c749e1729e3e6145b42683e", "sha256": "972e3ce1830a0da4da7ea1940c99816a6cd63ddcd6493c97906552d2d52a04e3" }, "downloads": -1, "filename": "luma.core-0.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0a3352e22c749e1729e3e6145b42683e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 46296, "upload_time": "2017-04-14T22:05:39", "url": "https://files.pythonhosted.org/packages/c0/96/f7789b774098bcdeace02c09676ee3b441262a6cfb0eb71a11f9b5a44bb9/luma.core-0.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fd998db7ddde9fca7a448290a2e2af4e", "sha256": "a4adc21b2f9e053f384b2b49d62865e71a1dcd23294ec37d3b4a2afda00febb5" }, "downloads": -1, "filename": "luma.core-0.8.1.tar.gz", "has_sig": false, "md5_digest": "fd998db7ddde9fca7a448290a2e2af4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48229, "upload_time": "2017-04-14T22:05:36", "url": "https://files.pythonhosted.org/packages/dc/37/433ec576d04edca2eff33ae734230621bd1f07bbfa03727927f5cc5a44c5/luma.core-0.8.1.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "24fed44ca381cb1d1d692e4194ef2ac0", "sha256": "41d6a4c633467f54e1bea4fa08164716273dbd290b0deee9b6bdf0dfd90b1236" }, "downloads": -1, "filename": "luma.core-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "24fed44ca381cb1d1d692e4194ef2ac0", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 47750, "upload_time": "2017-04-22T19:07:34", "url": "https://files.pythonhosted.org/packages/01/20/c97ee618c41e08c618675b9761fedc4a2907af0afb5f206c733dc2b10b55/luma.core-0.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "88c4e7784b9929a48c4f51eda2a52227", "sha256": "2f852a4e365fbe8b5d52d97310cdae6b1d2522ac7cabf645abaf8244ec64aa83" }, "downloads": -1, "filename": "luma.core-0.9.0.tar.gz", "has_sig": false, "md5_digest": "88c4e7784b9929a48c4f51eda2a52227", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48960, "upload_time": "2017-04-22T19:07:32", "url": "https://files.pythonhosted.org/packages/31/87/e744632cc71fe516212922b7f23ee0f581f1478022592ead9d6bc5fae976/luma.core-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "053ad18bebd7264df1b0a5d071a8ba95", "sha256": "ba52fa46af157f85a8c146e1ae9dc8dbdcf54c5f9e5025dc2e62e986fc77234d" }, "downloads": -1, "filename": "luma.core-0.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "053ad18bebd7264df1b0a5d071a8ba95", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 47812, "upload_time": "2017-05-01T21:52:08", "url": "https://files.pythonhosted.org/packages/46/89/068c902aaa25d51214fd13ccfc1c3b3daaddc0faa7c8aa95aadcc0bdf8b3/luma.core-0.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "521489cb0c4781de0fee5e2a9030b92d", "sha256": "2390d2ab58af81762e1ac5087e37dc9b03ad94da35a7ace59292aa13768ea5f2" }, "downloads": -1, "filename": "luma.core-0.9.1.tar.gz", "has_sig": false, "md5_digest": "521489cb0c4781de0fee5e2a9030b92d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49046, "upload_time": "2017-05-01T21:52:04", "url": "https://files.pythonhosted.org/packages/9c/6c/a53c0842c63fb846a7049bce61aa69f33888775ce818239043b85e9c54ee/luma.core-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "5994059137250ef9c940d8d7a0b66862", "sha256": "be040c4b74b1eabdfe28b915071b83f2af6fc5bfc94ec51cf8ef1b6a4c0d7551" }, "downloads": -1, "filename": "luma.core-0.9.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5994059137250ef9c940d8d7a0b66862", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 48147, "upload_time": "2017-06-19T20:23:51", "url": "https://files.pythonhosted.org/packages/40/e7/0442743b083885725ce367165aa698b3d8c5e1110ceee87a88f9a932fdd8/luma.core-0.9.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "90fe903fd253b4491747eb66d611210f", "sha256": "e68e7e67e03857a7714b7d7728e9c7f6b319da728e1f60a624b2f40d2c54bad6" }, "downloads": -1, "filename": "luma.core-0.9.2.tar.gz", "has_sig": false, "md5_digest": "90fe903fd253b4491747eb66d611210f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49355, "upload_time": "2017-06-19T20:23:48", "url": "https://files.pythonhosted.org/packages/c3/8a/201bf98dafa564d2b030718cffd91a2b8b34a7565c7861c7dc0c8ccc3c26/luma.core-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "5c3d700c59cd7206517583d5f34afecf", "sha256": "4e39b1ba02eeedce7b166bd59bac43a8d959de369c684f27552bfc2f555375ce" }, "downloads": -1, "filename": "luma.core-0.9.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5c3d700c59cd7206517583d5f34afecf", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 48724, "upload_time": "2017-06-25T20:42:44", "url": "https://files.pythonhosted.org/packages/73/ac/8b6b98379e9d6a049c64f9ae29cd381890affd5b34ca553597597cb616ef/luma.core-0.9.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b6421cec4f6dc056423274541fbcd9f7", "sha256": "9e4f5beadd9850d015f3d3544b03b4ca69ef5d7f11e2b268f8908978878b69e5" }, "downloads": -1, "filename": "luma.core-0.9.3.tar.gz", "has_sig": false, "md5_digest": "b6421cec4f6dc056423274541fbcd9f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49926, "upload_time": "2017-06-25T20:42:42", "url": "https://files.pythonhosted.org/packages/3e/ae/7633d8d9bad49a3308bb182bec2c1b2099d7251f9a65f39893b7140ff49a/luma.core-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "a09aa4cf0da47fe0475f088e63a393a0", "sha256": "b5d9456febda11b48102ce9b47e32aae62d5007ce7328a0663fdad1be403eee4" }, "downloads": -1, "filename": "luma.core-0.9.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a09aa4cf0da47fe0475f088e63a393a0", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 49661, "upload_time": "2017-07-01T16:50:07", "url": "https://files.pythonhosted.org/packages/f4/6e/7e05d457f79caf53c90ec94df7af6f7461564cc5eaf889b4506bb77bb710/luma.core-0.9.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "973f0ac7d244d8fcaba323e30434f295", "sha256": "bac8cff1488f6516e0be746ab861b8e92abcbc160b5c6378e9b0b7784bab9f74" }, "downloads": -1, "filename": "luma.core-0.9.4.tar.gz", "has_sig": false, "md5_digest": "973f0ac7d244d8fcaba323e30434f295", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46660, "upload_time": "2017-07-01T16:50:05", "url": "https://files.pythonhosted.org/packages/e0/02/14e9dedfee244d8b695683d9756e46ef1893a0ccfda3c83adbf617e43872/luma.core-0.9.4.tar.gz" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "9739ba290ae8a2cfa252dbb54b089d2c", "sha256": "535d9e5b9ce3d6c8653e6184474e22240cd6fa79f4385e1cf8725b61e7f53129" }, "downloads": -1, "filename": "luma.core-0.9.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9739ba290ae8a2cfa252dbb54b089d2c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 49801, "upload_time": "2017-07-06T14:42:38", "url": "https://files.pythonhosted.org/packages/2d/86/ff73cff3a334f6c4861485d0adf036be584c634102aba5100897e8afba1e/luma.core-0.9.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "23df7ce6c4a55154ff6b6c7e8c3156b4", "sha256": "54de1fbc6fd6ca2ef7e0b7c17161d2000f891bcdb8ebf3622eb51dd0585633da" }, "downloads": -1, "filename": "luma.core-0.9.5.tar.gz", "has_sig": false, "md5_digest": "23df7ce6c4a55154ff6b6c7e8c3156b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50936, "upload_time": "2017-07-06T14:42:33", "url": "https://files.pythonhosted.org/packages/5b/2a/5724edb26b127424d97cf41efee360b64baffea320120a6e0bdde49b2dc4/luma.core-0.9.5.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "f519adad070bbe0987df415a7b0a8c77", "sha256": "eeb78c71043e49eb3c2a344e8afdfe9a6ae5b322efea7565a9c0106c895f12c5" }, "downloads": -1, "filename": "luma.core-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f519adad070bbe0987df415a7b0a8c77", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 49142, "upload_time": "2017-07-30T10:33:26", "url": "https://files.pythonhosted.org/packages/4a/e7/0e93d5658876cfffc52e47de609f3cd5e56e08bd77d08b481d3a8aec0cee/luma.core-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "850d43c0229d57f24e80d1cd44bec2bf", "sha256": "c110d5239a460a0614372352c5970b2b25adb715f10742eee33f1710e404f48f" }, "downloads": -1, "filename": "luma.core-1.0.0.tar.gz", "has_sig": false, "md5_digest": "850d43c0229d57f24e80d1cd44bec2bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50369, "upload_time": "2017-07-30T10:33:24", "url": "https://files.pythonhosted.org/packages/24/3c/2753ba7ba60910eb8329a886746a1ff6610eb7e771571cf5d2b6d92ec64c/luma.core-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "bb0a2e931141f822e831a8c5f00b267a", "sha256": "42e00c348e72dc070237efcfea6e37d92980fe99fb6b65ce80e1e399b5ca332a" }, "downloads": -1, "filename": "luma.core-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bb0a2e931141f822e831a8c5f00b267a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 49365, "upload_time": "2017-09-04T22:51:11", "url": "https://files.pythonhosted.org/packages/31/55/390592d879a48307df215c4985d2429ad27235f7b9ac5d851ff6f3ab8b1f/luma.core-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "265e6a34fb66506f4bd03882eb31a2b0", "sha256": "31127a5209dfa226879597d8d8eb65446b805f17da15068536a3543c24e84807" }, "downloads": -1, "filename": "luma.core-1.0.1.tar.gz", "has_sig": false, "md5_digest": "265e6a34fb66506f4bd03882eb31a2b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50792, "upload_time": "2017-09-04T22:51:08", "url": "https://files.pythonhosted.org/packages/13/09/01ae05493fece62292807bfd62e6630fdf53f3bf0a25a964f88cd052030f/luma.core-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "3c8d42119e672c8aef81eadef171b997", "sha256": "317af93c255afb678a1639351d0809a334c47d8f18e456adf10f9c3154837a7a" }, "downloads": -1, "filename": "luma.core-1.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3c8d42119e672c8aef81eadef171b997", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 49477, "upload_time": "2017-09-15T11:26:28", "url": "https://files.pythonhosted.org/packages/8b/71/cdcb34e590e7127444a934d7a35cd9cb1435c54afc78ddc019ca982f5291/luma.core-1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6c6ff54ba7e0fe9fd07ed9e7d2432983", "sha256": "e2b90952276a5d611724f7bac074d521b0d743377d901e060f749cc199336c42" }, "downloads": -1, "filename": "luma.core-1.0.2.tar.gz", "has_sig": false, "md5_digest": "6c6ff54ba7e0fe9fd07ed9e7d2432983", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50806, "upload_time": "2017-09-15T11:26:22", "url": "https://files.pythonhosted.org/packages/79/53/059311079c6c72e76e3a0c3b9f86633f8cac2fdc0ba21bd63101e7dc675b/luma.core-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "1e7d5124de3f8ae2b427fd19a8f9a960", "sha256": "a08a80fcb6ecad3f17253c1c09046e23b46a370f3f8c56ca987e48b7b4d8336e" }, "downloads": -1, "filename": "luma.core-1.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1e7d5124de3f8ae2b427fd19a8f9a960", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 49568, "upload_time": "2017-10-18T11:19:39", "url": "https://files.pythonhosted.org/packages/05/c4/e31bf66de37be96912a597989788130bb84152f9a10e405c2fbf2fd62c7d/luma.core-1.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fce108c6a069880985ffaee1424af4e8", "sha256": "f83860ebbee33843c897d4b73024e43af82b31dd2bbf2575db626b4b3fdec0c2" }, "downloads": -1, "filename": "luma.core-1.0.3.tar.gz", "has_sig": false, "md5_digest": "fce108c6a069880985ffaee1424af4e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53103, "upload_time": "2017-10-18T11:19:37", "url": "https://files.pythonhosted.org/packages/de/4f/13db38a8d0c8a7566d48eaef1f2b94f03da40362e282b6231aa706eb7bca/luma.core-1.0.3.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "d00c6103c9021df499e587a0471bc307", "sha256": "3dbc170d0336866093627af196dc8e5de654e9f2c870b45adea9559849336643" }, "downloads": -1, "filename": "luma.core-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d00c6103c9021df499e587a0471bc307", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 51151, "upload_time": "2017-10-28T19:59:03", "url": "https://files.pythonhosted.org/packages/2c/84/d5684f552b7c3655e6e9b5a6aa61b243daa3aeacab9517ae39361e1e6ce7/luma.core-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4c0d61e48edd44dddc5d4c8923c4d3d2", "sha256": "b8ab8770ccd034934399b1911db591ce3d8af41bb08eac5d8d7ec9735aeef587" }, "downloads": -1, "filename": "luma.core-1.1.0.tar.gz", "has_sig": false, "md5_digest": "4c0d61e48edd44dddc5d4c8923c4d3d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54328, "upload_time": "2017-10-28T19:59:00", "url": "https://files.pythonhosted.org/packages/16/b8/d53a66e8e0ca849afa315dbe4d6b73522d17de2e020079dc0742c88acc7a/luma.core-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "1ae6b87453bc4931d93466af7e99385b", "sha256": "981bbe841718c6c91e766e514788cfa00a2ab54f200412589dd7daca137430ee" }, "downloads": -1, "filename": "luma.core-1.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1ae6b87453bc4931d93466af7e99385b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 51167, "upload_time": "2017-11-23T19:15:15", "url": "https://files.pythonhosted.org/packages/41/cf/efad0572c3609c4382b5ef457e97e1483b1a739bdb988d69f6666d8bb9bd/luma.core-1.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dd526c17c78d3e5fa5c37756087f6a61", "sha256": "99cc692e136ed9e48ca158a008e506d5d4d88e20cf1d299595b8d2cffa4da968" }, "downloads": -1, "filename": "luma.core-1.1.1.tar.gz", "has_sig": false, "md5_digest": "dd526c17c78d3e5fa5c37756087f6a61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54459, "upload_time": "2017-11-23T19:15:14", "url": "https://files.pythonhosted.org/packages/7d/80/7e9d1afffb86ca32922d8bb0767322d7a57089867238de3f19cded182097/luma.core-1.1.1.tar.gz" } ], "1.10.0": [ { "comment_text": "", "digests": { "md5": "1e3dd2976c8f44a4d22ae32c39a1b238", "sha256": "dac3a89c0e73482232f5619f8897400c2da8bb3d5f6396eaaf4814d5b5e5fce5" }, "downloads": -1, "filename": "luma.core-1.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1e3dd2976c8f44a4d22ae32c39a1b238", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 50932, "upload_time": "2019-05-23T14:01:44", "url": "https://files.pythonhosted.org/packages/00/3d/3f1ecfb8d5b34a163c1a5da3c9f6e4eab2023b931b8bd471474d4cf11a13/luma.core-1.10.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d953880a7bbf6861122b4ade11c9089a", "sha256": "7965419f0244d0e051f47a0359924b61388d33276131b46df74195195dc3fe74" }, "downloads": -1, "filename": "luma.core-1.10.0.tar.gz", "has_sig": false, "md5_digest": "d953880a7bbf6861122b4ade11c9089a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56894, "upload_time": "2019-05-23T14:01:41", "url": "https://files.pythonhosted.org/packages/63/42/19d25f70f7bb6ec239aaf3b72004d8058ac95dd30158faccc8c9be847763/luma.core-1.10.0.tar.gz" } ], "1.10.1": [ { "comment_text": "", "digests": { "md5": "40730f70faca04d1cdd0c09bf540720c", "sha256": "63e5753b079349b94c9ac52484b577a7188d73c55414ea2c171d304d84f55f8e" }, "downloads": -1, "filename": "luma.core-1.10.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "40730f70faca04d1cdd0c09bf540720c", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 51145, "upload_time": "2019-05-25T13:32:29", "url": "https://files.pythonhosted.org/packages/59/ac/ad96363087936f713c1c41eef2b3b596415b3b4c9600969f5de016ed875d/luma.core-1.10.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "11e81a2163c0c256e1e82e08a255645b", "sha256": "904d289eb14dc8202f97f603e2ac96d2dff4a8ffc9ccfaaa72e8de5b73c3aa78" }, "downloads": -1, "filename": "luma.core-1.10.1.tar.gz", "has_sig": false, "md5_digest": "11e81a2163c0c256e1e82e08a255645b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59416, "upload_time": "2019-05-25T13:32:26", "url": "https://files.pythonhosted.org/packages/84/db/a9ecbbd450cc3323954469a58675f988d60a9346b4784df03e6285d1f799/luma.core-1.10.1.tar.gz" } ], "1.11.0": [ { "comment_text": "", "digests": { "md5": "13a39695fdf0d9636cfaadca36a51707", "sha256": "f456b199bbf8c13c7ac56c703ed9491c1bcdd66bd99b7728abac804b6b64f5bf" }, "downloads": -1, "filename": "luma.core-1.11.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "13a39695fdf0d9636cfaadca36a51707", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 51213, "upload_time": "2019-06-02T10:10:19", "url": "https://files.pythonhosted.org/packages/91/01/532e2ed9d8c8e49c8acb154df823a15849b251466e1d3c58edd6f3b01b1b/luma.core-1.11.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7fa86ee515552ce86c506eb32b4bf4b1", "sha256": "53d4186f13d901dce27d131213b06c63ea3bd124329608ea52f63ecfdd7e4d4f" }, "downloads": -1, "filename": "luma.core-1.11.0.tar.gz", "has_sig": false, "md5_digest": "7fa86ee515552ce86c506eb32b4bf4b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59506, "upload_time": "2019-06-02T10:10:16", "url": "https://files.pythonhosted.org/packages/d2/25/14fcc8fdf8fd994d18061ef18cf9a756ebb6045e1db33c40ff8d90c58217/luma.core-1.11.0.tar.gz" } ], "1.12.0": [ { "comment_text": "", "digests": { "md5": "b084cbef3d266a8372294fb9a7faa514", "sha256": "0cf4726463485f55192ec02637eac1e943e296a83388066836cad9c02f7f3fae" }, "downloads": -1, "filename": "luma.core-1.12.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b084cbef3d266a8372294fb9a7faa514", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 51242, "upload_time": "2019-06-15T20:25:40", "url": "https://files.pythonhosted.org/packages/a7/36/f10ac3202221c479bae89e3226e57dcbf31c08f4d9e5743f32e193147a22/luma.core-1.12.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4378edb99cd12540b4e4a588969567ee", "sha256": "864a427de78bcc16758f4f4402a9e61f31cc8857bfae9aba8041159aaec3a491" }, "downloads": -1, "filename": "luma.core-1.12.0.tar.gz", "has_sig": false, "md5_digest": "4378edb99cd12540b4e4a588969567ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59393, "upload_time": "2019-06-15T20:25:37", "url": "https://files.pythonhosted.org/packages/1d/61/029db54f3d1604329569cdce171768684f774c5f191d7be43bc6a19d5bc0/luma.core-1.12.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "d361f8ed704578711a2e942dba8e2883", "sha256": "ac64c70fb3018f02f7968fc6f9342f8afded462b2d248329ba07247a56d4f14d" }, "downloads": -1, "filename": "luma.core-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d361f8ed704578711a2e942dba8e2883", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 51444, "upload_time": "2017-11-23T22:07:38", "url": "https://files.pythonhosted.org/packages/3c/0a/4af2d1511f6680945cee725d13c519cc1d5eb0cea830eee3da0ef57d48ff/luma.core-1.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6d0e5a69291df449fa5a04c68a9da244", "sha256": "6f8e7b72ba33bae980e7889a4688208d12c2b61ec62893779cf5e8274c9f74cd" }, "downloads": -1, "filename": "luma.core-1.2.0.tar.gz", "has_sig": false, "md5_digest": "6d0e5a69291df449fa5a04c68a9da244", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54735, "upload_time": "2017-11-23T22:07:36", "url": "https://files.pythonhosted.org/packages/6d/e9/5fb0b526ae03d9f8a6567c10bbf68dd05fa8078623101e34fb73b5a1d546/luma.core-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "46a597715e8e789fd198104ae21226cc", "sha256": "9914e62b3c99ff019eab7e94b1a99a0b087a0679cb38a122bc52aadaa7b1f397" }, "downloads": -1, "filename": "luma.core-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "46a597715e8e789fd198104ae21226cc", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 51584, "upload_time": "2017-11-27T01:34:44", "url": "https://files.pythonhosted.org/packages/e7/12/94e830bd2fae2b1df33dcfc8789801614c3e80b89c2d89d8fb0a01b8f424/luma.core-1.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "83fe361fd6803c3b5a2af6a7ce46658d", "sha256": "10a2d1fef0fe7141e7afd8a5def3dc37b1fd950938c5b09c3fd97859800d9e3c" }, "downloads": -1, "filename": "luma.core-1.2.1.tar.gz", "has_sig": false, "md5_digest": "83fe361fd6803c3b5a2af6a7ce46658d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54817, "upload_time": "2017-11-27T01:34:41", "url": "https://files.pythonhosted.org/packages/69/d6/c9d2e7146def895d74efb9c177729ff8f1d25d44e30b3cb8466646ccc6f1/luma.core-1.2.1.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "7f1438b60745c35a0c514512aaa2256d", "sha256": "9c455aa21ba9d9f5f4f0ffc252f0a292f96b62d5e4045e5ebe41849f94e67e5f" }, "downloads": -1, "filename": "luma.core-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7f1438b60745c35a0c514512aaa2256d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 51875, "upload_time": "2018-01-03T00:37:22", "url": "https://files.pythonhosted.org/packages/95/3a/e5c411b2ddfbdedb7acff0ffeb615589f94d4d65d1764a644659c815fb7d/luma.core-1.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5846f6f7ca787f2dbd24f6174ce9d0f6", "sha256": "a118ead24a91f9a355a3349fd0d67018ebfe1c905c7d0e68e06e514ba1a607cf" }, "downloads": -1, "filename": "luma.core-1.3.0.tar.gz", "has_sig": false, "md5_digest": "5846f6f7ca787f2dbd24f6174ce9d0f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54961, "upload_time": "2018-01-03T00:37:20", "url": "https://files.pythonhosted.org/packages/2b/b4/e0b34efb9435f3aa4be1dab507946317b594261f3f1b4255bf26df9592ed/luma.core-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "7870eba0731ebf15cd6f0531d7f9d89d", "sha256": "02f0d8a8aec4f4af6ce430ce9d17a4e942a575b26f57effcf2582a7203a23c1e" }, "downloads": -1, "filename": "luma.core-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7870eba0731ebf15cd6f0531d7f9d89d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 52002, "upload_time": "2018-01-29T00:02:41", "url": "https://files.pythonhosted.org/packages/8f/cd/99e29d91cd8d342bdd3ea4b2bf6cf56d782e6cb5c000532c819f8f5530f4/luma.core-1.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a2469aa7cca92d7caeebd166c89ac738", "sha256": "48c3fea2a6cc703ffb06523d31754affd51353753c85856d1cd3cb65ac369487" }, "downloads": -1, "filename": "luma.core-1.4.0.tar.gz", "has_sig": false, "md5_digest": "a2469aa7cca92d7caeebd166c89ac738", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55183, "upload_time": "2018-01-29T00:02:39", "url": "https://files.pythonhosted.org/packages/3b/b7/e564d4eb9e66120fad67b073a62b3ffb9a7caca87c964fa9c818f22c9956/luma.core-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "c0f82db971cfcf04b229319154ad7281", "sha256": "b95c9bcc230fe501a3901978b0dbf56cfd2cb2d5af9100a2d35a95e9b2dd0a50" }, "downloads": -1, "filename": "luma.core-1.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c0f82db971cfcf04b229319154ad7281", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 52735, "upload_time": "2018-02-06T19:13:06", "url": "https://files.pythonhosted.org/packages/7b/c5/8aacf388d72fde32da0d334a5757801e8e620573d6e3633b2c5a321e8223/luma.core-1.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4ec2f8290ff34ed4e240b0a484d1e738", "sha256": "b4e0f9c9f6031079f4827f11ed100289d91f591ad0c2227ff74e63617b354618" }, "downloads": -1, "filename": "luma.core-1.5.0.tar.gz", "has_sig": false, "md5_digest": "4ec2f8290ff34ed4e240b0a484d1e738", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55844, "upload_time": "2018-02-06T19:13:03", "url": "https://files.pythonhosted.org/packages/3e/60/263971087270450e127be3938b732f832d35ee99d4c4cff9597b962ed415/luma.core-1.5.0.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "2bf039437ca2784ee37d6db995087d0c", "sha256": "6826644c3bddc9b56aa06e61ef483fbbe4fd0ba3699e0e4bbf4e0b0d609cf624" }, "downloads": -1, "filename": "luma.core-1.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2bf039437ca2784ee37d6db995087d0c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 52874, "upload_time": "2018-02-22T01:03:19", "url": "https://files.pythonhosted.org/packages/b9/1d/9f35cfd8026a27b9cc419ec9442fc806e5d96d1cfa65385b40909f1e5af5/luma.core-1.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aca37515948714edf1f566fcd6dc865c", "sha256": "dddd4d128435a834dc025d2f08ae869d6d1d69ea6e22fd262181a55bc9599f6d" }, "downloads": -1, "filename": "luma.core-1.6.0.tar.gz", "has_sig": false, "md5_digest": "aca37515948714edf1f566fcd6dc865c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56042, "upload_time": "2018-02-22T01:03:18", "url": "https://files.pythonhosted.org/packages/5d/02/160163d415447a5c9c08161dff0be5ca064c436a95fcd1507277504326da/luma.core-1.6.0.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "c02e91d48b38c6f4a5a8486b907d4569", "sha256": "ab2da43e78233852432cf07b7afd8efce497cc7222e5f8a6731b74439571670a" }, "downloads": -1, "filename": "luma.core-1.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c02e91d48b38c6f4a5a8486b907d4569", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 52995, "upload_time": "2018-03-21T23:30:59", "url": "https://files.pythonhosted.org/packages/c8/b0/b20ec7101f325f612a7bb405c07f974102286a1746e2afe63706c0fdb984/luma.core-1.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1dd6c1f924c595bbb32967446ba4259b", "sha256": "b828034248c80926ae023c002cf323318a6e1410b66226dcba1c69f4041d5df7" }, "downloads": -1, "filename": "luma.core-1.7.0.tar.gz", "has_sig": false, "md5_digest": "1dd6c1f924c595bbb32967446ba4259b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56068, "upload_time": "2018-03-21T23:30:56", "url": "https://files.pythonhosted.org/packages/c5/cf/167eb3d824159cc169fc2acfb5bbff0e787c64d2e3f3a42b1bc92bf970cf/luma.core-1.7.0.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "3e0e96776e18dcd15c28f2008b5313b5", "sha256": "23232d56cb12c81e9afffd483c149510b738e3ed7811c29e09a4a454c64dbe73" }, "downloads": -1, "filename": "luma.core-1.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3e0e96776e18dcd15c28f2008b5313b5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 53048, "upload_time": "2018-03-22T20:13:56", "url": "https://files.pythonhosted.org/packages/c2/4f/567dcde2fe6a8d6f235b3d460268892272543c42a12a4f48e7fb2d18e687/luma.core-1.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b0ab0c8a484cf0b94d677f5231b30434", "sha256": "732f8adbacfde56532ae72bb757f54f5b3d6cc90f453b5380dbfed5ff5772aab" }, "downloads": -1, "filename": "luma.core-1.7.1.tar.gz", "has_sig": false, "md5_digest": "b0ab0c8a484cf0b94d677f5231b30434", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56131, "upload_time": "2018-03-22T20:13:53", "url": "https://files.pythonhosted.org/packages/72/58/3fa481e7fb7d68baffbc21943abce98570f8f3384073406c612f919df9a8/luma.core-1.7.1.tar.gz" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "9bdacfb880e52b49cbf0365a0b5da97d", "sha256": "0627c84f9bd48449baaca16f767c04bc71b8fc2fb9bdd48ef008adc749e4b972" }, "downloads": -1, "filename": "luma.core-1.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9bdacfb880e52b49cbf0365a0b5da97d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 53077, "upload_time": "2018-03-29T19:41:25", "url": "https://files.pythonhosted.org/packages/1b/54/0b99b02a3f862e23084421628839bac33617f46920a6d1e0f8bb74fc880b/luma.core-1.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "66a6765770e47d29ad03b749c2d8d7f9", "sha256": "b5028b1471b7a5a2df11aeccf7b3506cfff63710826259c5ad0dc5a1e9395866" }, "downloads": -1, "filename": "luma.core-1.7.2.tar.gz", "has_sig": false, "md5_digest": "66a6765770e47d29ad03b749c2d8d7f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56175, "upload_time": "2018-03-29T19:41:23", "url": "https://files.pythonhosted.org/packages/21/21/3b002198f2778bb008e3c506f7e2ec16b60ebbcf988f2acd67db59cc4731/luma.core-1.7.2.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "28331a0bcf4dcca185d2618c4f5769c4", "sha256": "215c987bdc38a04a937a12049481dd62aeb365b81cb20afd44030986b69ba8dc" }, "downloads": -1, "filename": "luma.core-1.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "28331a0bcf4dcca185d2618c4f5769c4", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 48006, "upload_time": "2018-09-04T22:24:25", "url": "https://files.pythonhosted.org/packages/c5/ed/e261fec67e376bf222e3cf2c4ff04726fe6ff0b2f66b3651af82b04a65f7/luma.core-1.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b97f024f0b6d7459bcf3686dc38fd06b", "sha256": "ec2206768771b7e9f949a22d62f42179e1554e54524bce6fe05882b89c22868f" }, "downloads": -1, "filename": "luma.core-1.8.0.tar.gz", "has_sig": false, "md5_digest": "b97f024f0b6d7459bcf3686dc38fd06b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56989, "upload_time": "2018-09-04T22:24:23", "url": "https://files.pythonhosted.org/packages/f6/79/a85549af7681a62798728ddaaef0ca455d42e3cc3a27b4864a30d4844dfd/luma.core-1.8.0.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "51d26d91baf2c767245b63f196cf8d9d", "sha256": "c13fd396fb5db8ed994b28bb51ac618c28fedf9b163740f74206b5fa3fefb742" }, "downloads": -1, "filename": "luma.core-1.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "51d26d91baf2c767245b63f196cf8d9d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 53878, "upload_time": "2018-09-18T20:22:19", "url": "https://files.pythonhosted.org/packages/ac/71/5d8333671d64e7b8f9c568a9e8e0f7131edfc9db58bb510d1b3542b9627b/luma.core-1.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d9dc733926d842648994278b0d9b648b", "sha256": "1114f544de25a33281fd214c60c64533c44b552f6fa2325c9b543e691379f8e2" }, "downloads": -1, "filename": "luma.core-1.8.1.tar.gz", "has_sig": false, "md5_digest": "d9dc733926d842648994278b0d9b648b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57248, "upload_time": "2018-09-18T20:22:16", "url": "https://files.pythonhosted.org/packages/b7/2c/60307fef60056cd46fc4593598849c598e4eba58ee5536fb62c4c054c9b4/luma.core-1.8.1.tar.gz" } ], "1.8.2": [ { "comment_text": "", "digests": { "md5": "13f1d54f4d91a444712092d34a9acef9", "sha256": "7502dc012fdb3dd84dd791a984851d619efc74a70fab28c4ff88ad0bd1a368f1" }, "downloads": -1, "filename": "luma.core-1.8.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "13f1d54f4d91a444712092d34a9acef9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 53934, "upload_time": "2018-11-05T13:26:27", "url": "https://files.pythonhosted.org/packages/93/47/6901821807ee8742e01348600245d02162688cb74db3fa631c60812bf49c/luma.core-1.8.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c391900da09125a7608b36cd680cd0c1", "sha256": "dd4d0c6f141b68cc27dcb95e947a6271366e7f00b17274323bce1d66c9ee1e25" }, "downloads": -1, "filename": "luma.core-1.8.2.tar.gz", "has_sig": false, "md5_digest": "c391900da09125a7608b36cd680cd0c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57370, "upload_time": "2018-11-05T13:26:25", "url": "https://files.pythonhosted.org/packages/0e/f0/6a3dbfd3d1ddcb450e937f4557179768c635cf12fd1ff29f0f0584627c59/luma.core-1.8.2.tar.gz" } ], "1.8.3": [ { "comment_text": "", "digests": { "md5": "3208052275c17a74a09cc76c798e3c9b", "sha256": "8dd644a5fb927296d093a97b03969119603b91c1cb62f5b83fc88a48c85a3e16" }, "downloads": -1, "filename": "luma.core-1.8.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3208052275c17a74a09cc76c798e3c9b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 54294, "upload_time": "2019-01-07T08:08:36", "url": "https://files.pythonhosted.org/packages/b6/9d/cbe18a57c8db754e95e8ea7fa668d10fb26c621613edbd556ce80897905c/luma.core-1.8.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "549ba83981350fd80540c60f44a7a2d4", "sha256": "757f82ee7c6b2383df11315ca554a57c0e69f62cb361a8223bd6d0911108eb5e" }, "downloads": -1, "filename": "luma.core-1.8.3.tar.gz", "has_sig": false, "md5_digest": "549ba83981350fd80540c60f44a7a2d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58773, "upload_time": "2019-01-07T08:08:32", "url": "https://files.pythonhosted.org/packages/88/33/9be76a139d914d2a1ec9593632d81dd277d4b7005554a9881221d2b8e3ad/luma.core-1.8.3.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "20b63c651912ef54cafe8fdda3f19cae", "sha256": "0d14d04a76d98bb6f196760dba16ef64b1a6967265889ac16b8aef53ba81d66b" }, "downloads": -1, "filename": "luma.core-1.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "20b63c651912ef54cafe8fdda3f19cae", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 50464, "upload_time": "2019-05-10T16:59:45", "url": "https://files.pythonhosted.org/packages/94/d3/b07e73f42d17c195cd1520f0df65a3b1620f76f2424cf91db870d75da044/luma.core-1.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4a24273568b6174b3b7a72ed2d53de51", "sha256": "9b42da8be55a57805365ce5977310b57c67cf779a68efd04610be417f01fa508" }, "downloads": -1, "filename": "luma.core-1.9.0.tar.gz", "has_sig": false, "md5_digest": "4a24273568b6174b3b7a72ed2d53de51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56548, "upload_time": "2019-05-10T16:59:42", "url": "https://files.pythonhosted.org/packages/d6/f4/26be76f590221c653d512edeadd4570163a43a491268f35b8091f5f62232/luma.core-1.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b084cbef3d266a8372294fb9a7faa514", "sha256": "0cf4726463485f55192ec02637eac1e943e296a83388066836cad9c02f7f3fae" }, "downloads": -1, "filename": "luma.core-1.12.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b084cbef3d266a8372294fb9a7faa514", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 51242, "upload_time": "2019-06-15T20:25:40", "url": "https://files.pythonhosted.org/packages/a7/36/f10ac3202221c479bae89e3226e57dcbf31c08f4d9e5743f32e193147a22/luma.core-1.12.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4378edb99cd12540b4e4a588969567ee", "sha256": "864a427de78bcc16758f4f4402a9e61f31cc8857bfae9aba8041159aaec3a491" }, "downloads": -1, "filename": "luma.core-1.12.0.tar.gz", "has_sig": false, "md5_digest": "4378edb99cd12540b4e4a588969567ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59393, "upload_time": "2019-06-15T20:25:37", "url": "https://files.pythonhosted.org/packages/1d/61/029db54f3d1604329569cdce171768684f774c5f191d7be43bc6a19d5bc0/luma.core-1.12.0.tar.gz" } ] }