{ "info": { "author": "['Diemer, Jens', 'Grebs, Christopher', 'Herzog, Manuel', 'Ranta-aho, Perttu']", "author_email": "pylucid@jensdiemer.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 1.11", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License (GPL)", "Operating System :: OS Independent", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3 :: Only", "Topic :: Database :: Front-Ends", "Topic :: Documentation", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Internet :: WWW/HTTP :: Site Management", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application" ], "description": "=============\nabout PyLucid\n=============\n\nPyLucid is an Open Source web content management system written in Python using Django-CMS.\n\nIt's more a alternative for `djangocms-installer `_\n\nThe goal is to simplify the Django-CMS setup.\n\nPyLucid delivers ready-to-use compiled Twitter Bootstrap v4 (Licensed under MIT) with some simple templates directly.\n\nPyLucid is licensed under GNU General Public License v3 or later (GPLv3+)\n\nTry, fork and contribute! ;)\n\n+--------------------------------------+---------------------------------------------------+\n| |Build Status on travis-ci.org| | `travis-ci.org/jedie/PyLucid`_ |\n+--------------------------------------+---------------------------------------------------+\n| |Coverage Status on coveralls.io| | `coveralls.io/r/jedie/PyLucid`_ |\n+--------------------------------------+---------------------------------------------------+\n| |Requirements Status on requires.io| | `requires.io/github/jedie/PyLucid/requirements/`_ |\n+--------------------------------------+---------------------------------------------------+\n\n.. |Build Status on travis-ci.org| image:: https://travis-ci.org/jedie/PyLucid.svg?branch=master\n.. _travis-ci.org/jedie/PyLucid: https://travis-ci.org/jedie/PyLucid/\n.. |Coverage Status on coveralls.io| image:: https://s3.amazonaws.com/assets.coveralls.io/badges/coveralls_64.svg?branch=master\n.. _coveralls.io/r/jedie/PyLucid: https://coveralls.io/r/jedie/PyLucid\n.. |Requirements Status on requires.io| image:: https://requires.io/github/jedie/PyLucid/requirements.svg?branch=master\n.. _requires.io/github/jedie/PyLucid/requirements/: https://requires.io/github/jedie/PyLucid/requirements/\n\n-------\ninstall\n-------\n\n1. bootstrap PyLucid virtualenv\n===============================\n\n::\n\n # download bootstrap file:\n /home/FooBar$ wget https://github.com/jedie/PyLucid/raw/master/pylucid/pylucid_boot.py\n\n # Create virtualenv with all needed packages:\n /home/FooBar$ python3 pylucid_boot.py boot ~/PyLucid-env\n\n2. use the created PyLucid virtualenv\n=====================================\n\n::\n\n # Go into created virtualenv:\n /home/FooBar$ cd ~/PyLucid-env\n\n # activate the env:\n ~/PyLucid-env $ source bin/activate\n\n # Start the interactive admin shell:\n (PyLucid-env) ~/PyLucid-env $ pylucid_admin\n\n pylucid_admin.py shell v3.0.0\n Type help or ? to list commands.\n\n pylucid_admin.py>\n\n3. create a page instance\n=========================\n\nA page instance is a django project with own settings, for easy start a own web page.\nCreate a page instance in the interactive admin shell:\n\n::\n\n pylucid_admin.py> create_page_instance ~/page_instance you_project_name\n ...\n pylucid_admin.py> quit\n\n # Go into created page instance\n (PyLucid_env) ~/PyLucid_env $ cd ~/page_instance/\n\n # Create cache tables\n (PyLucid_env) ~/page_instance $ ./manage.py createcachetable\n\n # init database\n (PyLucid_env) ~/page_instance $ ./manage.py migrate\n\n # Create a super user\n (PyLucid_env) ~/page_instance $ ./manage.py createsuperuser\n\n # Copies all static files together:\n (PyLucid_env) ~/page_instance $ ./manage.py collectstatic\n\n # run developer server:\n (PyLucid_env) ~/page_instance $ ./manage.py runserver\n\n------\nupdate\n------\n\nA general overview:\n\n* update environment\n\n* migrate database\n\n* collect static files\n\n* Update you own templates/styles (not always needed)\n\nLooks like this:\n\n::\n\n # Go into created virtualenv:\n /home/FooBar$ cd ~/PyLucid-env\n\n # activate the env:\n ~/PyLucid-env $ source bin/activate\n\n # Start the interactive admin shell and update environment:\n (PyLucid-env) ~/PyLucid-env $ pylucid_admin\n\n pylucid_admin.py shell v3.0.0\n Type help or ? to list commands.\n\n pylucid_admin.py> update_env\n ...\n pylucid_admin.py> quit\n\n # Go into created page instance\n (PyLucid_env) ~/PyLucid_env $ cd ~/page_instance/\n\n # init database\n (PyLucid_env) ~/page_instance $ ./manage.py migrate\n\n # Copies all static files together:\n (PyLucid_env) ~/page_instance $ ./manage.py collectstatic\n\n**Note:** Check 'Backward-incompatible changes' below!\n\n-------------------\nfurther information\n-------------------\n\nrun test project\n================\n\nYou can run a test project with the django developer server:\n\n::\n\n (PyLucid-env) ~/PyLucid-env $ pylucid_admin run_test_project_dev_server\n\nbootstrap manually\n==================\n\nNote: You can install PyLucid manually via PyPi package:\n\n* create virtualenv\n\n* install pylucid via pip from PyPi\n\n* run ``pylucid_admin update_env``\n\npylucid_boot.py - interactive shell\n===================================\n\n``pylucid_boot.py`` is a interactive shell with command completion.\nYou can just start it and do this:\n\n::\n\n /home/FooBar$ python3 pylucid_boot.py\n\n pylucid_boot.py shell v0.2.0\n Type help or ? to list commands.\n\n pylucid_boot.py> ?\n\n Hint: All commands can be called directly from commandline.\n e.g.: $ ./pylucid_boot.py help\n\n Use to command completion.\n\n Documented commands (type help ):\n ========================================\n boot boot_developer help quit\n\npylucid_admin.py - interactive shell\n====================================\n\n``pylucid_admin.py`` is a interactive shell with command completion, e.g.:\n\n::\n\n (PyLucid_env) ~/PyLucid_env $ pylucid_admin\n Activated virtualenv detected: '/home/foobar/PyLucid-env' (/home/foobar/PyLucid-env/bin/python3)\n\n pylucid_admin.py shell v0.2.0\n Type help or ? to list commands.\n\n pylucid_admin.py> ?\n\n Hint: All commands can be called directly from commandline.\n e.g.: $ ./pylucid_admin.py help\n\n Use to command completion.\n\n Documented commands (type help ):\n ========================================\n change_editable_address pip_freeze run_test_project_dev_server\n create_page_instance pytest update_env\n help quit upgrade_requirements\n\n-----------------------------------\nExternal applications configuration\n-----------------------------------\n\nDependency applications may need configuration to work properly.\n\nPlease, refer to each application documentation on details.\n\n* djangocms-blog: `https://djangocms-blog.readthedocs.io/en/latest/installation.html#minimal-configuration `_\n\n* django-filer: `https://django-filer.readthedocs.io `_\n\n* django-meta: `https://github.com/nephila/django-meta#installation `_\n\n* django-meta-mixin: `https://github.com/nephila/django-meta-mixin#installation `_\n\n* django-parler: `https://django-parler.readthedocs.io/en/latest/quickstart.html#configuration `_\n\n* django-taggit-autosuggest: `https://bitbucket.org/fabian/django-taggit-autosuggest `_\n\n* aldryn-search: `https://github.com/aldryn/aldryn-search#usage `_\n\n* haystack: `http://django-haystack.readthedocs.io/en/stable/ `_\n\n* twitter bootstrap: `https://getbootstrap.com/docs/ `_\n\n-----------------------------\nBackward-incompatible changes\n-----------------------------\n\nOn every update: Run the steps from section 'update': see above.\n\nv3.0 to v3.1\n============\n\nTwitter bootstrap updated from v3 to v4: update you own templates/styles.\n\nv2.1 to v3.0\n============\n\nCreate a new, fresh PyLucid environment and a new page instance. See \"install\" section above.\nTransfer settings e.g.: Database connection information.\n\nJust run \"migrations\" and \"collectstatic\" and update you own templates/styles.\n\nOlder changes are here: `https://www.pylucid.org/de/blog/tag/backward-incompatible/ `_\n\n-----------------\nCompatible Matrix\n-----------------\n\n+---------+------------+-----------+----------+\n| PyLucid | Django-CMS | Django | Python |\n+---------+------------+-----------+----------+\n| V3.0 | V3.4 LTS | V1.11 LTS | 3.5, 3.6 |\n+---------+------------+-----------+----------+\n| v2.1 | v3.3 | v1.8 LTS | 3.4, 3.5 |\n+---------+------------+-----------+----------+\n| v2.0 | v3.2 | v1.8 LTS | 3.4, 3.5 |\n+---------+------------+-----------+----------+\n| <=v1.6 | - | v1.6 | 2.6, 2.7 |\n+---------+------------+-----------+----------+\n\n---------------\nRelease History\n---------------\n\n* `compare v3.1.5...master `_ - **dev** \n\n * TBC\n\n* `03.10.2019 - v3.1.5 `_:\n\n * Update requirements\n\n* `11.06.2019 - v3.1.4 `_:\n\n * Update requirements, e.g.: django==1.11.21, djangocms-blog==0.9.9, djangocms-history==1.1.0\n\n * Bugfix: include missing pylucid installer in PyPi package\n\n* `19.09.2018 - v3.1.3 `_:\n\n * Update requirements, e.g.: django==1.11.15, djangocms-blog==0.9.5\n\n * Bugfix 'run_test_project_dev_server'\n\n * setup warnings\n\n * updates for new bootstrap_env API\n\n* `03.04.2018 - v3.1.2 `_:\n\n * Update requirements, e.g.: Django v1.11.12, Django-CMS v3.4.6, Django-CMS-Blog v0.9.3\n\n * Update bootstrap file (via 'update_own_boot_file' in dev. mode)\n\n* `09.03.2018 - v3.1.1 `_:\n\n * reactivate `django-processinfo `_\n\n* `09.03.2018 - v3.1.0 `_:\n\n * colorize pylucid boot/admin output\n\n * update twitter bootstrap v3 with v4\n\n * create dummy pages while running \"run_test_project_dev_server\"\n\n * requirement updates\n\n* `06.03.2018 - v3.0.2 `_:\n\n * update requirements (django v1.11.11 and others)\n\n * pylucid boot/admin: Better 'help' list: print first DocString line, too.\n\n* `05.03.2018 - v3.0.1 `_:\n\n * Activate CurrentSiteMiddleware and use request.site.name in footer\n\n* `03.03.2018 - v3.0.0 `_:\n\n * Update to Django-CMS v3.4.x LTS, Django v1.11 LTS\n\n * rewrite bootstrap\n\n * NEW: interactive shell ``pylucid_admin``\n\n* `12.Sep.2016 - v2.1.2 `_:\n\n * Changed to official `https://pypi.org/project/djangocms-htmlsitemap/ `_ PyPi Package.\n\n* `04.Sep.2016 - v2.1.1 `_:\n\n * Update: pillow, django-debug-toolbar, django-compressor, sqlparse\n\n* `v2.1.0.beta.0 `_:\n\n * switch from django-cms v3.2 to v3.3\n\n * move from `cmsplugin-htmlsitemap `_ to `djangocms-htmlsitemap `_ \n\n * WARNING: A migration will not be done! You have to migrate by hand and delete the database table *cmsplugin_htmlsitemap_htmlsitemap* ;)\n\n* `28.Dec.2015 - v2.0.x beta `_:\n\n * rewrite to use Django-CMS\n\n* `12.Feb.2015 - v1.6.x `_:\n\n * v1.6.x is the last PyLucid release that doesn't based on Django-CMS\n\n * switch from django 1.4 to 1.6\n\n* `18.Jun.2012 - v1.0.x `_:\n\n * switch from django 1.3 to 1.4\n\n* `22.Sep.2007 - v0.8.0.beta `_:\n\n * PyLucid.org used the first v0.8 Beta Version who used django\n\n* `21.Apr.2005 - v0.0.1 `_:\n\n * first Version, only CGI script ListOfNewSides for lucidCMS (PHP based)\n\n(Not all old releases are listed.)\n\nFor older PyLucid history, look at:\n\n* `http://www.pylucid.org/permalink/30/development-history#genesis `_\n\n========\ndonation\n========\n\n* `paypal.me/JensDiemer `_\n\n* `Flattr This! `_\n\n* Send `Bitcoins `_ to `1823RZ5Md1Q2X5aSXRC5LRPcYdveCiVX6F `_\n\n=====\nlinks\n=====\n\n+----------------------+------------------------------+\n| Homepage | `http://www.pylucid.org`_ |\n+----------------------+------------------------------+\n| Sourcecode @ GitHub | `github.com/jedie/PyLucid`_ |\n+----------------------+------------------------------+\n| Python Package Index | `pypi.org/project/PyLucid/`_ |\n+----------------------+------------------------------+\n| IRC | `#pylucid on freenode.net`_ |\n+----------------------+------------------------------+\n\n.. _http://www.pylucid.org: http://www.pylucid.org\n.. _github.com/jedie/PyLucid: https://github.com/jedie/PyLucid\n.. _pypi.org/project/PyLucid/: https://pypi.org/project/PyLucid/\n.. _#pylucid on freenode.net: http://www.pylucid.org/permalink/304/irc-channel\n\n", "description_content_type": "", "docs_url": null, "download_url": "http://www.pylucid.org/en/download/", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.pylucid.org", "keywords": "", "license": "", "maintainer": "Jens Diemer", "maintainer_email": "", "name": "PyLucid", "package_url": "https://pypi.org/project/PyLucid/", "platform": "", "project_url": "https://pypi.org/project/PyLucid/", "project_urls": { "Download": "http://www.pylucid.org/en/download/", "Homepage": "http://www.pylucid.org" }, "release_url": "https://pypi.org/project/PyLucid/3.1.5/", "requires_dist": [ "bootstrap-env (>=1.0.0rc17)" ], "requires_python": ">=3.5", "summary": "PyLucid CMS", "version": "3.1.5" }, "last_serial": 5924557, "releases": { "0.10.1.0103": [ { "comment_text": "", "digests": { "md5": "e66e10abe64ce7ab2edd88349dd27a68", "sha256": "547b9627e0f29dd39cb77c4d70f8e1eb43a51bcc58ef7dcdd631acf5b31a9303" }, "downloads": -1, "filename": "PyLucid-0.10.1.0103.tar.gz", "has_sig": false, "md5_digest": "e66e10abe64ce7ab2edd88349dd27a68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 516604, "upload_time": "2012-01-03T13:35:27", "url": "https://files.pythonhosted.org/packages/84/d1/a93e074f8d4a87fb2b6ad29f370ba01ad435615fd343437a3bb90ae3b3f8/PyLucid-0.10.1.0103.tar.gz" } ], "0.10.2.0106": [ { "comment_text": "", "digests": { "md5": "5975d4476497ff78886215057d971833", "sha256": "aba880c35728ebf00b1f12ab0d3d7e2ecacf0e482dd35d65be515e3fbb3c9687" }, "downloads": -1, "filename": "PyLucid-0.10.2.0106.tar.gz", "has_sig": false, "md5_digest": "5975d4476497ff78886215057d971833", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 517493, "upload_time": "2012-01-06T15:06:21", "url": "https://files.pythonhosted.org/packages/0e/9a/9dcfbd5d01bf96c121295e6a015999c9891c6f86e7396e43cbdf8e708b03/PyLucid-0.10.2.0106.tar.gz" } ], "0.11.4.0423": [ { "comment_text": "", "digests": { "md5": "96379959a261b584dedbed5928ef4f87", "sha256": "0fdf67b6800338c709c5b7fc3ba5a24e3bf8ccac8919191d09218f9e3704008d" }, "downloads": -1, "filename": "PyLucid-0.11.4.0423.tar.gz", "has_sig": false, "md5_digest": "96379959a261b584dedbed5928ef4f87", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 518979, "upload_time": "2012-04-23T11:44:11", "url": "https://files.pythonhosted.org/packages/ce/01/3416fa54b3a5cbf8be2ac284769faad23b1d2fd4582b3220736452a1eb51/PyLucid-0.11.4.0423.tar.gz" } ], "0.12.1.0524": [ { "comment_text": "", "digests": { "md5": "3eeb6e1fbe37b29b2d5c82a784a5016c", "sha256": "1d5ca8727d19d97a999d507a0e2ab5014ee950e424c94f9daa52e7f9fc40e50c" }, "downloads": -1, "filename": "PyLucid-0.12.1.0524.tar.gz", "has_sig": false, "md5_digest": "3eeb6e1fbe37b29b2d5c82a784a5016c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 518461, "upload_time": "2012-06-01T17:59:42", "url": "https://files.pythonhosted.org/packages/3c/4f/31359566413a4d2f1bfd20c33a9bd8095c9a822c087a4a9ea713fcb93fa9/PyLucid-0.12.1.0524.tar.gz" } ], "0.3.1": [], "0.3.2": [], "0.3.3": [], "0.4": [], "0.4.1": [], "0.6.0 stable": [], "0.6.1b stable": [], "0.7.0": [], "0.7.1": [], "0.8.0": [ { "comment_text": "incl. django and pygments", "digests": { "md5": "e39c654c308db9c3c1fb659e6ea98a5a", "sha256": "e2fbd4d4c5c4f30f05f4dccd43d8914832602334ee67f60a4844f03bf167e7fb" }, "downloads": -1, "filename": "PyLucid_v0.8.0_full.tar.bz2", "has_sig": false, "md5_digest": "e39c654c308db9c3c1fb659e6ea98a5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2128119, "upload_time": "2008-02-14T16:18:55", "url": "https://files.pythonhosted.org/packages/be/2e/e9743fb87aa07e8807330a9fdf864ef3b5ed44c8a0f01bbe0119e42a228c/PyLucid_v0.8.0_full.tar.bz2" }, { "comment_text": "without django and pygments", "digests": { "md5": "8eb9ad26564e354969c2e26baca7eb39", "sha256": "636b66cca1c33f23b53296a0392535c93a3e54b180fafe9453e8dbc39c54b545" }, "downloads": -1, "filename": "PyLucid_v0.8.0_lite.tar.bz2", "has_sig": false, "md5_digest": "8eb9ad26564e354969c2e26baca7eb39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 584341, "upload_time": "2008-02-14T16:18:13", "url": "https://files.pythonhosted.org/packages/97/2b/c45bbc1b4ff8436b24f111118cca000691d80f6c05357ab7dfae47c4f776/PyLucid_v0.8.0_lite.tar.bz2" } ], "0.8.0RC1": [], "0.8.0RC2": [ { "comment_text": "", "digests": { "md5": "468779bf8e06632eeff5c344384c957e", "sha256": "bb90eb353549c198e367265a48074e93184f74ef3f102f550c572dff666e1d4c" }, "downloads": -1, "filename": "PyLucid-0.8.0RC2.tar.gz", "has_sig": false, "md5_digest": "468779bf8e06632eeff5c344384c957e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2671236, "upload_time": "2007-12-12T13:17:01", "url": "https://files.pythonhosted.org/packages/77/8f/5eb3e1baf5ac8fa30a13be53cc22cf51094a3d64ce31e38d912480c2aeb6/PyLucid-0.8.0RC2.tar.gz" } ], "0.8.0alpha1": [], "0.8.0alpha3": [], "0.8.0beta1": [], "0.8.5": [], "0.8.5RC1": [ { "comment_text": "", "digests": { "md5": "10acba5b057c3553855138c777375580", "sha256": "b31d2b52fb47a9ee62330cc22d89da4220dc42bc8d5ffb2deb8158ec6d50ee67" }, "downloads": -1, "filename": "PyLucid-0.8.5RC1.tar.gz", "has_sig": false, "md5_digest": "10acba5b057c3553855138c777375580", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4075064, "upload_time": "2008-08-20T15:38:27", "url": "https://files.pythonhosted.org/packages/5a/12/791229a2f55460074507f1da782141c9023a5c4fdd04712456f723e5d80c/PyLucid-0.8.5RC1.tar.gz" } ], "0.8.6rc1": [], "0.8.7": [], "0.9.0.0517": [ { "comment_text": "", "digests": { "md5": "357d91e1d7a0fb8ef2a4c5dcd2ac42fc", "sha256": "939fcc15b4b4776d7c40d98a070c9284088424e77e24f45ac08608ffe881fad3" }, "downloads": -1, "filename": "PyLucid-0.9.0.0517.tar.gz", "has_sig": false, "md5_digest": "357d91e1d7a0fb8ef2a4c5dcd2ac42fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 390458, "upload_time": "2011-05-17T16:22:26", "url": "https://files.pythonhosted.org/packages/97/e6/5b140b365ad6a3055be40703f972977c76fa6906869771c5567718e08647/PyLucid-0.9.0.0517.tar.gz" } ], "0.9.0.0714": [ { "comment_text": "", "digests": { "md5": "644dec7cad54c8436e83e84e6b6729b9", "sha256": "7d5f852077c9b9bc86cf1fcdc7f9062ec694aa4910d091cb0b4d3efe0b3e6e8f" }, "downloads": -1, "filename": "PyLucid-0.9.0.0714.tar.gz", "has_sig": false, "md5_digest": "644dec7cad54c8436e83e84e6b6729b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 471996, "upload_time": "2011-07-14T18:21:51", "url": "https://files.pythonhosted.org/packages/ed/ec/3a108009e6543282c9c1e5d19788719e753cc52a76117c4f537b717f28f1/PyLucid-0.9.0.0714.tar.gz" } ], "0.9.0.0715": [ { "comment_text": "", "digests": { "md5": "33a7704b774a2c205d6bfc0bf08822fb", "sha256": "4a450055ef3da87f27a922c09ea2299ba6d0d356a98a7afce6af7dac1e022c23" }, "downloads": -1, "filename": "PyLucid-0.9.0.0715.tar.gz", "has_sig": false, "md5_digest": "33a7704b774a2c205d6bfc0bf08822fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 473697, "upload_time": "2011-07-16T01:19:24", "url": "https://files.pythonhosted.org/packages/7f/ad/d65dc4fe100c9b0f5f1b98598e8bc88ddbeb796874176bf50b29ab91ecaf/PyLucid-0.9.0.0715.tar.gz" } ], "0.9.0.0808": [ { "comment_text": "", "digests": { "md5": "a354dc6ebcbd37a427fb046c18151ad6", "sha256": "f9f4b779f92767f8d5dd9b0ce5928e2c4afb5185608c02b032315d6c3a3b50ba" }, "downloads": -1, "filename": "PyLucid-0.9.0.0808.tar.gz", "has_sig": false, "md5_digest": "a354dc6ebcbd37a427fb046c18151ad6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 475119, "upload_time": "2011-08-08T11:29:47", "url": "https://files.pythonhosted.org/packages/b4/7e/618e219b84f5f0330bef56334c40c1ee27bcbf003bd965eb1f2a660ea15b/PyLucid-0.9.0.0808.tar.gz" } ], "0.9.0.RC1.SVN-2580": [], "0.9.0.RC10.0916": [ { "comment_text": "", "digests": { "md5": "d481feeaf9470935beac288215b5ac9b", "sha256": "4b7300b22bed0465f31dbdbd10f1ab58f2fe23713c31b22d1a45443b7f16fd17" }, "downloads": -1, "filename": "PyLucid-0.9.0.RC10.0916.tar.gz", "has_sig": false, "md5_digest": "d481feeaf9470935beac288215b5ac9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 220155, "upload_time": "2010-09-16T18:05:44", "url": "https://files.pythonhosted.org/packages/6a/a1/32449747a006e6d20f6d27cf3d8fa8b6b19cd07c4f6b0e87c3e5ad67c25f/PyLucid-0.9.0.RC10.0916.tar.gz" } ], "0.9.0.RC11.0924": [ { "comment_text": "", "digests": { "md5": "43f9fae497b10b1c138a2757c0aa2d12", "sha256": "e51202e04bf926a54a33e852c9c04fe1bdc70c62520cc955532b4b6687911e16" }, "downloads": -1, "filename": "PyLucid-0.9.0.RC11.0924.tar.gz", "has_sig": false, "md5_digest": "43f9fae497b10b1c138a2757c0aa2d12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 222746, "upload_time": "2010-09-24T17:01:17", "url": "https://files.pythonhosted.org/packages/72/3d/9656d1c3a501e373f8ae7a001641188f1426ae82b0ac9867403d3d73e3b3/PyLucid-0.9.0.RC11.0924.tar.gz" } ], "0.9.0.RC12.0928": [ { "comment_text": "", "digests": { "md5": "aacb5cfab5e029ffd7dcbdbfce8b8115", "sha256": "60190afe17cde93e0b3a5e74c9bab5d97a2bee826b87f3839a8d49521f059561" }, "downloads": -1, "filename": "PyLucid-0.9.0.RC12.0928.tar.gz", "has_sig": false, "md5_digest": "aacb5cfab5e029ffd7dcbdbfce8b8115", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 403652, "upload_time": "2010-09-28T16:04:16", "url": "https://files.pythonhosted.org/packages/a7/e9/258b27f8284e0767c97a61ef0afefb268d839728af519587bbe61ec15f0b/PyLucid-0.9.0.RC12.0928.tar.gz" } ], "0.9.0.RC2.svn2609": [ { "comment_text": "", "digests": { "md5": "3b4fc551a5a3ac012292281920007308", "sha256": "45ed95082dfc024cd296ed02418350c68853a30ac2ee07adb731671e2b393a64" }, "downloads": -1, "filename": "PyLucid-0.9.0.RC2.svn2609.tar.gz", "has_sig": false, "md5_digest": "3b4fc551a5a3ac012292281920007308", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 455045, "upload_time": "2010-04-04T21:39:37", "url": "https://files.pythonhosted.org/packages/f1/5d/dacb1f494c8f8eedd0699291949ffffc62f7ff204ae634ca07ecac83b352/PyLucid-0.9.0.RC2.svn2609.tar.gz" } ], "0.9.0.RC3.git-fbba4c7": [ { "comment_text": "", "digests": { "md5": "a6f6220e5543ba283427e07fe73cbcb2", "sha256": "801915fb49968fc68c16f85964fb2a44f737388a1840b35d65725958bff08387" }, "downloads": -1, "filename": "PyLucid-0.9.0.RC3.git-fbba4c7.tar.gz", "has_sig": false, "md5_digest": "a6f6220e5543ba283427e07fe73cbcb2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 187803, "upload_time": "2010-04-29T17:24:50", "url": "https://files.pythonhosted.org/packages/77/bf/3a274885855b684320cf8fa2bb564e2e5413618b88692a52f125e25b91da/PyLucid-0.9.0.RC3.git-fbba4c7.tar.gz" } ], "0.9.0.RC4.git-be75d96": [ { "comment_text": "", "digests": { "md5": "e24f3caa5df6cd5da66fd583c6535b97", "sha256": "ea35c9801be2c88f89963fe22b67fb89df9e9d48fec535dbb274a0915382e2d3" }, "downloads": -1, "filename": "PyLucid-0.9.0.RC4.git-be75d96.tar.gz", "has_sig": false, "md5_digest": "e24f3caa5df6cd5da66fd583c6535b97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 204265, "upload_time": "2010-07-07T11:09:10", "url": "https://files.pythonhosted.org/packages/40/99/15fac1846344e87c1063faadcc84ffb37fa7d77c4b2d680609962a7e6501/PyLucid-0.9.0.RC4.git-be75d96.tar.gz" } ], "0.9.0.RC5.git-87dd033": [ { "comment_text": "", "digests": { "md5": "7dbb39befc7517c8007ee7fc890f200f", "sha256": "8f269c367b62951288bea4a6e7e764bde7e8309bfbfff6f1e4649d8cdda88a46" }, "downloads": -1, "filename": "PyLucid-0.9.0.RC5.git-87dd033.tar.gz", "has_sig": false, "md5_digest": "7dbb39befc7517c8007ee7fc890f200f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 204576, "upload_time": "2010-07-08T16:53:32", "url": "https://files.pythonhosted.org/packages/c0/81/cc82297961a97debdbc8190d34ee9b3e1b7383cd5f57590723d2a9c77c7b/PyLucid-0.9.0.RC5.git-87dd033.tar.gz" } ], "0.9.0.RC7.20100827.1542": [ { "comment_text": "", "digests": { "md5": "914a54426403a20eff6aa0933bb93dfc", "sha256": "acff16ef904f0fee52d6b0fe8612a1c652645628502863eb85f71681064249db" }, "downloads": -1, "filename": "PyLucid-0.9.0.RC7.20100827.1542.tar.gz", "has_sig": false, "md5_digest": "914a54426403a20eff6aa0933bb93dfc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 213936, "upload_time": "2010-08-27T17:52:52", "url": "https://files.pythonhosted.org/packages/d3/45/c5c43593f068238e272011562670037420adad21cf73eb554e8829c6c4d9/PyLucid-0.9.0.RC7.20100827.1542.tar.gz" } ], "0.9.0.RC8.0902": [ { "comment_text": "", "digests": { "md5": "72cd9d767afb400586d73826f791f1dd", "sha256": "b63c6790a842599272a6f70f022d87bf07b53db8ca62a42a737b46bc9360d291" }, "downloads": -1, "filename": "PyLucid-0.9.0.RC8.0902.tar.gz", "has_sig": false, "md5_digest": "72cd9d767afb400586d73826f791f1dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 217239, "upload_time": "2010-09-02T18:03:04", "url": "https://files.pythonhosted.org/packages/dd/d6/e181303e484a6fa8881e92bf42bed057510055aa1c9dd0333d0b19dd17d6/PyLucid-0.9.0.RC8.0902.tar.gz" } ], "0.9.0.RC9.0906": [ { "comment_text": "", "digests": { "md5": "6ad94aa5ee34df1b7f3f7684e5082a70", "sha256": "cdcde655734039fbd982529db9c88bedf9d3251bb924d7d11896dfa94debf2c2" }, "downloads": -1, "filename": "PyLucid-0.9.0.RC9.0906.tar.gz", "has_sig": false, "md5_digest": "6ad94aa5ee34df1b7f3f7684e5082a70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 219058, "upload_time": "2010-09-06T09:29:07", "url": "https://files.pythonhosted.org/packages/5c/4a/9ee3913f91a58f3d62e4e8434e4fa903a3c53b6b325ae44d6a100fbdd2c0/PyLucid-0.9.0.RC9.0906.tar.gz" } ], "0.9.0.RC9.0913": [ { "comment_text": "", "digests": { "md5": "40af1f1364a90e102b1500092d3e7a6e", "sha256": "0d0a75a3d76d3bb36a61fde0a4f2fba16911bd994e5800b746fdc91710798780" }, "downloads": -1, "filename": "PyLucid-0.9.0.RC9.0913.tar.gz", "has_sig": false, "md5_digest": "40af1f1364a90e102b1500092d3e7a6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 219611, "upload_time": "2010-09-13T15:28:25", "url": "https://files.pythonhosted.org/packages/da/fe/349204ddc9fe93209bbac4929632388fbdfcb315eb92875a650adecbafbb/PyLucid-0.9.0.RC9.0913.tar.gz" } ], "0.9.0.alpha": [], "0.9.0.beta": [], "0.9.0.pre-alpha": [], "1.0.0.0604": [ { "comment_text": "", "digests": { "md5": "92ba73d3ea23c94bd7187b3605e31244", "sha256": "76304cd8247258b54fecc91dce5ad736f70dd799acb05bece6d959925a9e8f45" }, "downloads": -1, "filename": "PyLucid-1.0.0.0604.tar.gz", "has_sig": false, "md5_digest": "92ba73d3ea23c94bd7187b3605e31244", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 464354, "upload_time": "2012-06-04T12:12:22", "url": "https://files.pythonhosted.org/packages/1b/c0/39e5cc086b792e9f124246db314df72af9f11b5c542c4a2ba3f0d7899199/PyLucid-1.0.0.0604.tar.gz" } ], "1.0.3.0618": [ { "comment_text": "", "digests": { "md5": "c48b7c3e241159a9b0da0d551b66a9f2", "sha256": "c385765ad4d665b67d531e807c8b15192860a4a895971205b37a2054f2282278" }, "downloads": -1, "filename": "PyLucid-1.0.3.0618.tar.gz", "has_sig": false, "md5_digest": "c48b7c3e241159a9b0da0d551b66a9f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 464389, "upload_time": "2012-06-18T10:05:47", "url": "https://files.pythonhosted.org/packages/ca/d7/f57a3505d06d5a869b1c6590a7f249d6face89f55400b2405c0ffdb72ba6/PyLucid-1.0.3.0618.tar.gz" } ], "1.0.4.0702": [ { "comment_text": "", "digests": { "md5": "5b42692f31b6b0d97cb26708369c38cb", "sha256": "7f11f97d17ea08fb6db2cf9bd81d001e0827ac3d55119860df06ae3d7b113dcc" }, "downloads": -1, "filename": "PyLucid-1.0.4.0702.tar.gz", "has_sig": false, "md5_digest": "5b42692f31b6b0d97cb26708369c38cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 468821, "upload_time": "2012-07-02T15:03:46", "url": "https://files.pythonhosted.org/packages/0f/8b/ceac8fd1a2fd261ea4aecf4f0873225a384264fcb4ade2b26771b4ebae5c/PyLucid-1.0.4.0702.tar.gz" } ], "1.1.1.0711": [ { "comment_text": "", "digests": { "md5": "eb4973c6f3896e5907536498f7626100", "sha256": "2fbc87832d8d4aff8901801a8a9d9c40f6287943ae108f7ed9a3c5a85ed43c7d" }, "downloads": -1, "filename": "PyLucid-1.1.1.0711.tar.gz", "has_sig": false, "md5_digest": "eb4973c6f3896e5907536498f7626100", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 475228, "upload_time": "2012-07-11T10:40:37", "url": "https://files.pythonhosted.org/packages/1e/ab/946b0eb25e3b8cf7c74e0b09d8f8193552a988e253cec6005a3355c169e8/PyLucid-1.1.1.0711.tar.gz" } ], "1.2.0.0803": [ { "comment_text": "", "digests": { "md5": "e148a639fbdfe1c01aa19d394e2c9a11", "sha256": "5fbc282add6728ad14bb66d1a41c3e03ae7ae9199ee8ebf4f58132dc62b8b907" }, "downloads": -1, "filename": "PyLucid-1.2.0.0803.tar.gz", "has_sig": false, "md5_digest": "e148a639fbdfe1c01aa19d394e2c9a11", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 477728, "upload_time": "2012-08-03T10:39:30", "url": "https://files.pythonhosted.org/packages/3a/8b/d543e7dd40b2839d8ad1858edf3225c9755421ceaf8759b601a2e8ca01b2/PyLucid-1.2.0.0803.tar.gz" } ], "1.2.1.0821": [ { "comment_text": "", "digests": { "md5": "fccf35111cc7d1b41ac804ed642dbc25", "sha256": "9a85f3c46b98b3f0792d1b5545ea5dd0e41f8f28aa3db9cb2127b4bdbf811671" }, "downloads": -1, "filename": "PyLucid-1.2.1.0821.tar.gz", "has_sig": false, "md5_digest": "fccf35111cc7d1b41ac804ed642dbc25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 478687, "upload_time": "2012-08-21T09:03:36", "url": "https://files.pythonhosted.org/packages/d5/28/df029b116a2ca100a1999bfcd4420721b604f9c94fd4d06736b04b2db1b4/PyLucid-1.2.1.0821.tar.gz" } ], "1.4.2.1120": [ { "comment_text": "", "digests": { "md5": "56efd10103289a2a0f974650e09aa99a", "sha256": "e5186e92fb0642cca68ed5e106e98c700bf4c9ee060678b399a17afcda33a322" }, "downloads": -1, "filename": "PyLucid-1.4.2.1120.tar.gz", "has_sig": false, "md5_digest": "56efd10103289a2a0f974650e09aa99a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 480419, "upload_time": "2012-11-20T13:16:39", "url": "https://files.pythonhosted.org/packages/dd/d1/a45e6b202b528ecda71c2abd3bfeeeee8e8988d4f21f47e5113a2a42c4eb/PyLucid-1.4.2.1120.tar.gz" } ], "1.5.0.0524": [ { "comment_text": "", "digests": { "md5": "4041fb7cd000f8786e5f1d42db2e116a", "sha256": "f78f884c0da185f14bf4590027e5e264c74eb87b6b90fe36c1838ed26fd53459" }, "downloads": -1, "filename": "PyLucid-1.5.0.0524.tar.gz", "has_sig": false, "md5_digest": "4041fb7cd000f8786e5f1d42db2e116a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 479995, "upload_time": "2013-05-24T22:34:57", "url": "https://files.pythonhosted.org/packages/5e/89/a306884b906b84b5aa82fda7f03db092ae1d8e17e774726ceb244397bcad/PyLucid-1.5.0.0524.tar.gz" } ], "1.6.0.0212": [ { "comment_text": "", "digests": { "md5": "4b56b52a73ed2981bb925fceedd07966", "sha256": "7c5a658c6951dc538802062efcfe38f10c3b5774d89e6ff0a43532250dc85936" }, "downloads": -1, "filename": "PyLucid-1.6.0.0212.tar.gz", "has_sig": false, "md5_digest": "4b56b52a73ed2981bb925fceedd07966", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 487910, "upload_time": "2015-02-12T13:50:07", "url": "https://files.pythonhosted.org/packages/fd/d9/6577f4dbd66befda45ba1bd46da35b4e99778f53f6f6e2d8e91e1603db12/PyLucid-1.6.0.0212.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "40f1600175cddf6e5aac263757a3bc82", "sha256": "29553c33a6f2b48d2bd6c07eca714c71314a669274aad846b325ca38a4512334" }, "downloads": -1, "filename": "PyLucid-1.6.1-py2.7.egg", "has_sig": false, "md5_digest": "40f1600175cddf6e5aac263757a3bc82", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 687337, "upload_time": "2015-08-11T12:35:28", "url": "https://files.pythonhosted.org/packages/9e/32/03d5329964ef2c3453638f2d1dc2d3262e66021ad983fd0b3ed78465b342/PyLucid-1.6.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d0b8da94712cbceab4b87fc85dab7667", "sha256": "efb3c73aa28fe7b163c816d4098845067a5f39e4c678b64fa1b93ab2b83a5e55" }, "downloads": -1, "filename": "PyLucid-1.6.1-py2-none-any.whl", "has_sig": false, "md5_digest": "d0b8da94712cbceab4b87fc85dab7667", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 711415, "upload_time": "2015-08-11T12:35:17", "url": "https://files.pythonhosted.org/packages/76/21/71c23f524568f879e4dadbe91860a8a0e9258c003f066e8ae03759e36c46/PyLucid-1.6.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "722d01ff64193c02b54349668366028e", "sha256": "bed6792bba3756f68ab92e1c0c0d90dfab4a7ca47ecb50a554f205a8d7800327" }, "downloads": -1, "filename": "PyLucid-1.6.1.tar.gz", "has_sig": false, "md5_digest": "722d01ff64193c02b54349668366028e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 486728, "upload_time": "2015-08-11T12:35:36", "url": "https://files.pythonhosted.org/packages/2b/03/62c226700cfb42f201e34e7dff7f6dd9ead1bcb4db90a926847f842304d2/PyLucid-1.6.1.tar.gz" } ], "2.0.0b0": [ { "comment_text": "", "digests": { "md5": "44100021faeea518c24ee1f1dbb01f75", "sha256": "3dd6889aaf99a8f67feade12dd70f35d9b9d00a69e457145453aada21a02f3ff" }, "downloads": -1, "filename": "PyLucid-2.0.0b0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "44100021faeea518c24ee1f1dbb01f75", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 503803, "upload_time": "2015-12-28T10:35:07", "url": "https://files.pythonhosted.org/packages/2e/1d/c748166cf9302b8a6812beb08f1882b7bea35aef3bc088139f652dc464cd/PyLucid-2.0.0b0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "336448e23d5ea63cc15f662f4e9068e3", "sha256": "5c349a46ec6c860cdc76f20a81684cb0b55def34f9a75440bbc5c3abd394e569" }, "downloads": -1, "filename": "PyLucid-2.0.0b0-py3.5.egg", "has_sig": false, "md5_digest": "336448e23d5ea63cc15f662f4e9068e3", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 494454, "upload_time": "2015-12-28T10:35:20", "url": "https://files.pythonhosted.org/packages/4a/3e/7714b5ec1a9c1405aaf54e3380bd2edcee02fa9f42bdb7ae559a93555d8a/PyLucid-2.0.0b0-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "486b2201f81fbe0a44db9eede512864b", "sha256": "8b2d00dc3b2c7d1cc78b36b2822282a672b9bae1e4fcea6432547389a8ab3f3c" }, "downloads": -1, "filename": "PyLucid-2.0.0b0.tar.gz", "has_sig": false, "md5_digest": "486b2201f81fbe0a44db9eede512864b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 458178, "upload_time": "2015-12-28T10:35:29", "url": "https://files.pythonhosted.org/packages/c9/a9/e1ad8afc741a9fbe730460aa719ba1ee08eca49f99692a7ff4ce5e32e41c/PyLucid-2.0.0b0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "bdb77a46b95025f836a30a7b3d84b0f2", "sha256": "93b51c31c63db03f5b26370c0df1f3ab8c1241bb8485e78c5b38feb2c88c5cb9" }, "downloads": -1, "filename": "PyLucid-2.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bdb77a46b95025f836a30a7b3d84b0f2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 509225, "upload_time": "2016-09-04T16:18:36", "url": "https://files.pythonhosted.org/packages/05/3e/1b2a266fe4cc19cd4b881d8dfe40bce030ab49147933f2128b321d8b75ee/PyLucid-2.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d769f6190022178f8ea4f4878c006580", "sha256": "33808d180d0ccef5b8e44436fb9b86714ff529738e0bd3be0d7f6f9845fe4aea" }, "downloads": -1, "filename": "PyLucid-2.1.1-py3.5.egg", "has_sig": false, "md5_digest": "d769f6190022178f8ea4f4878c006580", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 498894, "upload_time": "2016-09-04T16:18:45", "url": "https://files.pythonhosted.org/packages/6a/b3/46b74fb39464d9fd2328772a437c6fa4ea386f7e54e0b012d4af54feab4a/PyLucid-2.1.1-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "cf3ea0f59987889df4ff1b3d97bb720b", "sha256": "7c2e04a6ec4ab9314d0f382f2ef19fe6b9c838ce5363eeb1dc1313d608d4c2fd" }, "downloads": -1, "filename": "PyLucid-2.1.1.tar.gz", "has_sig": false, "md5_digest": "cf3ea0f59987889df4ff1b3d97bb720b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 464501, "upload_time": "2016-09-04T16:18:40", "url": "https://files.pythonhosted.org/packages/7f/3d/dfbe656500d78cc6885215ed660cdb522fdba2100112825d692282480809/PyLucid-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "868f0b3d94d83569b269ed19ab1aaa43", "sha256": "1fb828e486d87569a44c305d19338392c662d70ec32988eff3e23ac539ab7e2b" }, "downloads": -1, "filename": "PyLucid-2.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "868f0b3d94d83569b269ed19ab1aaa43", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 509192, "upload_time": "2016-09-12T17:16:59", "url": "https://files.pythonhosted.org/packages/07/06/2c56ed8684b7583d6400c221bbc1a9b4d037288090d6c1600b5b17eeca84/PyLucid-2.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0c6aef9319266b97992bff8000bdcf6d", "sha256": "b2302b690d3a343babdf42eb5126947ccc6383966950ad2deb390830aecbf87b" }, "downloads": -1, "filename": "PyLucid-2.1.2-py3.5.egg", "has_sig": false, "md5_digest": "0c6aef9319266b97992bff8000bdcf6d", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 498803, "upload_time": "2016-09-12T17:17:08", "url": "https://files.pythonhosted.org/packages/68/b4/546b3309b92fbc1af04d7387a22968bc0f327c9c95b7f5913f2facb07ca7/PyLucid-2.1.2-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "5de60763558915304dea29c366b8abe3", "sha256": "1fdac4d409936d01cf91987cfbff612bbeccdc9b0190e5a538f043eaf2a3e63b" }, "downloads": -1, "filename": "PyLucid-2.1.2.tar.gz", "has_sig": false, "md5_digest": "5de60763558915304dea29c366b8abe3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 464571, "upload_time": "2016-09-12T17:17:04", "url": "https://files.pythonhosted.org/packages/65/f0/7e093c712a5f9619b314631fbb084f2ecd04a69c73d165d7c6d820d300fb/PyLucid-2.1.2.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "37d67be0395bff9fcac12c3916c164ff", "sha256": "e0c99386db5a9750a3282bf4156b4e9c2051d0ec9bc9ac2e36a7e731e37ee899" }, "downloads": -1, "filename": "PyLucid-3.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "37d67be0395bff9fcac12c3916c164ff", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 142119, "upload_time": "2018-03-02T23:54:13", "url": "https://files.pythonhosted.org/packages/09/b6/cfdd56fc93aaac81e97b1b3ec3d97e71c7e4246a497553028949cce5a471/PyLucid-3.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e67680434efc095e846b20a1e3b46c13", "sha256": "37e325f9edbac612fb2b7d11d4598915490d3bb27527683820d997c4ede07fc4" }, "downloads": -1, "filename": "PyLucid-3.0.0-py3.6.egg", "has_sig": false, "md5_digest": "e67680434efc095e846b20a1e3b46c13", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 134836, "upload_time": "2018-03-02T23:54:20", "url": "https://files.pythonhosted.org/packages/b5/f2/e4ffa9453d151072c43f04cb8c39bfe62f93cb61a2fba7c11b9c07eaf200/PyLucid-3.0.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "e4cf50636f539d8cbf2ed33a0391b9b8", "sha256": "4ca3e9e0b46d254e4bb35b748701060238f7c8972f174795ec23a9ef08f1e64a" }, "downloads": -1, "filename": "PyLucid-3.0.0.tar.gz", "has_sig": false, "md5_digest": "e4cf50636f539d8cbf2ed33a0391b9b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 206526, "upload_time": "2018-03-02T23:54:17", "url": "https://files.pythonhosted.org/packages/24/dc/17304dbccbca5ca402d43adc1267f5094a58d97fe249513041b8cd3defc6/PyLucid-3.0.0.tar.gz" } ], "3.0.0.dev0": [ { "comment_text": "", "digests": { "md5": "5230c055716eff47d317d53fa8cf7a72", "sha256": "af85154e112315a5f062c0ba2da7481673ccfb0e2e45a3d234d873c8e4e463f7" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5230c055716eff47d317d53fa8cf7a72", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 160766, "upload_time": "2018-02-22T08:39:19", "url": "https://files.pythonhosted.org/packages/f4/9d/966648fdc106fadc4d8122a1bea939c3843a7323cb9f030dc2226af3dfd1/PyLucid-3.0.0.dev0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c6496e8ee98c326fe6fc71da60b0f8ac", "sha256": "bb6b256cc90e94f2e3c9e590f95b5496b2f6a9ab3f3e6b15007eb51fe0b1debc" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev0-py3.6.egg", "has_sig": false, "md5_digest": "c6496e8ee98c326fe6fc71da60b0f8ac", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 153989, "upload_time": "2018-02-22T08:39:23", "url": "https://files.pythonhosted.org/packages/d5/a0/088f3d9df92e09cacac9e61ef18669102226e8f3c704ffb11dffa68f5591/PyLucid-3.0.0.dev0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "e9dad8c65da5a9705249452eb48c068b", "sha256": "ded4d0296a7804a391bd0f424c253b63effa5ecc136b54d50157736e72a34f68" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev0.tar.gz", "has_sig": false, "md5_digest": "e9dad8c65da5a9705249452eb48c068b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 133340, "upload_time": "2018-02-22T08:39:21", "url": "https://files.pythonhosted.org/packages/1c/db/03e28ece1dcc28139f07c0f943fec1feba28e54773ebba203ee425f15ccb/PyLucid-3.0.0.dev0.tar.gz" } ], "3.0.0.dev1": [ { "comment_text": "", "digests": { "md5": "7b12cefc795f2a9f13ce8dc25637224d", "sha256": "7e5a772604e6ed782b42848720aee1ace9ea629396f5ed57931b198c5825072d" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7b12cefc795f2a9f13ce8dc25637224d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 161227, "upload_time": "2018-02-22T09:09:50", "url": "https://files.pythonhosted.org/packages/e3/3f/70f2621ae022d21f6efceb600aaa671559ba7cb6806e13094b179d3bae68/PyLucid-3.0.0.dev1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ac317bd7c3b88dda282ecf89ed21fba9", "sha256": "c116b70d77c3b43ee573c3da00236d4d7eb3c4ed6d870bdca054d3b9e254686f" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev1-py3.6.egg", "has_sig": false, "md5_digest": "ac317bd7c3b88dda282ecf89ed21fba9", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 154457, "upload_time": "2018-02-22T09:09:53", "url": "https://files.pythonhosted.org/packages/01/08/cabedfe30983feede7b2c714b481a07900fcf62ef242a5d7994b6d00b5ae/PyLucid-3.0.0.dev1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "1d2b2a0a77688de27e0a12b6de54eea5", "sha256": "e903bc3e00c89ab099f0af2a10587c6dd6907f1d2ba92a28508d2d22dc2dbd49" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev1.tar.gz", "has_sig": false, "md5_digest": "1d2b2a0a77688de27e0a12b6de54eea5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 133480, "upload_time": "2018-02-22T09:09:52", "url": "https://files.pythonhosted.org/packages/96/51/664fca7f792cfedf4b76f19fb7581c7526d11019e77d4cff20a1709e3d98/PyLucid-3.0.0.dev1.tar.gz" } ], "3.0.0.dev15": [ { "comment_text": "", "digests": { "md5": "3d99792ac536154dcb6d91a0dbe328f5", "sha256": "5c9bc96e54dd8452767a23ee95e8213de657d1327742b14e1b71adcd128fa7d1" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3d99792ac536154dcb6d91a0dbe328f5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 141244, "upload_time": "2018-03-02T22:32:01", "url": "https://files.pythonhosted.org/packages/46/28/61da80ebf6684e14e739471d21fa4429680dd40c2249d42cda2a6cb26ee2/PyLucid-3.0.0.dev15-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5d4e5127e831fc5f10580661d7bc422a", "sha256": "336a204b346063c6caadd1788cc30a6e2b7e65c35d54eef9a2c42b3f5446f6c9" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev15-py3.6.egg", "has_sig": false, "md5_digest": "5d4e5127e831fc5f10580661d7bc422a", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 134116, "upload_time": "2018-03-02T22:32:08", "url": "https://files.pythonhosted.org/packages/7d/34/74950e2c0195f2ba15fbeaa7cb62231e9ec0c7d758ec2449a9f2520fba44/PyLucid-3.0.0.dev15-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "1497d9fae4df898b370d0305705b0055", "sha256": "e4cbf7128a5f27d566870e01eef5696d254bfa4d09ca689bc9731fbb462699ae" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev15.tar.gz", "has_sig": false, "md5_digest": "1497d9fae4df898b370d0305705b0055", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 205276, "upload_time": "2018-03-02T22:32:05", "url": "https://files.pythonhosted.org/packages/28/78/008036dd53ab75fd0ac4f2cdd3ed734c622dacdd3bbc76526923f1265be6/PyLucid-3.0.0.dev15.tar.gz" } ], "3.0.0.dev16": [ { "comment_text": "", "digests": { "md5": "48962c5ad8aeff6c26bced571836cf10", "sha256": "d77cbad5879b989e7c7bfe949610c4a5215f1d70920205d0d1b1c195cb1b9605" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev16-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "48962c5ad8aeff6c26bced571836cf10", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 141262, "upload_time": "2018-03-02T22:37:11", "url": "https://files.pythonhosted.org/packages/ac/d9/63f4913b1b3fd4864a173cd9ce71f9e15d7ef6df67782abed12862a51be6/PyLucid-3.0.0.dev16-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f8aafff1f953bc010e4562e4c9b17128", "sha256": "e58ee66af3990410576b95b0b5a5250846aad6f8be5ec5800995aea51c04d742" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev16-py3.6.egg", "has_sig": false, "md5_digest": "f8aafff1f953bc010e4562e4c9b17128", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 134134, "upload_time": "2018-03-02T22:37:18", "url": "https://files.pythonhosted.org/packages/2c/ba/63661f9beca3828d0e7d831031f81f9d78f7bd6b7c98abff9b7069a5eb1a/PyLucid-3.0.0.dev16-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "1cc39837b75dc35a7534404f5b143d68", "sha256": "ca02530ff83a1087d18b4ce9b2f725b603e82f638dc56f652ca28e086dd01438" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev16.tar.gz", "has_sig": false, "md5_digest": "1cc39837b75dc35a7534404f5b143d68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 205278, "upload_time": "2018-03-02T22:37:15", "url": "https://files.pythonhosted.org/packages/90/44/abf3b7c3bf0b314c5ab731e6e8d2633ea0d25a9ac6c16d20ccd903c86e3c/PyLucid-3.0.0.dev16.tar.gz" } ], "3.0.0.dev2": [ { "comment_text": "", "digests": { "md5": "754174befaa4748f28a0d4b9f8b9fd27", "sha256": "222cbd0781dcfa13eab519fac810316bdef6d89865ed297e96d9696d5e32d2da" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "754174befaa4748f28a0d4b9f8b9fd27", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 162127, "upload_time": "2018-02-22T10:18:48", "url": "https://files.pythonhosted.org/packages/84/8e/1bb4b1c35970186eff22bc49cdaaa568b58836a6e42abbaca8fe139f3ec2/PyLucid-3.0.0.dev2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5f73e7d1cf855da812d0fb69e32fb42f", "sha256": "ae97cbb2ad0af179c0b45d84caa25cf9974d5f463f7a17a9a15c46435d456012" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev2-py3.6.egg", "has_sig": false, "md5_digest": "5f73e7d1cf855da812d0fb69e32fb42f", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 155351, "upload_time": "2018-02-22T10:18:53", "url": "https://files.pythonhosted.org/packages/04/2d/383368811d826b38ccd5e60b3d98acc3081818e02bbff0458b478f199ab4/PyLucid-3.0.0.dev2-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "9f93b92aa85882d5bf1b9f2e3ef6a119", "sha256": "e4367b23a5cc3935724abc070cadb32d2c176e3be2ce1eddeeec0b8d9c2b903c" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev2.tar.gz", "has_sig": false, "md5_digest": "9f93b92aa85882d5bf1b9f2e3ef6a119", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 134097, "upload_time": "2018-02-22T10:18:50", "url": "https://files.pythonhosted.org/packages/90/b5/1c65305fa1a4263f9d4d5f9491089bd0048b8a2b3fd9c1f6e2a084fe89a5/PyLucid-3.0.0.dev2.tar.gz" } ], "3.0.0.dev3": [ { "comment_text": "", "digests": { "md5": "21ce6e76d2f1ae6ee8420454225470d7", "sha256": "08a53c2ebe5698d9e7a60fcad419d463ae34b52f9e830f8be8eee71852c1c5f4" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "21ce6e76d2f1ae6ee8420454225470d7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 161971, "upload_time": "2018-02-22T10:30:19", "url": "https://files.pythonhosted.org/packages/93/78/a51889ab6488349fe9507c39b451c0a0e179a81cffbabd826fa79ace2599/PyLucid-3.0.0.dev3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3e1bcec89f579b508bd90352e53a993e", "sha256": "e97da09fcd39f174faeefd0b23aa812cd93554d88c3a26154bfdea703dec3551" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev3-py3.6.egg", "has_sig": false, "md5_digest": "3e1bcec89f579b508bd90352e53a993e", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 155196, "upload_time": "2018-02-22T10:30:39", "url": "https://files.pythonhosted.org/packages/82/0b/b10ba3a766ed0c6e88ce9deef286f545bdb0330257075469ed27d01d6793/PyLucid-3.0.0.dev3-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "8611b109f9d383dac2b10f60e728f78e", "sha256": "2866732dd84b33b8d222cb3499ac2f0c4a48747e4c7299545b95fcd6c78694d2" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev3.tar.gz", "has_sig": false, "md5_digest": "8611b109f9d383dac2b10f60e728f78e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 133943, "upload_time": "2018-02-22T10:30:37", "url": "https://files.pythonhosted.org/packages/37/1f/f58011fa77001693d62fc3b7574ee9662d1dd333cf79481cebf9ea601782/PyLucid-3.0.0.dev3.tar.gz" } ], "3.0.0.dev4": [ { "comment_text": "", "digests": { "md5": "92e6dc3c30b34e3ea7221a34d232f926", "sha256": "29dc2ba13b149d2813e0263d9d7a2f28549564ef827b92d0500634b44d75a4b1" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "92e6dc3c30b34e3ea7221a34d232f926", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 162258, "upload_time": "2018-02-22T11:09:52", "url": "https://files.pythonhosted.org/packages/ad/80/cec970048d1bb718ca05129a3b07c5c788959fe96df4c5985431f4da60ec/PyLucid-3.0.0.dev4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b9a5e91a36d95b940aec5bbb7ffa8aa0", "sha256": "8f9b2280c8ab899e03757a953b89158e94845cb052f8b1c7e77ef2b414848f00" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev4-py3.6.egg", "has_sig": false, "md5_digest": "b9a5e91a36d95b940aec5bbb7ffa8aa0", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 155486, "upload_time": "2018-02-22T11:09:57", "url": "https://files.pythonhosted.org/packages/3d/65/c9a0865bbf3e7b39cd8f5d39bc2f02e24e3ecf6c88bc38e1655bbdba7cf0/PyLucid-3.0.0.dev4-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "a39470c7b8a62d0cac7eaad81684ce25", "sha256": "c70f2322b5c2f564c1057003f89cb1942c676b115b88575f8addc7b06cbed0cd" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev4.tar.gz", "has_sig": false, "md5_digest": "a39470c7b8a62d0cac7eaad81684ce25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 134032, "upload_time": "2018-02-22T11:09:55", "url": "https://files.pythonhosted.org/packages/89/27/6d2a220899bb323bb4e380709e850260adf9b45e93c405af17ea115b8064/PyLucid-3.0.0.dev4.tar.gz" } ], "3.0.0.dev5": [ { "comment_text": "", "digests": { "md5": "8d0dac15b2c37b365af0e2d48c01b0e5", "sha256": "69bf9b8d426bd8aa2f1717a1c80af283234535e6f048c1e923447a9a9861f5aa" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8d0dac15b2c37b365af0e2d48c01b0e5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 162249, "upload_time": "2018-02-22T11:14:03", "url": "https://files.pythonhosted.org/packages/ee/17/8c1b8d2efa27e18229bc8a75c762b4b16976a96335dec04c9003de76c42f/PyLucid-3.0.0.dev5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6ed9ee158e8aa7416cb2f86f0f09d14e", "sha256": "6afb56f2be5ff906710ab23561238f663430b6dfb81815a583f22dc346d5c1f7" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev5-py3.6.egg", "has_sig": false, "md5_digest": "6ed9ee158e8aa7416cb2f86f0f09d14e", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 155481, "upload_time": "2018-02-22T11:14:07", "url": "https://files.pythonhosted.org/packages/1c/f0/35f3e20cabf551ef72d49a3d0590f881dc62b8d20528e4493ddc28cdbbde/PyLucid-3.0.0.dev5-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "cd70d0dc5f95b8741ffb217f3bcda42b", "sha256": "609b02a3f4871a9c3da3da2036a72e7c716015d94e12f08cc10f9da2c768120f" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev5.tar.gz", "has_sig": false, "md5_digest": "cd70d0dc5f95b8741ffb217f3bcda42b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 134032, "upload_time": "2018-02-22T11:14:05", "url": "https://files.pythonhosted.org/packages/e3/34/edbbb271aa73c413d7c79968e376ddf65290e27dedabddea33548e0b1420/PyLucid-3.0.0.dev5.tar.gz" } ], "3.0.0.dev6": [ { "comment_text": "", "digests": { "md5": "fba3cb2d8e1bbf5c2409066cbb50c81a", "sha256": "ed7325f197dd5dd0da1b00657c0ccb4972a7baff6fc5b3416c617d310f45db3c" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fba3cb2d8e1bbf5c2409066cbb50c81a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 162423, "upload_time": "2018-02-22T11:16:39", "url": "https://files.pythonhosted.org/packages/95/44/601cddbcb45ddfba676990cdf217228f41aaf9bc80eff4b0ee37a015087a/PyLucid-3.0.0.dev6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "77c0a82f608c0856f74696aa1dd2817d", "sha256": "03f6b7f23bc599fe3c8a57ebad1cdf8c59b21ae90fca4f781b702b9e28afd6e6" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev6-py3.6.egg", "has_sig": false, "md5_digest": "77c0a82f608c0856f74696aa1dd2817d", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 155653, "upload_time": "2018-02-22T11:16:45", "url": "https://files.pythonhosted.org/packages/5d/29/2e63ecabfec31e7ffff60ff1045f2fdb7f0c4354c824a8d6bfc77bcc7534/PyLucid-3.0.0.dev6-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "cfa4df1df9fe671c5e23b5e4e824810c", "sha256": "b990b0c3827da74ea9fea8258dde3ece72ed3e644990513b3830a3d7508eb37d" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev6.tar.gz", "has_sig": false, "md5_digest": "cfa4df1df9fe671c5e23b5e4e824810c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 134035, "upload_time": "2018-02-22T11:16:42", "url": "https://files.pythonhosted.org/packages/c5/f7/0c9cab1ae9ee5971c6eefa78bc8980494fe4f2fb8dc396c40b6b02fbc01d/PyLucid-3.0.0.dev6.tar.gz" } ], "3.0.0.dev7": [ { "comment_text": "", "digests": { "md5": "fc2c66d8a49fa5fa8dc6bf2f77cb922f", "sha256": "6bfbe2be5d835bdc6edaa29b54c82ee645696397500381bc17948e55626da393" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fc2c66d8a49fa5fa8dc6bf2f77cb922f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 2858150, "upload_time": "2018-02-23T18:15:55", "url": "https://files.pythonhosted.org/packages/ec/d0/89e57c85abf69ca1757e813badd4e9f70a013252ea27c5f9c50b2b8f9e41/PyLucid-3.0.0.dev7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "46441292d70540bf959e1716e3a63b3e", "sha256": "775b5e8dff072eb0b742d6678798985202a14661bf5a38d4dae120f12874de2e" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev7-py3.6.egg", "has_sig": false, "md5_digest": "46441292d70540bf959e1716e3a63b3e", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 2832584, "upload_time": "2018-02-23T18:16:06", "url": "https://files.pythonhosted.org/packages/f7/5b/3ce7b023063430f59be16278660de9579c858a03008c26169d35d537be55/PyLucid-3.0.0.dev7-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "2d7cc046bf4518d323d66e8e803271d9", "sha256": "9763ffba33b088ede83b05445a785f806c0693abc2f37933c66ee06c8a4927bb" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev7.tar.gz", "has_sig": false, "md5_digest": "2d7cc046bf4518d323d66e8e803271d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2344160, "upload_time": "2018-02-23T18:16:00", "url": "https://files.pythonhosted.org/packages/85/2f/cd68b41169e1f3b00d005f7151ce7966a23df20782366dbe630f1a07a224/PyLucid-3.0.0.dev7.tar.gz" } ], "3.0.0.dev8": [ { "comment_text": "", "digests": { "md5": "90954a2ea0b9d85562fbecbcf53306de", "sha256": "8b8b7dce9e3d6d966f607b83aa8f6813f2d75b7b3ff6735a0bc1032629a773ed" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "90954a2ea0b9d85562fbecbcf53306de", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3096866, "upload_time": "2018-02-26T12:25:03", "url": "https://files.pythonhosted.org/packages/b8/87/64a5270deb280a72dfeef8e3c4aa4e9bd126f1e5368e93010152516e18f8/PyLucid-3.0.0.dev8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "db38dfb4cd3e65b651570d5260822b8d", "sha256": "9c5e80ea73e99dde2f46cd7b38c1f882228ef812a697c91f247948412d84efa3" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev8-py3.6.egg", "has_sig": false, "md5_digest": "db38dfb4cd3e65b651570d5260822b8d", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 3069471, "upload_time": "2018-02-26T12:25:14", "url": "https://files.pythonhosted.org/packages/e7/89/8bc7a45d351245fc96d12385358e10df49e7ab8f383738f5c11b382caa14/PyLucid-3.0.0.dev8-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "0e86fb891e5fc842ed593e1a6233a5fe", "sha256": "d5b99766e326458576339106c6b65f26371d012ff5cb08dc00a29aff410d5a67" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev8.tar.gz", "has_sig": false, "md5_digest": "0e86fb891e5fc842ed593e1a6233a5fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2569214, "upload_time": "2018-02-26T12:25:08", "url": "https://files.pythonhosted.org/packages/b8/d7/554c2dcf791b460a66a92d9a610576b368889b074400b1e70fbd8c85d2ef/PyLucid-3.0.0.dev8.tar.gz" } ], "3.0.0.dev9": [ { "comment_text": "", "digests": { "md5": "0ec0423120184584614c14f9f38cee7d", "sha256": "97a79341345e55e90297ff774a098a44f7314fc003cf6eea90c6902c2aef5c90" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0ec0423120184584614c14f9f38cee7d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3096884, "upload_time": "2018-02-26T12:38:45", "url": "https://files.pythonhosted.org/packages/4f/fb/111ef6a9aefee076d1787529096706ae4e589defba1eacf670caede5e24f/PyLucid-3.0.0.dev9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7ec5c7647462e4c60e2a842843adddeb", "sha256": "470b98a93f2d1dae715415abfcc751c940047497712df5aa31a5695662064926" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev9-py3.6.egg", "has_sig": false, "md5_digest": "7ec5c7647462e4c60e2a842843adddeb", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 3069488, "upload_time": "2018-02-26T12:38:56", "url": "https://files.pythonhosted.org/packages/42/4d/b7e16896f3c014a46685c5a3ca001952f026d173f8ea54e2f35cd6526792/PyLucid-3.0.0.dev9-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "a464468c0dcae4f7e23247157b46aac6", "sha256": "ab02db0445b567b2e3cbe5af66b9ffc6a3ad3c6639bad0e3aa1d7cc7d860f847" }, "downloads": -1, "filename": "PyLucid-3.0.0.dev9.tar.gz", "has_sig": false, "md5_digest": "a464468c0dcae4f7e23247157b46aac6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2569017, "upload_time": "2018-02-26T12:38:50", "url": "https://files.pythonhosted.org/packages/ba/56/9398de8799e4a5aae59a062ad037c748f034145dd632c54d81128133f700/PyLucid-3.0.0.dev9.tar.gz" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "751ae9e33db5c62b5dca1017c0228fa6", "sha256": "81c99f0eca621d7044429c9440acd88b49b28d6ee2de051e75e757c4d3e1f165" }, "downloads": -1, "filename": "PyLucid-3.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "751ae9e33db5c62b5dca1017c0228fa6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 142317, "upload_time": "2018-03-05T18:38:35", "url": "https://files.pythonhosted.org/packages/ff/95/305bdd888561d105fde20a51388e1523c14179cdb0757225d71b5976d346/PyLucid-3.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8d161bf1ff9d3ffab05a82845b8fcf32", "sha256": "ce527776506ba0f97bdd2d39a2ed5cfdbd3b3194d9cfd19589a1ea3432370cc5" }, "downloads": -1, "filename": "PyLucid-3.0.1-py3.6.egg", "has_sig": false, "md5_digest": "8d161bf1ff9d3ffab05a82845b8fcf32", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 134808, "upload_time": "2018-03-05T18:38:43", "url": "https://files.pythonhosted.org/packages/c5/9a/e02e40370532b1dcaf0c2788a4385ce22408bd262bac7ddac06c4dd538eb/PyLucid-3.0.1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "9c9077bc85fafd2bb243015ce32db837", "sha256": "6b2922e6364bdbc71b9a7897695c80cf927315dab6fdc10b99eb110f8b7deec3" }, "downloads": -1, "filename": "PyLucid-3.0.1.tar.gz", "has_sig": false, "md5_digest": "9c9077bc85fafd2bb243015ce32db837", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110473, "upload_time": "2018-03-05T18:38:38", "url": "https://files.pythonhosted.org/packages/04/72/0bf764bb360a08135ed38b02a8f92170b9ae8166d5ad774af17115996b94/PyLucid-3.0.1.tar.gz" } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "df97ab2d31880b27649c405f6533463c", "sha256": "612958381dfa30e67c36922f8dda046ce7a63f4a2add5c6a0c94db3d24d4db01" }, "downloads": -1, "filename": "PyLucid-3.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "df97ab2d31880b27649c405f6533463c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 144221, "upload_time": "2018-03-06T16:28:57", "url": "https://files.pythonhosted.org/packages/00/c0/1ddb435e97fbb6f77b1d9a228e0fe6146da7b271d006fb495f86eff9ac46/PyLucid-3.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2d0ed37a8a281ddcb7ae674e0df8009d", "sha256": "777fe31d3d157cc3bd5b7fc920f9307229f5af68a8993e7669f9fe469d1344fb" }, "downloads": -1, "filename": "PyLucid-3.0.2-py3.6.egg", "has_sig": false, "md5_digest": "2d0ed37a8a281ddcb7ae674e0df8009d", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 136790, "upload_time": "2018-03-06T16:29:04", "url": "https://files.pythonhosted.org/packages/39/80/ab17b05b24e8861a0e7b2e63bc5cb362816b9526a298721e81939df11cfa/PyLucid-3.0.2-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "91b94f37e26d05bbb858e805e49b4e4a", "sha256": "89b1a5f3e23b009bb379a6c2e14d409f21897b56b9f0e5509a20612ac56ebb64" }, "downloads": -1, "filename": "PyLucid-3.0.2.tar.gz", "has_sig": false, "md5_digest": "91b94f37e26d05bbb858e805e49b4e4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 210327, "upload_time": "2018-03-06T16:29:02", "url": "https://files.pythonhosted.org/packages/01/00/2a9f0d2134bd5f2c0741112392d4f4113266185ec9daafdc9eac71036be0/PyLucid-3.0.2.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "18c2650959fd7eae014d05066c703828", "sha256": "3bf4f8ddbcf04e02aa70797b26df24b187b7bf61c5505dbe0177514fb8a17b2b" }, "downloads": -1, "filename": "PyLucid-3.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "18c2650959fd7eae014d05066c703828", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 230855, "upload_time": "2018-03-09T12:12:37", "url": "https://files.pythonhosted.org/packages/bd/9d/a542ae8842bcd5d95ca152d7a451494fe85c490020497c7bbd54ddb24874/PyLucid-3.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a8848f1123da83b478753ce7d181759f", "sha256": "096990309e775ac6d903a9cca232bb90f37a99d9ddcf41a2a8649ce752cc7462" }, "downloads": -1, "filename": "PyLucid-3.1.0-py3.6.egg", "has_sig": false, "md5_digest": "a8848f1123da83b478753ce7d181759f", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 222730, "upload_time": "2018-03-09T12:12:47", "url": "https://files.pythonhosted.org/packages/10/4a/33c614bc0bf2f75d7e663b20b81a188c6f011b0c1b762255e0f1443f2e5d/PyLucid-3.1.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "02f17d74a80b174ded9536f4b803d6ad", "sha256": "80c1d7db1763e3ac45be14f9d6484d7d86ac1d53bec9d9718796c6d7ac7953cf" }, "downloads": -1, "filename": "PyLucid-3.1.0.tar.gz", "has_sig": false, "md5_digest": "02f17d74a80b174ded9536f4b803d6ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 294912, "upload_time": "2018-03-09T12:12:43", "url": "https://files.pythonhosted.org/packages/b0/99/4407cb8910b194b2d417e87202f5dba1c4774687e45ef51acc62b872ad91/PyLucid-3.1.0.tar.gz" } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "7e6eedccf20edbb62d441d7bf9aaa115", "sha256": "a57ec2cd667fce373fbb9cd2b03108abf1bf6b994d15dda4034aa1c5cdf6948a" }, "downloads": -1, "filename": "PyLucid-3.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7e6eedccf20edbb62d441d7bf9aaa115", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 231146, "upload_time": "2018-03-09T17:08:24", "url": "https://files.pythonhosted.org/packages/a6/72/b1e88c892a5155dd26358fac0dd64ad472eaee95c94eeb5a6acc13ce4a7b/PyLucid-3.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9cc6f5422b95159b02d962b25cb2690f", "sha256": "16843f3fa522ee009bd1f16afce37e584a79a387cc662fa4d0531ee3a193943b" }, "downloads": -1, "filename": "PyLucid-3.1.1-py3.6.egg", "has_sig": false, "md5_digest": "9cc6f5422b95159b02d962b25cb2690f", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 222912, "upload_time": "2018-03-09T17:08:34", "url": "https://files.pythonhosted.org/packages/01/ba/a94587ee6805b6a98ae34145bdd8d03dfd629d9d2e06d52d5d112a561d44/PyLucid-3.1.1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "1bbb4f75845994bd674b4e241162328f", "sha256": "3e0d8311bbc8f3515b1157ba914a15ebee20cbc5efde537bbd2aeb00b4ce379e" }, "downloads": -1, "filename": "PyLucid-3.1.1.tar.gz", "has_sig": false, "md5_digest": "1bbb4f75845994bd674b4e241162328f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 295234, "upload_time": "2018-03-09T17:08:30", "url": "https://files.pythonhosted.org/packages/b9/ad/7113b1ef73085972de4a457192ab735956fa4fe7eb5a431f32f846d934f7/PyLucid-3.1.1.tar.gz" } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "2ed95ca75ad8788ec3d0b48317148dbe", "sha256": "0bcdfbe4da1a7e9644c3060852f96a3a37c90015a714a72b55aed679eeea20f0" }, "downloads": -1, "filename": "PyLucid-3.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2ed95ca75ad8788ec3d0b48317148dbe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 397037, "upload_time": "2018-04-03T16:34:20", "url": "https://files.pythonhosted.org/packages/a9/16/27d106c9a306ac83daeffa9ec4efe73180725b0215dbb0e313d45f5283e8/PyLucid-3.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b0bf6011b4838b01e675a0038d02f0d8", "sha256": "d3e73051e1b14e8d78bcfcc51e0bc5edf23c17bcf5cd5c4fb0c8d5016fb942b6" }, "downloads": -1, "filename": "PyLucid-3.1.2-py3.6.egg", "has_sig": false, "md5_digest": "b0bf6011b4838b01e675a0038d02f0d8", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 386937, "upload_time": "2018-04-03T16:34:33", "url": "https://files.pythonhosted.org/packages/8c/01/5f86ac92a5357542320394f3a4a9cbe141967c91a57c7fcc6523f8e49eff/PyLucid-3.1.2-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "bab754423e1f806d5e458b44909ff99f", "sha256": "68d8f928aea3f19c911f702cf99083d7f9f3d9f0505cf13b9c7a1207c8d709b8" }, "downloads": -1, "filename": "PyLucid-3.1.2.tar.gz", "has_sig": false, "md5_digest": "bab754423e1f806d5e458b44909ff99f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 430507, "upload_time": "2018-04-03T16:34:27", "url": "https://files.pythonhosted.org/packages/c3/5b/69f54ffd076a9dd827fa1185eb3da1ff12a478e93d56484c369e3cf004d2/PyLucid-3.1.2.tar.gz" } ], "3.1.2.dev1": [ { "comment_text": "", "digests": { "md5": "084242c3565cce466d54f2b33e54fa54", "sha256": "acdb7db34214cf58bc4de4df4ac5e0967b0e2c266e3d1ada78cc3bc4067155a3" }, "downloads": -1, "filename": "PyLucid-3.1.2.dev1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "084242c3565cce466d54f2b33e54fa54", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 397218, "upload_time": "2018-04-03T16:14:19", "url": "https://files.pythonhosted.org/packages/5b/d0/55f5db31a1d441eaccdae3048da57b28f0971f06b453ec32a4719d09d840/PyLucid-3.1.2.dev1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4b3d17fa7e355d5f232dcd155399020b", "sha256": "c45d027b7a1182277a7322d7401c5d7d86b5895ea1ebfe36ce54e35cac82a2cf" }, "downloads": -1, "filename": "PyLucid-3.1.2.dev1-py3.6.egg", "has_sig": false, "md5_digest": "4b3d17fa7e355d5f232dcd155399020b", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 387020, "upload_time": "2018-04-03T16:14:31", "url": "https://files.pythonhosted.org/packages/ab/ac/e5c80d0e1ad51e2ccb0ec3e96b5cc680b9237809be03077987c299afb64e/PyLucid-3.1.2.dev1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "7ed367a638deef94b8cf556ce58ed67a", "sha256": "b3f4a30283f7da4ab8fd08916c73aa52ca282f9b218eb789c4ab952789241f12" }, "downloads": -1, "filename": "PyLucid-3.1.2.dev1.tar.gz", "has_sig": false, "md5_digest": "7ed367a638deef94b8cf556ce58ed67a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 430559, "upload_time": "2018-04-03T16:14:25", "url": "https://files.pythonhosted.org/packages/0e/5a/b4f11ed50dae3b1a19c0192255a54f9df1563dc4b4baf4b6cc1fbf6762dd/PyLucid-3.1.2.dev1.tar.gz" } ], "3.1.3": [ { "comment_text": "", "digests": { "md5": "59792605a82e7fef55c24050d4a0d16d", "sha256": "4a7ef2e188d2fadc08bc75cec83fccee492a620cdc4e6d9057086cc812450d81" }, "downloads": -1, "filename": "PyLucid-3.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "59792605a82e7fef55c24050d4a0d16d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 395437, "upload_time": "2018-09-19T14:10:45", "url": "https://files.pythonhosted.org/packages/73/96/f75cdb814b12568990f83f5769ae7d9401fff611cc8ba4863b6309f1df45/PyLucid-3.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "55b327b2383d0c347d24016541389245", "sha256": "afb2911d4d06b18c63cb2d5858d2dce127c5a501591d6a9082f469f18ac449e3" }, "downloads": -1, "filename": "PyLucid-3.1.3-py3.6.egg", "has_sig": false, "md5_digest": "55b327b2383d0c347d24016541389245", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 390217, "upload_time": "2018-09-19T14:10:49", "url": "https://files.pythonhosted.org/packages/64/d1/7e084ed294f86b73d6bf52d414a3d0a7b91b2320ac2d84da11e422b742e5/PyLucid-3.1.3-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "55bb7b0a684d258cd39dfe6853fa36b3", "sha256": "417b743c96789710ddb87cc1e7a13f30002609b142186a9e8f7f337b71411061" }, "downloads": -1, "filename": "PyLucid-3.1.3.tar.gz", "has_sig": false, "md5_digest": "55bb7b0a684d258cd39dfe6853fa36b3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 431915, "upload_time": "2018-09-19T14:10:47", "url": "https://files.pythonhosted.org/packages/31/d7/339da52dd1d65ecacdec8dc94f807f062b5586d760330736d7636891899b/PyLucid-3.1.3.tar.gz" } ], "3.1.3rc1": [ { "comment_text": "", "digests": { "md5": "3ef6ccaa8a739517ddb11b7cfc43e248", "sha256": "3fcd4686689654194dc20d1aa4b1b026fc928e41686bb62efaccd29feabe755a" }, "downloads": -1, "filename": "PyLucid-3.1.3rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3ef6ccaa8a739517ddb11b7cfc43e248", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 394348, "upload_time": "2018-04-24T07:38:00", "url": "https://files.pythonhosted.org/packages/e5/0b/5434cc596384e5fefb82c020f6aee528684d3c948bae712dd1298fb45bea/PyLucid-3.1.3rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9fd9a0584a97ad93ac4c0e66afce1775", "sha256": "537b217326f673aacb64d9bd7e8ec227996833b760dcb1c7ca8f11f330a6b19c" }, "downloads": -1, "filename": "PyLucid-3.1.3rc1-py3.6.egg", "has_sig": false, "md5_digest": "9fd9a0584a97ad93ac4c0e66afce1775", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 389074, "upload_time": "2018-04-24T07:38:12", "url": "https://files.pythonhosted.org/packages/a8/22/1a4822c934daa0f957e4ee31aade464dc86a90a81a09bba4cfb22162157d/PyLucid-3.1.3rc1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "2f445fcc3045e6201ab60997be9498c9", "sha256": "f73127ab871125e71d4912c6d74228f208b9802d859af28d53f3056f49dd21fb" }, "downloads": -1, "filename": "PyLucid-3.1.3rc1.tar.gz", "has_sig": false, "md5_digest": "2f445fcc3045e6201ab60997be9498c9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 431151, "upload_time": "2018-04-24T07:38:06", "url": "https://files.pythonhosted.org/packages/9f/38/b98076b3576a7a028fb6f34c37e1366deae4195e61226c91a000f4d8cd47/PyLucid-3.1.3rc1.tar.gz" } ], "3.1.3rc2": [ { "comment_text": "", "digests": { "md5": "943324b8d7d0e13c70a353c288df0060", "sha256": "c85bdca167220547e5878a578306fc5da78d97f2058f22823c57b9b9c5a5f35d" }, "downloads": -1, "filename": "PyLucid-3.1.3rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "943324b8d7d0e13c70a353c288df0060", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 394832, "upload_time": "2018-04-24T08:08:22", "url": "https://files.pythonhosted.org/packages/95/c8/01df10716d1481f68761d26edb7d3b7efd6316e2357c02844ccbe752e556/PyLucid-3.1.3rc2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "11d3428b23bd07d4dfbd8745ee5785b4", "sha256": "91f8a7950601083b55110d7426479186d41467b92e62ccb551f6b6c4299680a8" }, "downloads": -1, "filename": "PyLucid-3.1.3rc2-py3.6.egg", "has_sig": false, "md5_digest": "11d3428b23bd07d4dfbd8745ee5785b4", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 389556, "upload_time": "2018-04-24T08:08:34", "url": "https://files.pythonhosted.org/packages/4b/14/ec6948807d0bf57355c6a3e6632fea3c26c2a5373e6141826f197b22fa0f/PyLucid-3.1.3rc2-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "b6443ddc3c0115bc02923eeb2fca75cd", "sha256": "5d1c796a2342d3f1973ec03cc18ef82c7713185483e341031fd31943fcc203c6" }, "downloads": -1, "filename": "PyLucid-3.1.3rc2.tar.gz", "has_sig": false, "md5_digest": "b6443ddc3c0115bc02923eeb2fca75cd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 431475, "upload_time": "2018-04-24T08:08:28", "url": "https://files.pythonhosted.org/packages/d9/e5/45e17557bc4cbe1283dfca6759cd6e089bdcbe249b051a4f095803a3ee7b/PyLucid-3.1.3rc2.tar.gz" } ], "3.1.3rc3": [ { "comment_text": "", "digests": { "md5": "439b993542073311896907f151cc5dd4", "sha256": "1c0ab239a10a965931852d2f1b60b9f66dee191d481ee681e899f0e27b57bac8" }, "downloads": -1, "filename": "PyLucid-3.1.3rc3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "439b993542073311896907f151cc5dd4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 395549, "upload_time": "2018-09-19T14:04:55", "url": "https://files.pythonhosted.org/packages/8e/03/e5a566bfb7f33f06de4401e59a4a5e18d984136bcbd8a7e5734b38bb4223/PyLucid-3.1.3rc3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2b3961ca5f93eca37bb09de615e7ce5e", "sha256": "8d6db0529fe8bbf6f5ad497785e77fa9db7c35d2e614ba8620455cd4247bcf72" }, "downloads": -1, "filename": "PyLucid-3.1.3rc3-py3.6.egg", "has_sig": false, "md5_digest": "2b3961ca5f93eca37bb09de615e7ce5e", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 390276, "upload_time": "2018-09-19T14:05:00", "url": "https://files.pythonhosted.org/packages/7d/49/06eb0b6ebd0bab97137b1533d8cfbbd524b51d194e494c568ef8d369ab56/PyLucid-3.1.3rc3-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "70167bbba5a99f0f4ca5bf6dead8db1a", "sha256": "7331746e2caa4d6b67bb77f957038452dab21bdf5033d4edcee9c53d44d2f143" }, "downloads": -1, "filename": "PyLucid-3.1.3rc3.tar.gz", "has_sig": false, "md5_digest": "70167bbba5a99f0f4ca5bf6dead8db1a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 431916, "upload_time": "2018-09-19T14:04:57", "url": "https://files.pythonhosted.org/packages/a3/13/292abcd89ff3d8faa2d4b9d1f1034625375c08fb58cb34650fc69e18b102/PyLucid-3.1.3rc3.tar.gz" } ], "3.1.4": [ { "comment_text": "", "digests": { "md5": "3f371cd0ac99303a56717330f2af7f5e", "sha256": "9818b023e35a948cf720dc2c4a227b568f50f524c0aaef134e4e14d9e167c5d3" }, "downloads": -1, "filename": "PyLucid-3.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3f371cd0ac99303a56717330f2af7f5e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 395647, "upload_time": "2019-06-11T16:17:36", "url": "https://files.pythonhosted.org/packages/2b/e4/b92a793a7b4f59f0dd4002a9fe47af8f97fb8d36306118438ba89d627bb1/PyLucid-3.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "484962e2ccc092f5cc3f817612e2612f", "sha256": "734fb7bc7f110424dbd63e8fd0086043af25cabdce911314c5c608cbe4f98984" }, "downloads": -1, "filename": "PyLucid-3.1.4-py3.6.egg", "has_sig": false, "md5_digest": "484962e2ccc092f5cc3f817612e2612f", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 390443, "upload_time": "2019-06-11T16:17:42", "url": "https://files.pythonhosted.org/packages/da/17/df813061d3f0f648c7cc77adcd06ba6b45bcddc6412de1c26b856b812cc3/PyLucid-3.1.4-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "62f894e505e1384eda8829dd703032f5", "sha256": "643c010888eb8d560465cd4fef9c08c9c070572d39b99a24a6646f630f323dd1" }, "downloads": -1, "filename": "PyLucid-3.1.4.tar.gz", "has_sig": false, "md5_digest": "62f894e505e1384eda8829dd703032f5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 432364, "upload_time": "2019-06-11T16:17:39", "url": "https://files.pythonhosted.org/packages/ff/96/b63e78eb7c49c3fe2bbb8e90b67a431c247d94dbe6f57c1a2901ab000a87/PyLucid-3.1.4.tar.gz" } ], "3.1.4rc1": [ { "comment_text": "", "digests": { "md5": "5c1b3676e3e81b9c5d879355fcec0a83", "sha256": "6771a908feca5b387dfe9b14cb2691e835cc34d22f26575255314951db460f07" }, "downloads": -1, "filename": "PyLucid-3.1.4rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5c1b3676e3e81b9c5d879355fcec0a83", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 395558, "upload_time": "2019-01-08T08:24:41", "url": "https://files.pythonhosted.org/packages/ae/4d/f187fa1b18c4efdf200cee92e777f7dca3dc730d4416cd33960b6d7d1846/PyLucid-3.1.4rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dbf2d7364f354a0790ed8adc7739f603", "sha256": "a8ceeb8bc0d3ea82d6881dd44a95ec20e15835d2b43d117a3e92a3cd46706054" }, "downloads": -1, "filename": "PyLucid-3.1.4rc1-py3.6.egg", "has_sig": false, "md5_digest": "dbf2d7364f354a0790ed8adc7739f603", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 390301, "upload_time": "2019-01-08T08:24:47", "url": "https://files.pythonhosted.org/packages/91/ea/bd90c0f9fad6f52c10fbc39721511126f8c0853a4f9609dda7965d1d3aa8/PyLucid-3.1.4rc1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "9b13ef905d3e77e02af26315fa2223ed", "sha256": "97a3f459bfcc85781efa8925dc9ff5b8342ad97502537aa8f33a313da7a6cbbb" }, "downloads": -1, "filename": "PyLucid-3.1.4rc1.tar.gz", "has_sig": false, "md5_digest": "9b13ef905d3e77e02af26315fa2223ed", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 432092, "upload_time": "2019-01-08T08:24:44", "url": "https://files.pythonhosted.org/packages/f2/ee/0236ebb6486e267ecac9191a0d52f4d12c47acae05376457d644b20d9faa/PyLucid-3.1.4rc1.tar.gz" } ], "3.1.4rc2": [ { "comment_text": "", "digests": { "md5": "c89b2a36d9f458b13b8de22a91e26e00", "sha256": "0c9d0f60d7e83e292ba0d330544c6de508c1bca1aa1a2a6295ee7969c0d49257" }, "downloads": -1, "filename": "PyLucid-3.1.4rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c89b2a36d9f458b13b8de22a91e26e00", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 396064, "upload_time": "2019-01-28T17:14:36", "url": "https://files.pythonhosted.org/packages/8d/55/f5924cac046cbcab80c3ec6bf42278fb407a0fd3d29a36c54342e3d26c10/PyLucid-3.1.4rc2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4f0657ec74b537494c37905eec282229", "sha256": "93660ddbb5125128eecff06ee6db7e6fd7da0fe8c95d81a8f59453fd2bf3c04a" }, "downloads": -1, "filename": "PyLucid-3.1.4rc2-py3.6.egg", "has_sig": false, "md5_digest": "4f0657ec74b537494c37905eec282229", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 390810, "upload_time": "2019-01-28T17:14:42", "url": "https://files.pythonhosted.org/packages/61/ed/7a7ec965ad8afc8a58ecad75d5b152ab4b1fd54608c06f1efa83223a8973/PyLucid-3.1.4rc2-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "c05adad5ce9ed8d38fb0e40a1e9f65e0", "sha256": "1cec6920a6a618c221a81b6e10f800fb3fc2edcd21356a549f38392376c3dba4" }, "downloads": -1, "filename": "PyLucid-3.1.4rc2.tar.gz", "has_sig": false, "md5_digest": "c05adad5ce9ed8d38fb0e40a1e9f65e0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 432469, "upload_time": "2019-01-28T17:14:39", "url": "https://files.pythonhosted.org/packages/a0/c6/34baaa851b203c918db3e43dd79d0c3bb2c652aee3a7cb22ce6ef4506824/PyLucid-3.1.4rc2.tar.gz" } ], "3.1.4rc3": [ { "comment_text": "", "digests": { "md5": "3176112c49e6d109d80f282b0ae24d05", "sha256": "e50066c17793fd2fd02bf1de83a38d1f1c1933f3511ac8c36763f94791fa4e2c" }, "downloads": -1, "filename": "PyLucid-3.1.4rc3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3176112c49e6d109d80f282b0ae24d05", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 395734, "upload_time": "2019-01-28T17:49:05", "url": "https://files.pythonhosted.org/packages/a1/9e/9891b813946e3a79aa3259b180330ce5112aec0f9177a0715a499ae95467/PyLucid-3.1.4rc3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b5b5db2ab13ad1edb44974d0e54ddd7b", "sha256": "d02ba8d3010bf4afff6011d090f9218938ea51b956669c219915b66c4e8f17b0" }, "downloads": -1, "filename": "PyLucid-3.1.4rc3-py3.6.egg", "has_sig": false, "md5_digest": "b5b5db2ab13ad1edb44974d0e54ddd7b", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 390480, "upload_time": "2019-01-28T17:49:11", "url": "https://files.pythonhosted.org/packages/1f/e8/c2fcf0931989beb5d21fcb1feaa9ce327464e1747fde404b6dd80e724308/PyLucid-3.1.4rc3-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "967ffaf4aad8585cc0f0ba850b931ce2", "sha256": "449a8b91c75aa57a3dbcce1c552199621623e5d8333b9795c3547515e5ea08bd" }, "downloads": -1, "filename": "PyLucid-3.1.4rc3.tar.gz", "has_sig": false, "md5_digest": "967ffaf4aad8585cc0f0ba850b931ce2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 432449, "upload_time": "2019-01-28T17:49:08", "url": "https://files.pythonhosted.org/packages/dc/e6/ded1ddb17f66aaa4f6414e2a2273e36220e689870b28dd245cb32e1e4f23/PyLucid-3.1.4rc3.tar.gz" } ], "3.1.4rc4": [ { "comment_text": "", "digests": { "md5": "c5e0ffd0d974127e4c291bca5c038020", "sha256": "855c292bda8b3ddd90c6dea7f02d248691c8208b067b886cc87ffccfd539147b" }, "downloads": -1, "filename": "PyLucid-3.1.4rc4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c5e0ffd0d974127e4c291bca5c038020", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 395552, "upload_time": "2019-01-28T17:58:02", "url": "https://files.pythonhosted.org/packages/8d/88/ce031997fcbc364f9e60017f9b8b086009e349f8ab18e0f3de0346a3646e/PyLucid-3.1.4rc4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8b90ce39f0f6acb73b6d4b6169ad13e1", "sha256": "cab1f7353f49a893f27a06616fa8d82d55bc88b29973c51982af1cf51b0ceb62" }, "downloads": -1, "filename": "PyLucid-3.1.4rc4-py3.6.egg", "has_sig": false, "md5_digest": "8b90ce39f0f6acb73b6d4b6169ad13e1", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 390301, "upload_time": "2019-01-28T17:58:07", "url": "https://files.pythonhosted.org/packages/7f/e9/462b9387214cb9a14c7d08b7079d91475a0587a1580d8e30e2b01ffbd6b3/PyLucid-3.1.4rc4-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "d5fe995b04f398532a00831d72f5a753", "sha256": "c8d2349f070f9cc715e7feef36f5dd239c93befee78438e78ae52f9006e75db1" }, "downloads": -1, "filename": "PyLucid-3.1.4rc4.tar.gz", "has_sig": false, "md5_digest": "d5fe995b04f398532a00831d72f5a753", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 432254, "upload_time": "2019-01-28T17:58:05", "url": "https://files.pythonhosted.org/packages/ea/7a/ad32e31eee16461cf70eadc885f9090bb14a8dcfb9b01b95d09cc3c794e7/PyLucid-3.1.4rc4.tar.gz" } ], "3.1.4rc5": [ { "comment_text": "", "digests": { "md5": "dbae1ad5357a0dd157f2563e73404580", "sha256": "1be8b500a0aee5faf280c4e5323b33ad9ac7feda60394fb59c8d483908d23357" }, "downloads": -1, "filename": "PyLucid-3.1.4rc5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dbae1ad5357a0dd157f2563e73404580", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 395768, "upload_time": "2019-06-11T15:11:29", "url": "https://files.pythonhosted.org/packages/eb/a3/ee4edb92f25957553b33fb32c5202a168fc2564f7b1f5763496d78bf4237/PyLucid-3.1.4rc5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a8f586bbf52e4655a8c29a73583b8003", "sha256": "b001ff82de045ca94b035b34e15c7a00c355d5166f07d9fad63fc1be7ff09f05" }, "downloads": -1, "filename": "PyLucid-3.1.4rc5-py3.6.egg", "has_sig": false, "md5_digest": "a8f586bbf52e4655a8c29a73583b8003", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 390515, "upload_time": "2019-06-11T15:11:35", "url": "https://files.pythonhosted.org/packages/e8/e0/54f89491a801b40f81677920cbce3f903360b819bd6f4968730a11d11128/PyLucid-3.1.4rc5-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "ac5efe63ed3a694a5a3869b2aa861fd8", "sha256": "a33bade3838a267957afe7d4a7bbf55dac419f668b1f21db93eb3ac68549c38f" }, "downloads": -1, "filename": "PyLucid-3.1.4rc5.tar.gz", "has_sig": false, "md5_digest": "ac5efe63ed3a694a5a3869b2aa861fd8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 432436, "upload_time": "2019-06-11T15:11:32", "url": "https://files.pythonhosted.org/packages/61/ca/09a20c622db0ceb0ad3b1f189d206c8036e6f3addb53bab8c8e1fdf7ba01/PyLucid-3.1.4rc5.tar.gz" } ], "3.1.5": [ { "comment_text": "", "digests": { "md5": "f2e890653f2b935f3c72b77cca0f03d8", "sha256": "5484eb552d34d0a374b7b48399248421d1d3ab3acf932acf02985911350417c4" }, "downloads": -1, "filename": "PyLucid-3.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f2e890653f2b935f3c72b77cca0f03d8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 363733, "upload_time": "2019-10-03T17:52:27", "url": "https://files.pythonhosted.org/packages/e6/4d/886cdf3bb583c2fd18e667319da3ae607ea79a0adde953b8a19e206010fc/PyLucid-3.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5bef6501d91b3974344cb0d7d9b4c620", "sha256": "f24b300fad6745b2d58b2b66b8304d0e97cc946e1e61ab737269d5aec52a1b9f" }, "downloads": -1, "filename": "PyLucid-3.1.5-py3.6.egg", "has_sig": false, "md5_digest": "5bef6501d91b3974344cb0d7d9b4c620", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 358861, "upload_time": "2019-10-03T17:52:39", "url": "https://files.pythonhosted.org/packages/ed/23/24528b5d72ff7ea1bad8966550170f2c80e2ccae42a1fd4c0c3555ca4edb/PyLucid-3.1.5-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "9b9387ff6a638804e4a59ab492f18a2e", "sha256": "05e3c5b696a58d1fc41208a6f3e7c4d4adb04af7a92ee993937ed2383403ba23" }, "downloads": -1, "filename": "PyLucid-3.1.5.tar.gz", "has_sig": false, "md5_digest": "9b9387ff6a638804e4a59ab492f18a2e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 308513, "upload_time": "2019-10-03T17:52:32", "url": "https://files.pythonhosted.org/packages/ef/4b/ff3995989a8cd005cb411e9042ee37461039e2fd8aed8f6a0763c259d996/PyLucid-3.1.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f2e890653f2b935f3c72b77cca0f03d8", "sha256": "5484eb552d34d0a374b7b48399248421d1d3ab3acf932acf02985911350417c4" }, "downloads": -1, "filename": "PyLucid-3.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f2e890653f2b935f3c72b77cca0f03d8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.5", "size": 363733, "upload_time": "2019-10-03T17:52:27", "url": "https://files.pythonhosted.org/packages/e6/4d/886cdf3bb583c2fd18e667319da3ae607ea79a0adde953b8a19e206010fc/PyLucid-3.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5bef6501d91b3974344cb0d7d9b4c620", "sha256": "f24b300fad6745b2d58b2b66b8304d0e97cc946e1e61ab737269d5aec52a1b9f" }, "downloads": -1, "filename": "PyLucid-3.1.5-py3.6.egg", "has_sig": false, "md5_digest": "5bef6501d91b3974344cb0d7d9b4c620", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=3.5", "size": 358861, "upload_time": "2019-10-03T17:52:39", "url": "https://files.pythonhosted.org/packages/ed/23/24528b5d72ff7ea1bad8966550170f2c80e2ccae42a1fd4c0c3555ca4edb/PyLucid-3.1.5-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "9b9387ff6a638804e4a59ab492f18a2e", "sha256": "05e3c5b696a58d1fc41208a6f3e7c4d4adb04af7a92ee993937ed2383403ba23" }, "downloads": -1, "filename": "PyLucid-3.1.5.tar.gz", "has_sig": false, "md5_digest": "9b9387ff6a638804e4a59ab492f18a2e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 308513, "upload_time": "2019-10-03T17:52:32", "url": "https://files.pythonhosted.org/packages/ef/4b/ff3995989a8cd005cb411e9042ee37461039e2fd8aed8f6a0763c259d996/PyLucid-3.1.5.tar.gz" } ] }