{ "info": { "author": "Glenn Hutchings", "author_email": "zondo42@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)", "Natural Language :: English", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Operating System :: Unix", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Topic :: Software Development :: Bug Tracking" ], "description": "\n=======================================\n PyDitz -- a distributed issue tracker\n=======================================\n\n.. image:: https://drone.io/bitbucket.org/zondo/pyditz/status.png\n :target: https://drone.io/bitbucket.org/zondo/pyditz\n\n.. contents:: :depth: 1\n\nIntroduction\n============\n\nThis package is intended to be a drop-in replacement for the Ditz_\ndistributed issue tracker. It provides a ``pyditz`` command-line program,\nwhich acts (mostly) the same way as ``ditz``, and it adds several other\nnice things too:\n\n* Whereas ``ditz``, when typed on its own, runs the ``todo`` command,\n ``pyditz`` drops you into a command shell where you can run Ditz commands\n and get completion on command names, issue names and release names\n according to context.\n\n* With PyDitz, you don't have to run it from the same directory where the\n issue database is; it will look in parent directories for it.\n\n* It keeps an intelligent cache of issues, so parsing of all the YAML files\n isn't necessary for each command. This greatly improves speed when you\n have lots of issues.\n\n* You can extend PyDitz using plugins that you write---either simple\n standalone files (similar to the ``ditz`` 'hook' feature), or packages\n that use setuptools_ entrypoints.\n\n* You can use the database engine of PyDitz in Python programs to migrate\n bug databases to and from Ditz format, or create summary reports in your\n own favourite format. Me, I prefer reStructuredText_ and rst2pdf_.\n\nRequirements\n============\n\nTo install and run it:\n PyYAML_, Jinja2_, cerberus_ and six_\n\nTo have nice terminal highlighting output:\n Pygments_ (and colorama_ if you're on Windows)\n\nTo mark up description and comment text in HTML output:\n Markups_ (and the modules it needs to function)\n\nTo run the test suite:\n Nose_, Mock_ and Coverage_\n\nTo build the documentation:\n Sphinx_, and the alabaster_ theme.\n\nInstallation\n============\n\nThe usual incantation will install things::\n\n pip install pyditz\n\nThis will install the ``ditz`` module and a console command called\n``pyditz`` to invoke in a similar manner to the original ``ditz``.\n\nIf you want to shadow the original completely, and have the ``ditz``\ncommand run this instead, you have two options:\n\n1. Define the environment variable ``DITZCMD`` to be ``ditz``. This only\n takes effect at installation time. Of course, instead of ``ditz`` you\n can choose anything else more keyboard-friendly.\n\n2. Create your own shell alias.\n\nDocumentation\n=============\n\nThe current documentation can be found online here__. You can also look at\nan example of the `HTML output`_.\n\n__ https://pythonhosted.org/pyditz\n\nLicense\n=======\n\nPyDitz is distributed under the `GNU Lesser General Public License, v2`__\nor later.\n\n__ http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html\n\nLinks\n=====\n\nIf you like this, here's a few more things you might want to check out:\n\n* Pitz_ is another Ditz-alike issue tracker, also written in Python. Its\n bug database is not compatible with Ditz, and I didn't have much luck\n getting it to work, but it might work for you.\n\n* There's another Python project of the same name called akaihola-pyditz_.\n (I only found it after publishing mine, or I might have chosen another\n name.) Not updated for 6 years, but it has some ideas for logging work\n that might be useful.\n\n* There's also `ditz plus plus`_, another reimplemenation written in C++,\n although that hasn't been updated since mid-2013.\n\n* If you're a fan of `GNU Emacs`_, there's a ditz-mode_ written for it that\n I maintain. It works with the original Ditz, or PyDitz.\n\nChanges\n=======\n\nVersion 0.10.3 (2019-01-11)\n---------------------------\n\n* bugfix: Fix highlighting customization\n\nVersion 0.10.2 (2018-08-31)\n---------------------------\n\n* bugfix: Resolve problems with cerberus update\n* bugfix: Resolve problems with markups update\n\nVersion 0.10.1 (2017-07-31)\n---------------------------\n\n* bugfix: Crash when trying to create db\n\nVersion 0.10 (2016-11-27)\n-------------------------\n\n* Improve startup operations\n* Allow abbreviation of issue names\n* Sort issues by last-modified time\n* Implement issue-claiming commands\n* Use cerberus for data validation\n\nVersion 0.9.1 (2016-03-24)\n--------------------------\n\n* bugfix: Line wrapping problem in terminal\n* bugfix: Fix problems with version detection\n* Minor package improvements\n\nVersion 0.9 (2015-09-27)\n------------------------\n\n* bugfix: Bytes output if pygments is not installed\n* bugfix: Initialization command doesn't work\n* Implement the 'edit' command\n* Implement command plugins\n* Add support for markup in HTML output\n* Allow per-project config file\n* New command to list all issues\n* Add project file to version control\n* Add validation schemas\n* Search more fields with grep\n\nVersion 0.8.1 (2015-08-18)\n--------------------------\n\n* bugfix: Fix non-ASCII text in issue data\n* bugfix: HTML plugin load failure\n\nVersion 0.8 (2014-12-05)\n------------------------\n\n* bugfix: Grep arguments not handled correctly\n* Allow customization of HTML output\n* Allow issues to be specified by ID\n* Add progress time indicator to 'show' and HTML\n* Implement exporting directly to archive\n* Add section arg to config command\n* Add exporter plugin system\n* Add python 3 support\n* Improve the default HTML style\n* Move ~/.ditzrc to ~/.ditz/ditz.cfg\n* Relicense under LGPL\n\nVersion 0.7 (2014-09-28)\n------------------------\n\n* bugfix: Handle YAML comment char in strings\n* Add VCS support\n* Add unicode support\n* Add issue type column to HTML output\n* Add command to display configuration\n* Implement the 'validate' command\n* Add output highlighting\n* Add support for command aliases\n* Add pager support\n* Improve the documentation\n* Wire up the remaining program options\n* Improve configuration settings\n* Improve logging command output\n\nVersion 0.6.2 (2014-08-10)\n--------------------------\n\n* bugfix: Name substitution not done in issue description\n\nVersion 0.6.1 (2014-08-09)\n--------------------------\n\n* bugfix: Print message on successful unassignment\n* bugfix: Ignore unreleased releases when assigning issues\n\nVersion 0.6 (2014-03-28)\n------------------------\n\n* bugfix: Handle non-ASCII characters when writing output\n* Install as 'ditz' if required by user\n* Add HTML component column if multiple components in use\n* Don't show HTML release column for unassigned issues\n* Print message on successful issue assignment\n\nVersion 0.5.2 (2013-12-20)\n--------------------------\n\n* bugfix: Blank lines shouldn't end a comment\n\nVersion 0.5.1 (2013-12-18)\n--------------------------\n\n* bugfix: Prompt for component when creating issues\n* bugfix: Show issue status even if not closed\n\nVersion 0.5 (2013-12-12)\n------------------------\n\n* bugfix: Issue names not replaced in comment text\n* bugfix: Reconfigure clobbers existing file\n* Add sortable tables to HTML output\n* Write some user documentation\n* Add a user config file\n\nVersion 0.4 (2013-12-09)\n------------------------\n\n* Implement the 'html' command\n\nVersion 0.3 (2013-11-23)\n------------------------\n\n* bugfix: Multiple 'issuedir' keywords in init\n\nVersion 0.2 (2013-11-23)\n------------------------\n\n* bugfix: Fix up problems with blank comments\n\nVersion 0.1 (2013-11-23)\n------------------------\n\n* bugfix: Fix round-tripping of issue files\n* Implement all the ditz commands\n\n.. _Coverage: https://pypi.python.org/pypi/coverage\n.. _Ditz: http://rubygems.org/gems/ditz\n.. _GNU Emacs: https://www.gnu.org/software/emacs\n.. _HTML output: https://pythonhosted.org/pyditz/_static/index.html\n.. _Jinja2: http://jinja.pocoo.org\n.. _Markups: https://pypi.python.org/pypi/Markups\n.. _Mock: https://pypi.python.org/pypi/mock\n.. _Nose: https://pypi.python.org/pypi/nose\n.. _Pitz: https://github.com/mw44118/pitz\n.. _Pygments: https://pypi.python.org/pypi/Pygments\n.. _PyYAML: https://pypi.python.org/pypi/PyYAML\n.. _Sphinx: http://sphinx.pocoo.org\n.. _akaihola-pyditz: https://github.com/akaihola/pyditz\n.. _alabaster: https://pypi.python.org/pypi/alabaster\n.. _cerberus: https://pypi.python.org/pypi/cerberus\n.. _colorama: https://pypi.python.org/pypi/colorama\n.. _ditz plus plus: http://sourceforge.net/projects/ditz\n.. _ditz-mode: https://bitbucket.org/zondo/ditz-mode\n.. _reStructuredText: http://docutils.sourceforge.net/docs/ref/rst/introduction.html\n.. _rst2pdf: https://pypi.python.org/pypi/rst2pdf\n.. _setuptools: http://pythonhosted.org/setuptools\n.. _six: https://pypi.python.org/pypi/six\n", "description_content_type": "", "docs_url": "https://pythonhosted.org/pyditz/", "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://pypi.python.org/pypi/pyditz", "keywords": "", "license": "LGPL v2 or later", "maintainer": "", "maintainer_email": "", "name": "pyditz", "package_url": "https://pypi.org/project/pyditz/", "platform": "", "project_url": "https://pypi.org/project/pyditz/", "project_urls": { "Homepage": "http://pypi.python.org/pypi/pyditz" }, "release_url": "https://pypi.org/project/pyditz/0.10.3/", "requires_dist": null, "requires_python": "", "summary": "Python implementation of Ditz (http://rubygems.org/gems/ditz).", "version": "0.10.3" }, "last_serial": 4686063, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "9aae3f2a267b1202dc736e4fdd7d3445", "sha256": "6ef41d5fbce79461afe1511e08fdcb2cba749e864f24e2d056349209e7a1d4f5" }, "downloads": -1, "filename": "pyditz-0.1-py2.7.egg", "has_sig": false, "md5_digest": "9aae3f2a267b1202dc736e4fdd7d3445", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 45616, "upload_time": "2013-11-23T00:19:16", "url": "https://files.pythonhosted.org/packages/44/51/48ffee62020d2789121bd0d1ec8ba29b11859943c38ede4b6d447447a080/pyditz-0.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "5ba2c7f293c19a4b5e49cf6709ebc911", "sha256": "4e7041e356f84112ed12c656972934d249f5a67f52d32c09c06e60f5e05f794a" }, "downloads": -1, "filename": "pyditz-0.1.tar.gz", "has_sig": false, "md5_digest": "5ba2c7f293c19a4b5e49cf6709ebc911", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32488, "upload_time": "2013-11-23T00:17:08", "url": "https://files.pythonhosted.org/packages/51/03/cf4a0ae59947e8ebbdae3a38189b1d6bc0a0cd97d407b3c051e993e6cbaa/pyditz-0.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "571bdf258d3ba1008de6ee07c6408994", "sha256": "45153b13b089c45e76e9e6218bc8432c0649e65fb6de81c3d8f5069298a814e5" }, "downloads": -1, "filename": "pyditz-0.1.zip", "has_sig": false, "md5_digest": "571bdf258d3ba1008de6ee07c6408994", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41169, "upload_time": "2013-11-23T00:21:48", "url": "https://files.pythonhosted.org/packages/7d/70/7597364a83b4c6e6516910500d4c02bc909a475614d537ce2934d75dec62/pyditz-0.1.zip" } ], "0.10": [ { "comment_text": "", "digests": { "md5": "fb17c9bc5b57dca545a0f9ccc6736f7b", "sha256": "09b4e8e6f8df588eaec7df40bad5c8a205e544ebd875c5ce150510b1bff20349" }, "downloads": -1, "filename": "pyditz-0.10-py2.7.egg", "has_sig": false, "md5_digest": "fb17c9bc5b57dca545a0f9ccc6736f7b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 137984, "upload_time": "2016-11-27T11:32:17", "url": "https://files.pythonhosted.org/packages/6e/46/e812f05b6ef9dcf58012ff9ed5aa8c77a59b23ea9f1e8a176f72bab6c4e5/pyditz-0.10-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "69a1ffce5ef4df0d15c7d323907830d9", "sha256": "ea3cd7e1677e508719325104c6c653f4a0112c855906656ca44f3f1be8b4a2f4" }, "downloads": -1, "filename": "pyditz-0.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "69a1ffce5ef4df0d15c7d323907830d9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 74425, "upload_time": "2016-11-27T11:32:20", "url": "https://files.pythonhosted.org/packages/5b/1c/3a8a20e59baef0187834386290fa9dfb098c52d399ce9d5e310a6dac66c0/pyditz-0.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f151c0832f5143f1608ad02171090d6c", "sha256": "bedebc87ce5624e677d5ebc84408b0c4da4bb4a66d168e62af3e5ea462548da8" }, "downloads": -1, "filename": "pyditz-0.10.tar.gz", "has_sig": false, "md5_digest": "f151c0832f5143f1608ad02171090d6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126989, "upload_time": "2016-11-27T11:32:10", "url": "https://files.pythonhosted.org/packages/6b/79/047b9ce49140b7efedc18f14a33208779950ce37dd734f94b680bdb7eb93/pyditz-0.10.tar.gz" }, { "comment_text": "", "digests": { "md5": "111b32844166ca67fb5a57d817a34951", "sha256": "22cf1d180efb9988a7b9ab3fdd41f1bb199c3b707feae7074d36bf36197fddd1" }, "downloads": -1, "filename": "pyditz-0.10.zip", "has_sig": false, "md5_digest": "111b32844166ca67fb5a57d817a34951", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 194106, "upload_time": "2016-11-27T11:32:14", "url": "https://files.pythonhosted.org/packages/48/e6/25bf0dd2efda397d04a23743813804e4e163406b6bc8c3ec65c6800b4e30/pyditz-0.10.zip" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "92ddccfd0c23ab35d2f21f0667f14d80", "sha256": "1dbce3ec436ea129a8f7668acef6439ec26e2d5568a946abb3ecabcb8395cfb5" }, "downloads": -1, "filename": "pyditz-0.10.1-py2.7.egg", "has_sig": false, "md5_digest": "92ddccfd0c23ab35d2f21f0667f14d80", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 138068, "upload_time": "2017-07-31T16:56:33", "url": "https://files.pythonhosted.org/packages/b6/16/0d691800ed01fc28352d5e29446ca6f63cf2eb347f229d5cd61e5894227c/pyditz-0.10.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "ec15db9df511b40d1a2c1dabfe460107", "sha256": "2022d24c531ae0c965c8b75cccb2f08fff8b6788bd55f10f8b921fc6984f7de1" }, "downloads": -1, "filename": "pyditz-0.10.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ec15db9df511b40d1a2c1dabfe460107", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 74525, "upload_time": "2017-07-31T16:56:30", "url": "https://files.pythonhosted.org/packages/c2/35/bbddd757958ba6ebb6a76c818cc441e85db6dca8aaeba9ee9c23d2c8aaa3/pyditz-0.10.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4c97b654d5b053dfbc2928c21acafafa", "sha256": "c56ea0975bfe83d8c3385c8842c891ab811216201e93012ba0b309dc97d3d4f7" }, "downloads": -1, "filename": "pyditz-0.10.1.tar.gz", "has_sig": false, "md5_digest": "4c97b654d5b053dfbc2928c21acafafa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127226, "upload_time": "2017-07-31T16:56:35", "url": "https://files.pythonhosted.org/packages/20/ef/43b5f9ebbb857760b81c48a925f4677e40fa8171c26422c5a31372018b41/pyditz-0.10.1.tar.gz" } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "ee8f336d7682aab75ad3376d742fb573", "sha256": "8238055cd23c9a28bccc8aa3e44c1e37f5e3e30b9de9aff8531aded1cabdd225" }, "downloads": -1, "filename": "pyditz-0.10.2-py2.7.egg", "has_sig": false, "md5_digest": "ee8f336d7682aab75ad3376d742fb573", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 138227, "upload_time": "2018-09-01T12:34:00", "url": "https://files.pythonhosted.org/packages/bb/5a/8524d989f3cfa6b54a49679ef4a8271e215e464d1d2370da26b4588f5cbf/pyditz-0.10.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8c2b6c0c52774ead1e9723da79aa4e40", "sha256": "420c3808f635244d5043fc265c1aabbb544aa552aeb55c2a59ed430082a7bd6f" }, "downloads": -1, "filename": "pyditz-0.10.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8c2b6c0c52774ead1e9723da79aa4e40", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 74616, "upload_time": "2018-09-01T12:34:02", "url": "https://files.pythonhosted.org/packages/be/0d/b61be18c0006927fd2ee2835b2c6bb152d45c7c7eeb32b27cc4a2f4db310/pyditz-0.10.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0cbcd811ae78424d7b615de7db9f3a2d", "sha256": "53d782969b5a007055d5467307d01ba7b620dac7d25bbae6a7283510012f8048" }, "downloads": -1, "filename": "pyditz-0.10.2.tar.gz", "has_sig": false, "md5_digest": "0cbcd811ae78424d7b615de7db9f3a2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 128162, "upload_time": "2018-09-01T12:33:56", "url": "https://files.pythonhosted.org/packages/c6/d8/ae054612259d74ea4b1ea59ea72157044b4c1193eddc0587486ceb1f6bd8/pyditz-0.10.2.tar.gz" } ], "0.10.3": [ { "comment_text": "", "digests": { "md5": "fe163ce67d2f515d0621b8223e57ad62", "sha256": "e7dde325f8a7c4a92d1271e0ecdb3f2c6a3423a123edcfe5073d194490f1bfe6" }, "downloads": -1, "filename": "pyditz-0.10.3-py2.7.egg", "has_sig": false, "md5_digest": "fe163ce67d2f515d0621b8223e57ad62", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 138280, "upload_time": "2019-01-11T16:08:23", "url": "https://files.pythonhosted.org/packages/f0/90/987cbc03a5bbb2cf56c8d726ecbf9622f85bb6a107296ad154f2cf529e0e/pyditz-0.10.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c8b0781dfb6b0401ce769392218ba8d3", "sha256": "80d813524a8b6014cb719fa8e8350a24aecbb0df1b7ed503273c99b89eea105b" }, "downloads": -1, "filename": "pyditz-0.10.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c8b0781dfb6b0401ce769392218ba8d3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 74657, "upload_time": "2019-01-11T16:08:25", "url": "https://files.pythonhosted.org/packages/a8/fa/21a96645682b6e313c69035483f6a90c7b0724073be15aecc005cc23b327/pyditz-0.10.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "24d58b01050c3bbab97ee13d8a00ea1b", "sha256": "4ee18271b6a60a968a69b02f18037f4ab0755e184c336650cefaa5dde7f9bd43" }, "downloads": -1, "filename": "pyditz-0.10.3.tar.gz", "has_sig": false, "md5_digest": "24d58b01050c3bbab97ee13d8a00ea1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 128581, "upload_time": "2019-01-11T16:08:18", "url": "https://files.pythonhosted.org/packages/e4/9b/92507d68a26728ddd9086ce42f8cfc4e1ef1ce1f20aeeafc305d7df6f11f/pyditz-0.10.3.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "c31dc1c58494c235e4587babb545c367", "sha256": "4b0eb80042a01abc7a9e74cb7e7c05ae0ed41dfab89ffe7fc9e0c02e3f450d4d" }, "downloads": -1, "filename": "pyditz-0.2-py2.7.egg", "has_sig": false, "md5_digest": "c31dc1c58494c235e4587babb545c367", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 45655, "upload_time": "2013-11-23T16:37:26", "url": "https://files.pythonhosted.org/packages/7d/83/38a1f947373f97296ac041ac8b4f1fc8519e06077f4d43084f90dc514eff/pyditz-0.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "3a689faf8eaf0cdd80ed28d6c5489727", "sha256": "29b95c6e19a7d1dc48454d1e88e50244ded2554c2627213ed209196218d4fc52" }, "downloads": -1, "filename": "pyditz-0.2.tar.gz", "has_sig": false, "md5_digest": "3a689faf8eaf0cdd80ed28d6c5489727", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32861, "upload_time": "2013-11-23T16:37:21", "url": "https://files.pythonhosted.org/packages/7f/16/890a7f86bc21237963739877bad5c41f5f797441da744474c83072f229ce/pyditz-0.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "8541198ca422cd0947649a6e3e7fa658", "sha256": "fa9e001e83eb75bbfe6cc42c86efe186cec96b7108098b56c1690aa5d444915a" }, "downloads": -1, "filename": "pyditz-0.2.zip", "has_sig": false, "md5_digest": "8541198ca422cd0947649a6e3e7fa658", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42113, "upload_time": "2013-11-23T16:37:23", "url": "https://files.pythonhosted.org/packages/80/d1/36b32491d735ccdff9a599f424a37347387f8c83577815f295053a139ab4/pyditz-0.2.zip" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "78ad262173c0e7d72428b1126da106d7", "sha256": "24f9fcfca23637aa17520933ac06c80975db4d562606ccddbc36b5dc77103f24" }, "downloads": -1, "filename": "pyditz-0.3-py2.7.egg", "has_sig": false, "md5_digest": "78ad262173c0e7d72428b1126da106d7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 45606, "upload_time": "2013-11-24T10:21:58", "url": "https://files.pythonhosted.org/packages/6d/92/a248601d175b28a3b64168811472ccc0009474e2a042080e9a3524de4b51/pyditz-0.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "70bd9c2cba76a952651946c5fc9fbdc6", "sha256": "19df4e6f56ff2c5d8868a1a725aee861edb2e0a1d89bd489633c1aad7e998fbd" }, "downloads": -1, "filename": "pyditz-0.3.tar.gz", "has_sig": false, "md5_digest": "70bd9c2cba76a952651946c5fc9fbdc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33185, "upload_time": "2013-11-24T10:21:53", "url": "https://files.pythonhosted.org/packages/67/26/79884b9e3c4c573860f2fcb77dd74a86c7fd35a1d832c1406557d1d83768/pyditz-0.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "c15b7d363090f84bdd88d38718669c54", "sha256": "beccd49f8ab94372c0bf907add2d581412ea7dad7c1162a3d11d7788b1f36f9d" }, "downloads": -1, "filename": "pyditz-0.3.zip", "has_sig": false, "md5_digest": "c15b7d363090f84bdd88d38718669c54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42859, "upload_time": "2013-11-24T10:21:55", "url": "https://files.pythonhosted.org/packages/2c/f8/cf80f52252cc588c524b70fe9e2202e7d2933091e53829cd89307673f4a1/pyditz-0.3.zip" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "8c61891b5c32b5655b4e4fba8adab8c1", "sha256": "9ff12ed47f228e199eea9126da2d882bdde4ac7c9db38f9ed9998645a6d24b4c" }, "downloads": -1, "filename": "pyditz-0.4-py2.7.egg", "has_sig": false, "md5_digest": "8c61891b5c32b5655b4e4fba8adab8c1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 73139, "upload_time": "2013-12-09T19:39:26", "url": "https://files.pythonhosted.org/packages/ea/0e/8642d96a2749ea6817484d3d3b21f4f98478c02828ddf3171a9104c76854/pyditz-0.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1df85b20ccc585d6f7b33d778142c7df", "sha256": "78e54bed96b1cace67399dbba98661573f4d3b538ce7c5bef9112d01122ccf98" }, "downloads": -1, "filename": "pyditz-0.4.tar.gz", "has_sig": false, "md5_digest": "1df85b20ccc585d6f7b33d778142c7df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52345, "upload_time": "2013-12-09T19:39:20", "url": "https://files.pythonhosted.org/packages/05/75/40a8466b13f46f8ac701987082b14ad6ef1de458359f8d0df8294c91d7a4/pyditz-0.4.tar.gz" }, { "comment_text": "", "digests": { "md5": "8918c706657993b1a3e6d50843e22aa0", "sha256": "da2125473dd7f9f5025b1320861455eb654270373ddeed7cdc329b4490b6469f" }, "downloads": -1, "filename": "pyditz-0.4.zip", "has_sig": false, "md5_digest": "8918c706657993b1a3e6d50843e22aa0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70218, "upload_time": "2013-12-09T19:39:23", "url": "https://files.pythonhosted.org/packages/49/e4/c7de66295c678fdd6ff3e85ed0cb4312ac772a830c1b68fed8baef8d0c66/pyditz-0.4.zip" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "ff7093868a80c7d1d01ca8367d2fc4dd", "sha256": "d22b3fe22116dcf8ba035b9a6c4a048467c781757a69a1e7acd4954df79e2df9" }, "downloads": -1, "filename": "pyditz-0.5-py2.7.egg", "has_sig": false, "md5_digest": "ff7093868a80c7d1d01ca8367d2fc4dd", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 80714, "upload_time": "2013-12-12T22:26:44", "url": "https://files.pythonhosted.org/packages/46/ce/76c406c5eaf3d45cc9b6ca11c047ddd3603c6d29e090cb60ad74490396be/pyditz-0.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "659fce604f786bf42e4693921c4180cd", "sha256": "869801339900ccb69590642299ef5606d7e15b53a5af2c8d3d16dbcb08899958" }, "downloads": -1, "filename": "pyditz-0.5.tar.gz", "has_sig": false, "md5_digest": "659fce604f786bf42e4693921c4180cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61933, "upload_time": "2013-12-12T22:26:38", "url": "https://files.pythonhosted.org/packages/b0/da/5eb73526cb39593af8cadd5141ba0a3aaa878793f244958170093d7f37e7/pyditz-0.5.tar.gz" }, { "comment_text": "", "digests": { "md5": "ca9e123eba57a3f318c572d5f6e1ea92", "sha256": "6e9ce6c66537adb3a3c87deb99846a0d98bbd7e2042bb9bb91e98cd34f0d74c7" }, "downloads": -1, "filename": "pyditz-0.5.zip", "has_sig": false, "md5_digest": "ca9e123eba57a3f318c572d5f6e1ea92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85891, "upload_time": "2013-12-12T22:26:40", "url": "https://files.pythonhosted.org/packages/5b/30/2117794784b26bc15ef546fdeaa58a9ff4df9dab1ed917342463a818fa75/pyditz-0.5.zip" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "2375138f5304bb6d4ba2810938100476", "sha256": "c64fd821d910b63623d5d943ec681564cb4ea058e3270245bb1824743c22a2de" }, "downloads": -1, "filename": "pyditz-0.5.1-py2.7.egg", "has_sig": false, "md5_digest": "2375138f5304bb6d4ba2810938100476", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 79853, "upload_time": "2013-12-18T19:46:47", "url": "https://files.pythonhosted.org/packages/e5/28/cc4c8212bb28ea7d02cddffe7ca36fcaada21fa4763d6bd6e3fd510c3bb2/pyditz-0.5.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d5e990258907f524478929a4e3631ace", "sha256": "0f865d8834122d2e5ea0476aa308fd2dee098c610719d68958cba2912af20066" }, "downloads": -1, "filename": "pyditz-0.5.1.tar.gz", "has_sig": false, "md5_digest": "d5e990258907f524478929a4e3631ace", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58102, "upload_time": "2013-12-18T19:46:41", "url": "https://files.pythonhosted.org/packages/cd/80/61e55bb259936169147de0c36ea138a2b86904f0fd942df84eb649df50fe/pyditz-0.5.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "fa6d17c2c03baad0089e719bba816b05", "sha256": "3eceba536f13b529166b968eb773825ea15a0032124e3d8482923753f654f288" }, "downloads": -1, "filename": "pyditz-0.5.1.zip", "has_sig": false, "md5_digest": "fa6d17c2c03baad0089e719bba816b05", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 87527, "upload_time": "2013-12-18T19:46:44", "url": "https://files.pythonhosted.org/packages/cf/e3/e19f6b5465ab54c340f81de035411cd14533d463bca24056a35dc04af45c/pyditz-0.5.1.zip" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "2ca4e618b9ae9cd5ddd5313b92864f34", "sha256": "91e6bba3bb19d88308a8ddb6f0395cfc79824ec60204b3a05c8ce6f5cdead031" }, "downloads": -1, "filename": "pyditz-0.5.2-py2.7.egg", "has_sig": false, "md5_digest": "2ca4e618b9ae9cd5ddd5313b92864f34", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 76985, "upload_time": "2013-12-20T19:36:39", "url": "https://files.pythonhosted.org/packages/45/70/d55cdcf7206f9f5c78f6fe7a4b4bfd54f035bfb6d171f66da7e82d1921cf/pyditz-0.5.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1e43033ba0cc2fa465c72f4e850dba8d", "sha256": "820d28c7f0e219b66e662cb059311698f024bd6f4ee0850e086a74e63e1ee41e" }, "downloads": -1, "filename": "pyditz-0.5.2.tar.gz", "has_sig": false, "md5_digest": "1e43033ba0cc2fa465c72f4e850dba8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54819, "upload_time": "2013-12-20T19:36:34", "url": "https://files.pythonhosted.org/packages/31/ee/b3460794e152e7bcf7b2d80b799e8b4af06896c833c46c6f6944f1d6dbc8/pyditz-0.5.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "1c8d7c1a6b412eba55669c94b59a499a", "sha256": "f876f6596167dd6b98273746d91e8cf594123fd57f21ac93d1bd8d500efb77ae" }, "downloads": -1, "filename": "pyditz-0.5.2.zip", "has_sig": false, "md5_digest": "1c8d7c1a6b412eba55669c94b59a499a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79177, "upload_time": "2013-12-20T19:36:36", "url": "https://files.pythonhosted.org/packages/ce/f6/a3586df3281d1c610aa4e8e3c4c366213e947a7c28751b1200fcda65b1c4/pyditz-0.5.2.zip" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "35ec53693982c778b4676447b1534078", "sha256": "c75e0baffe9bdbba6c4bf8025ef59f5bbc78e3835fcbd2cae92fcbdcbc9bf6b3" }, "downloads": -1, "filename": "pyditz-0.6-py2.7.egg", "has_sig": false, "md5_digest": "35ec53693982c778b4676447b1534078", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 78608, "upload_time": "2014-03-28T17:41:01", "url": "https://files.pythonhosted.org/packages/5e/35/dec2e396118cc0f016253a7c08b71b94257404720b5bd1db87ab9c88ff48/pyditz-0.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6a18b77ccbd20f8ba6ee6777759f103c", "sha256": "972d759c4170370ecf30a18afd214168fcebf055986c4297b7dc845cf05cb5f0" }, "downloads": -1, "filename": "pyditz-0.6.tar.gz", "has_sig": false, "md5_digest": "6a18b77ccbd20f8ba6ee6777759f103c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64039, "upload_time": "2014-03-28T17:40:55", "url": "https://files.pythonhosted.org/packages/10/d7/df27a9796ad45837743dfc61f84e8f13f1b8c0ba25573aa5800676074bf6/pyditz-0.6.tar.gz" }, { "comment_text": "", "digests": { "md5": "b50fffc0d4e0645cd185938cfcaab597", "sha256": "391870b5bbc0e3dff7da836eaa37dbb245ee553d7541ba40afacba1188a9c975" }, "downloads": -1, "filename": "pyditz-0.6.zip", "has_sig": false, "md5_digest": "b50fffc0d4e0645cd185938cfcaab597", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 89935, "upload_time": "2014-03-28T17:40:58", "url": "https://files.pythonhosted.org/packages/d5/02/1d6d110de0940e0cabbed69a3ed1ae8622fe022058ca7d85aca3f4d65fea/pyditz-0.6.zip" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "68462a016072eeb3b077448cbdabd59e", "sha256": "27f0cfc8680f4ba5bc13d4eae8e8045f5691ffa503839ce47f736cebb62ee12e" }, "downloads": -1, "filename": "pyditz-0.6.1-py2.7.egg", "has_sig": false, "md5_digest": "68462a016072eeb3b077448cbdabd59e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 78719, "upload_time": "2014-08-09T13:35:40", "url": "https://files.pythonhosted.org/packages/8e/06/2ecc678714446fa414828b48b85daaf40ad27d63ddced90b8c028386b1b3/pyditz-0.6.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6775e4c58ec5255cb07151c309d29441", "sha256": "2cd8767494b63ad1160de59036f0ad499fde00a62c30c434ac71da356ec809fa" }, "downloads": -1, "filename": "pyditz-0.6.1.tar.gz", "has_sig": false, "md5_digest": "6775e4c58ec5255cb07151c309d29441", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64700, "upload_time": "2014-08-09T13:35:34", "url": "https://files.pythonhosted.org/packages/87/58/dd2d1464f6ab205da8fb3f7697be9582f2a338bd1ad0a8bd5180deab891c/pyditz-0.6.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "bed740677252ad77dc84b46fd03f4642", "sha256": "7686bb7d5cfc03506468b095662412cabb465beeff86832f6eab7b38f01b9b0b" }, "downloads": -1, "filename": "pyditz-0.6.1.zip", "has_sig": false, "md5_digest": "bed740677252ad77dc84b46fd03f4642", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91650, "upload_time": "2014-08-09T13:35:37", "url": "https://files.pythonhosted.org/packages/b8/65/be51f1425a2482d21d156cbc22e7f2014a72b10f8023b5aceb3da729a360/pyditz-0.6.1.zip" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "715424d17a5987157ca111014eb37c9d", "sha256": "319dd836778dc1742d09b78c45b8c4b9db3777316432e9cc4c8de28b25da47dd" }, "downloads": -1, "filename": "pyditz-0.6.2-py2.7.egg", "has_sig": false, "md5_digest": "715424d17a5987157ca111014eb37c9d", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 79379, "upload_time": "2014-08-10T13:48:51", "url": "https://files.pythonhosted.org/packages/04/16/6f3194ad1a0decbcdc45e82f592d0cc0e7500f5fb53af796168d0b288c68/pyditz-0.6.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "9c51a6fb4892f1e1a5046471ab0ed8ae", "sha256": "b9c8d79a4a992d5b337d5e6281b5a698940a31d4b320025688a98b1a6779b2b4" }, "downloads": -1, "filename": "pyditz-0.6.2.tar.gz", "has_sig": false, "md5_digest": "9c51a6fb4892f1e1a5046471ab0ed8ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65681, "upload_time": "2014-08-10T13:48:45", "url": "https://files.pythonhosted.org/packages/45/e7/97115dd08424314cb98b2d7224b6c4cd7c2a0b2e7994e549e4d8e0eeec1e/pyditz-0.6.2.tar.gz" }, { "comment_text": "", "digests": { "md5": "62d6ae0818f0aafc7aae082ca7859323", "sha256": "6d1c99a4763f81dcbec58744b0fb5a6444cdff3e9214ec10d43a4ebe8d54a4ca" }, "downloads": -1, "filename": "pyditz-0.6.2.zip", "has_sig": false, "md5_digest": "62d6ae0818f0aafc7aae082ca7859323", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93531, "upload_time": "2014-08-10T13:48:48", "url": "https://files.pythonhosted.org/packages/a9/aa/4765367b86dbfc1a9a1607aa581341e7da2b38768eda8ec14e0cbbbb1d93/pyditz-0.6.2.zip" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "ab0a9e2ebc65b70783d8ae93ae81d8b0", "sha256": "cda368d16c8eba4a0107839d85dc53e6625ceda62997f8bdf65eded488c5c7e0" }, "downloads": -1, "filename": "pyditz-0.7-py2.7.egg", "has_sig": false, "md5_digest": "ab0a9e2ebc65b70783d8ae93ae81d8b0", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 97135, "upload_time": "2014-09-28T18:46:25", "url": "https://files.pythonhosted.org/packages/5f/b0/d96becac4233a9dbe8aeb286b66ec332a9dbe7d255708828215be16eaf13/pyditz-0.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "710e8931adf4eed1ae8b8ae1455fdc5f", "sha256": "1867d4baf105e0b34a31349adf013cf1607eb75c939f9e5c692439e08885af16" }, "downloads": -1, "filename": "pyditz-0.7.tar.gz", "has_sig": false, "md5_digest": "710e8931adf4eed1ae8b8ae1455fdc5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 88909, "upload_time": "2014-09-28T18:46:17", "url": "https://files.pythonhosted.org/packages/ef/b9/31ca390d32c8bcf1215e3d4ea7595275067c2388bfdc24e401acf08e503a/pyditz-0.7.tar.gz" }, { "comment_text": "", "digests": { "md5": "8afb22b5db4a429a5c67aff6f74cffcd", "sha256": "ee250d5eb93f028c80b2ee14b0da8001c67a2f14db568110274e3d35f4b7280b" }, "downloads": -1, "filename": "pyditz-0.7.zip", "has_sig": false, "md5_digest": "8afb22b5db4a429a5c67aff6f74cffcd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 133993, "upload_time": "2014-09-28T18:46:21", "url": "https://files.pythonhosted.org/packages/4d/6e/dcf780368f4df5bf96e9a2e74762cffa041ef173eeb7556a66307504ff20/pyditz-0.7.zip" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "5e12ffe19cd4af9fe513d8a52281dd9f", "sha256": "3392d5cbfc4410d8ebc933e80d6836dff9380383b112eddde4680606d295c902" }, "downloads": -1, "filename": "pyditz-0.8-py2.7.egg", "has_sig": false, "md5_digest": "5e12ffe19cd4af9fe513d8a52281dd9f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 115047, "upload_time": "2014-12-05T14:09:30", "url": "https://files.pythonhosted.org/packages/9b/78/cfd2d3502a2e51abe11a135d355319d2b3f15bb8fd510f688aefa3b30d63/pyditz-0.8-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "805709156670a6ecfaf449015ef6d608", "sha256": "fad063a21c9713b5af10dfaa108530d50d2bfb66128b7e7fcb5d9c7f3822c5b7" }, "downloads": -1, "filename": "pyditz-0.8.tar.gz", "has_sig": false, "md5_digest": "805709156670a6ecfaf449015ef6d608", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106564, "upload_time": "2014-12-05T14:09:23", "url": "https://files.pythonhosted.org/packages/0a/1d/b7e21fad31a3270eb6b774924987fb57580f0ba1a6db8394bcb8796de0eb/pyditz-0.8.tar.gz" }, { "comment_text": "", "digests": { "md5": "99ddc5ada3ed6382b3b0b36d0e3cb4c4", "sha256": "3dd656257d96177dae0af131598d9729a961f096317895dd8d2cd2a85b813c39" }, "downloads": -1, "filename": "pyditz-0.8.zip", "has_sig": false, "md5_digest": "99ddc5ada3ed6382b3b0b36d0e3cb4c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 160520, "upload_time": "2014-12-05T14:09:27", "url": "https://files.pythonhosted.org/packages/25/0b/7663ff5f73bc7ed936a557033261650d20cc615010e7bd6f9827a4b574b8/pyditz-0.8.zip" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "9114f1a550a17c8da32b9f9cc77127f0", "sha256": "4da239a43321902e57201ac90462ba52c297ce19ce8c382f559d2ca91802579a" }, "downloads": -1, "filename": "pyditz-0.8.1-py2.7.egg", "has_sig": false, "md5_digest": "9114f1a550a17c8da32b9f9cc77127f0", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 115617, "upload_time": "2015-08-18T19:11:10", "url": "https://files.pythonhosted.org/packages/b5/71/7323d2a643515e9eeaf663868f9ce41078e76c69ce4b257122335de56f2c/pyditz-0.8.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8bcd0a6bff1f8bcbab8ee703e7bef762", "sha256": "68a044c5d46fad2c8dfecc671035cef31a842278844026e9f22a85c2d299574a" }, "downloads": -1, "filename": "pyditz-0.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8bcd0a6bff1f8bcbab8ee703e7bef762", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 63744, "upload_time": "2015-08-18T19:11:14", "url": "https://files.pythonhosted.org/packages/ae/61/7236829f83fe0b8ad2dd51015118560cad22a4c585e2cc735c5e83e52d76/pyditz-0.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5a83692bfad20d67e9e347f95edfbcdd", "sha256": "98af6c5b4e7ca685a8ea4f9cb919cf37617192cbe067f0215cc59a9eb93d4d50" }, "downloads": -1, "filename": "pyditz-0.8.1.tar.gz", "has_sig": false, "md5_digest": "5a83692bfad20d67e9e347f95edfbcdd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109139, "upload_time": "2015-08-18T19:10:56", "url": "https://files.pythonhosted.org/packages/d1/ae/2cfeba82939b936eb427ee5be47c0d1356355bf585fb6cbddefc4fc010db/pyditz-0.8.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "921f944b97766fec4c16f5a39a6fd7bf", "sha256": "502bd9bf1e519d72471ce2844dca96dd16a92809194a02cbae78e07f6b7b62c5" }, "downloads": -1, "filename": "pyditz-0.8.1.zip", "has_sig": false, "md5_digest": "921f944b97766fec4c16f5a39a6fd7bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163071, "upload_time": "2015-08-18T19:11:01", "url": "https://files.pythonhosted.org/packages/8c/4c/bcd51d3791bbf443fd7d12b6811f308ad7869973b59cb09e89375dd5168d/pyditz-0.8.1.zip" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "9459163116cc55f00af3b0fcc052a1b5", "sha256": "5ce74c88b432992b2a511eae947e795208e9eb6c777db080796e570b29635010" }, "downloads": -1, "filename": "pyditz-0.9-py2.7.egg", "has_sig": false, "md5_digest": "9459163116cc55f00af3b0fcc052a1b5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 130830, "upload_time": "2015-09-27T09:50:24", "url": "https://files.pythonhosted.org/packages/75/a8/6e7ee1b2732ae62a151ccd20b7a8c9045c7874cf8cd3657d788ee2411895/pyditz-0.9-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "293fa736680b7d3267c3673499b67df2", "sha256": "bb6af7b8c3cd85513108dd442270ce527fcd65cd5762252c4ad51e735910f5e9" }, "downloads": -1, "filename": "pyditz-0.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "293fa736680b7d3267c3673499b67df2", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 71462, "upload_time": "2015-09-27T09:50:29", "url": "https://files.pythonhosted.org/packages/11/d4/6c612d5009da9809d791c006088fab61e3fceb442fb71fa8879237954d81/pyditz-0.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9ba6863fe143134e4f6af4bdb6fa14f1", "sha256": "d362ca9cd4cbca01c1aa4cc561fe59751915dac59f2f96b06360ce86b2896f9c" }, "downloads": -1, "filename": "pyditz-0.9.tar.gz", "has_sig": false, "md5_digest": "9ba6863fe143134e4f6af4bdb6fa14f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121762, "upload_time": "2015-09-27T09:50:13", "url": "https://files.pythonhosted.org/packages/6e/e2/a3b1de0e02822894fe461c3e53c2f6416bae354b2a1689c26f574588c559/pyditz-0.9.tar.gz" }, { "comment_text": "", "digests": { "md5": "3199f3b56c41745ed6a013c6b733796d", "sha256": "10376d518fea2ed760935933d76f72cb427f343ff2003083d89106072193344e" }, "downloads": -1, "filename": "pyditz-0.9.zip", "has_sig": false, "md5_digest": "3199f3b56c41745ed6a013c6b733796d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 183253, "upload_time": "2015-09-27T09:50:19", "url": "https://files.pythonhosted.org/packages/eb/ac/cfa7889b18efb2db109e7641be1a2b5275a29190a3f51a24ce0a07c498fa/pyditz-0.9.zip" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "c2427acb6b544e2e5f10d7178726658e", "sha256": "20c1d89e1e1945aee7ae6d77a3c9ddfdc10daa5123592e6157a73b2fa45690d2" }, "downloads": -1, "filename": "pyditz-0.9.1-py2.7.egg", "has_sig": false, "md5_digest": "c2427acb6b544e2e5f10d7178726658e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 132103, "upload_time": "2016-03-24T12:10:52", "url": "https://files.pythonhosted.org/packages/5d/b0/0764ef158a946dea7d9ac715195033b4694b101bfcdeb22e4336519655ff/pyditz-0.9.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a108d85b634d96761e7de253a0faba1d", "sha256": "b0238b8d354b85f4fec0483921797735bc1f1896ee08335da2064108a64bd0b8" }, "downloads": -1, "filename": "pyditz-0.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a108d85b634d96761e7de253a0faba1d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 72074, "upload_time": "2016-03-24T12:11:02", "url": "https://files.pythonhosted.org/packages/e4/eb/91f1418853965bf180c0b31f22b2379740afcec29fa55921a077ffbdfa5f/pyditz-0.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "905ca4c384547f3e92542f0ced6ecf18", "sha256": "23aabd330ba198eaad96c739647a13ad37d9a1d8141e041d66e77a2265f73934" }, "downloads": -1, "filename": "pyditz-0.9.1.tar.gz", "has_sig": false, "md5_digest": "905ca4c384547f3e92542f0ced6ecf18", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 122428, "upload_time": "2016-03-24T12:10:36", "url": "https://files.pythonhosted.org/packages/0e/8a/eb40d38d793529e77c85f15b1f462e9fe7aacefb64282971a24f463a13b0/pyditz-0.9.1.tar.gz" }, { "comment_text": "", "digests": { "md5": "d21dd693a52929d9f36fef4079fa8609", "sha256": "ac4fc22cab328eb52ec9ed9403feb1d6cacf7f33a61e5ec4fc0b0f920212607f" }, "downloads": -1, "filename": "pyditz-0.9.1.zip", "has_sig": false, "md5_digest": "d21dd693a52929d9f36fef4079fa8609", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 186494, "upload_time": "2016-03-24T12:10:44", "url": "https://files.pythonhosted.org/packages/15/75/9bc37f5f3fe885454eaf5918c122f1f9a8ce3b477658439de9f59278fd9c/pyditz-0.9.1.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "fe163ce67d2f515d0621b8223e57ad62", "sha256": "e7dde325f8a7c4a92d1271e0ecdb3f2c6a3423a123edcfe5073d194490f1bfe6" }, "downloads": -1, "filename": "pyditz-0.10.3-py2.7.egg", "has_sig": false, "md5_digest": "fe163ce67d2f515d0621b8223e57ad62", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 138280, "upload_time": "2019-01-11T16:08:23", "url": "https://files.pythonhosted.org/packages/f0/90/987cbc03a5bbb2cf56c8d726ecbf9622f85bb6a107296ad154f2cf529e0e/pyditz-0.10.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c8b0781dfb6b0401ce769392218ba8d3", "sha256": "80d813524a8b6014cb719fa8e8350a24aecbb0df1b7ed503273c99b89eea105b" }, "downloads": -1, "filename": "pyditz-0.10.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c8b0781dfb6b0401ce769392218ba8d3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 74657, "upload_time": "2019-01-11T16:08:25", "url": "https://files.pythonhosted.org/packages/a8/fa/21a96645682b6e313c69035483f6a90c7b0724073be15aecc005cc23b327/pyditz-0.10.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "24d58b01050c3bbab97ee13d8a00ea1b", "sha256": "4ee18271b6a60a968a69b02f18037f4ab0755e184c336650cefaa5dde7f9bd43" }, "downloads": -1, "filename": "pyditz-0.10.3.tar.gz", "has_sig": false, "md5_digest": "24d58b01050c3bbab97ee13d8a00ea1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 128581, "upload_time": "2019-01-11T16:08:18", "url": "https://files.pythonhosted.org/packages/e4/9b/92507d68a26728ddd9086ce42f8cfc4e1ef1ce1f20aeeafc305d7df6f11f/pyditz-0.10.3.tar.gz" } ] }