{ "info": { "author": "Benjamin Bach", "author_email": "benjamin@overtag.dk", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development", "Topic :: Software Development :: Libraries :: Application Frameworks" ], "description": "django-wiki\n===========\n\n|Docs| |Build Status| |Coverage Status| |PyPi| |Dependency Status| |IRC|\n\n.. |Docs| image:: https://readthedocs.org/projects/django-wiki/badge/?version=latest\n :target: http://django-wiki.readthedocs.io/\n.. |Build Status| image:: https://travis-ci.org/django-wiki/django-wiki.png?branch=master\n :target: https://travis-ci.org/django-wiki/django-wiki\n.. |Coverage Status| image:: https://codecov.io/github/django-wiki/django-wiki/coverage.svg?branch=master\n :target: https://codecov.io/github/django-wiki/django-wiki?branch=master\n.. |PyPi| image:: https://badge.fury.io/py/wiki.svg\n :target: https://pypi.python.org/pypi/wiki/\n.. |Downloads| image:: https://img.shields.io/pypi/dm/wiki.svg\n :target: https://pypi.python.org/pypi/wiki/\n.. |Dependency Status| image:: https://gemnasium.com/django-wiki/django-wiki.svg\n :target: https://gemnasium.com/django-wiki/django-wiki\n.. |IRC| image:: https://img.shields.io/badge/irc-%23django--wiki%20on%20freenode-blue.svg\n :target: http://webchat.freenode.net?channels=%23django-wiki\n\nDjango support\n--------------\n\nThe below table explains which Django versions are supported.\n\n+------------------+----------------+--------------+\n| Release | Django | Upgrade from |\n+==================+================+==============+\n| 0.4.x | 1.11, 2.0, 2.1 | 0.3 |\n+------------------+----------------+--------------+\n| 0.3.x | 1.8, 1.9, | 0.2 |\n| | 1.10, 1.11 | |\n+------------------+----------------+--------------+\n| 0.2.x | 1.8, 1.9, 1.10 | 0.1 |\n+------------------+----------------+--------------+\n| 0.1.x | 1.5, 1.6, 1.7 | 0.0.24 |\n+------------------+----------------+--------------+\n| 0.0.24 | 1.4, 1.5, 1.6 | 0.0.? |\n| | 1.7 (unstable) | |\n+------------------+----------------+--------------+\n\nFor upgrade instructions, please refer to the `Release\nNotes `__\n\n\nTranslations (Transifex)\n------------------------\n\nDjango-wiki has almost fully translated into 7 languages, apart from the\ndefault (English). But please help out in adding more languages! It's\nvery easy, you don't even need to be a programmer.\n\nhttps://www.transifex.com/django-wiki/django-wiki/\n\nDemo\n----\n\nA demo running the latest ``master`` is available here, sign up for an\naccount to see the notification system.\n\nhttps://demo.django.wiki\n\nCommunity\n---------\n\nPlease use our IRC or mailing list (google group) for getting in touch\non development and support. Please do not email developers asking for\npersonal support.\n\n- #django-wiki on irc.freenode.net\n- `django-wiki@googlegroups.com `__\n- `twitter:djangowiki `__\n\n*THIS IS A WORK IN PROGRE...*\n-----------------------------\n\nCurrently, the model API is subject to smaller changes, and the plugin\nAPI seems pretty stable.\n\nIn order to customize the wiki, best idea is to override templates and create\nyour own template tags. Do not make your own hard copy of this repository in\norder to fiddle with internal parts of the wiki -- this strategy will lead you\nto lose out on future updates with highly improved features and plugins.\nPossibly security updates as well!\n\nThe release cycle has already begun, so you can administer django-wiki\nthrough Pypi and pip.\n\nAll views are class-based, however don't take it as an encouragement to\nextend them, unless you are prepared to modify both templates and view\nclasses every time there is an update.\n\nContributing\n------------\n\nPlease read our\n`Developer Guide `__\n\nManifesto\n---------\n\nDjango needs a mature wiki system appealing to all kinds of needs, both\nbig and small:\n\n- **Be pluggable and light-weight.** Don't integrate optional features\n in the core.\n- **Be open.** Make an extension API that allows the ecology of the\n wiki to grow in a structured way. Wikipedia consists of over `1100\n extension projects `__\n written for MediaWiki. We should learn from this.\n- **Be smart.** `This\n is `__\n the map of tables in MediaWiki - we'll understand the choices of\n other wiki projects and make our own. After-all, this is a Django\n project.\n- **Be simple.** The source code should *almost* explain itself.\n- **Be structured.** Markdown is a simple syntax for readability.\n Features should be implemented either through easy coding patterns in\n the content field, but rather stored in a structured way (in the\n database) and managed through a friendly interface. This gives\n control back to the website developer, and makes knowledge more\n usable. Just ask: Why has Wikipedia never changed? Answer: Because\n it's knowledge is stored in a complicated way, thus it becomes very\n static.\n\nDocs\n----\n\nSee the docs/ folder, or read them at:\n\nhttp://django-wiki.readthedocs.io/en/latest/\n\nIf you wish to add something, please ask in the google group or raise an\nissue if you're in doubt about whether something might change.\n\nBackground\n----------\n\nDjango-wiki is a rewrite of\n`django-simplewiki `__, a\nproject from 2009 that aimed to be a base system for a wiki. It proposed\nthat the user should customize the wiki by overwriting templates, but\nsoon learned that the only customization that really took place was that\npeople forked the entire project. We don't want that for django-wiki, we\nwant it to be modular and extendable.\n\nAs of now, Django has existed for too long without a proper wiki\napplication. The dream of django-wiki is to become a contestant\nalongside Mediawiki, so that Django developers can stick to the Django\nplatform even when facing tough challenges such as implementing a wiki.\n\nQ&A\n---\n\n- **Why is the module named just** ``wiki`` **?** Because when we tried\n ``pip install wiki``, it returned \"No distributions at all found\n for wiki\", so we had to make up for that!\n- **What markup language will you use?**\n `Markdown `__. The markup\n renderer is not a pluggable part but has been internalized into core\n parts. Discussion should go here:\n https://github.com/django-wiki/django-wiki/issues/76\n- **Why not use django-reversion?** It's a great project, but if the\n wiki has to grow ambitious, someone will have to optimize its\n behavior, and using a third-party application for something as\n crucial as the revision system is a no-go in this regard.\n- **Any support for multiple wikis?** Yes, in an sense you can just\n imagine that you always have multiple wikis, because you always have\n hierarchies and full control of their permissions. See this\n discussion: https://github.com/django-wiki/django-wiki/issues/63\n\n\nRequirements\n------------\n\nPlease refer to current release to see exact version dependencies. And\nmake note that Pillow needs to have certain build dependencies satisfied\non your host system.\n\n- `Django `__\n- `Markdown `__\n- `django-mptt `__\n- `django-sekizai `__\n- `sorl-thumbnail `__\n- `Pillow (Python Imaging Library) `__\n- Python>=3.4\n\n\n\nAcknowledgements\n----------------\n\n- The people at `edX `__ & MIT for finding\n and supporting the project both financially and with ideas.\n- `django-cms `__ for venturing\n where no django app has gone before in terms of well-planned features\n and high standards. It's a very big inspiration.\n- `django-mptt `__, a\n wonderful utility for inexpensively using tree structures in Django\n with a relational database backend.\n- `spookylukey `__,\n `jluttine `__,\n `duvholt `__,\n `valberg `__,\n `jdcaballerov `__,\n `yekibud `__,\n `bridger `__,\n `TomLottermann `__,\n `crazyzubr `__, and `everyone\n else `__\n involved!\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.django-wiki.org", "keywords": "django,wiki,markdown", "license": "GPLv3", "maintainer": "", "maintainer_email": "", "name": "wiki", "package_url": "https://pypi.org/project/wiki/", "platform": "", "project_url": "https://pypi.org/project/wiki/", "project_urls": { "Homepage": "http://www.django-wiki.org" }, "release_url": "https://pypi.org/project/wiki/0.4.5/", "requires_dist": [ "Django (<2.2,>=1.11)", "bleach (<2.2,>=2.1)", "Pillow", "django-nyt (<1.2,>=1.1.1)", "django-mptt (<0.10,>=0.9)", "django-sekizai (>=0.10)", "sorl-thumbnail (<13,>=12)", "Markdown (<2.7,>=2.6)", "django-functest (<1.1,>=1.0.3) ; extra == 'devel'", "pytest (<3.5,>=3.4) ; extra == 'devel'", "pytest-django (<3.2,>=3.1) ; extra == 'devel'", "pytest-cov (<2.5,>=2.4) ; extra == 'devel'", "pytest-pythonpath (<0.8,>=0.7) ; extra == 'devel'", "flake8 (<3.6,>=3.5) ; extra == 'devel'", "flake8-isort ; extra == 'devel'", "pre-commit ; extra == 'devel'", "django-functest (<1.1,>=1.0.3) ; extra == 'test'", "pytest (<3.5,>=3.4) ; extra == 'test'", "pytest-django (<3.2,>=3.1) ; extra == 'test'", "pytest-cov (<2.5,>=2.4) ; extra == 'test'", "pytest-pythonpath (<0.8,>=0.7) ; extra == 'test'", "flake8 (<3.6,>=3.5) ; extra == 'testlint'", "flake8-isort ; extra == 'testlint'" ], "requires_python": "", "summary": "A wiki system written for the Django framework.", "version": "0.4.5" }, "last_serial": 5545840, "releases": { "0.0.20": [ { "comment_text": "", "digests": { "md5": "2150ac8b39d66c78725ed37b6f225b9b", "sha256": "189942c0d4b74d95ccb93e6381a796133bec958f8dae89e80a0e98030296b2a6" }, "downloads": -1, "filename": "wiki-0.0.20.tar.gz", "has_sig": false, "md5_digest": "2150ac8b39d66c78725ed37b6f225b9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 639509, "upload_time": "2013-07-16T13:47:09", "url": "https://files.pythonhosted.org/packages/d4/e7/d05777036f0d940b106edd885e4c42fd9cc4c12333f6760625bed8081fdd/wiki-0.0.20.tar.gz" } ], "0.0.21": [ { "comment_text": "", "digests": { "md5": "00b4232e966b6b0c1592b975ce34bb01", "sha256": "82c21b41937d3a9785b037201c2d4f65f956921cfcce5d1a7ee57398c70a70c1" }, "downloads": -1, "filename": "wiki-0.0.21.tar.gz", "has_sig": false, "md5_digest": "00b4232e966b6b0c1592b975ce34bb01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 935721, "upload_time": "2013-11-18T00:35:47", "url": "https://files.pythonhosted.org/packages/cb/0c/e45b4f36295c1674b6c3a7ccea040b58ba1b8499c8f3230eb7e88ac72093/wiki-0.0.21.tar.gz" } ], "0.0.22": [ { "comment_text": "", "digests": { "md5": "036449280a84e9c596e2c4bcef5acfb6", "sha256": "82393f5935bf1ea5403bb6c264e0d0dcf1b49a2db8b2e5a7eb7cc9d0cea1614a" }, "downloads": -1, "filename": "wiki-0.0.22.tar.gz", "has_sig": false, "md5_digest": "036449280a84e9c596e2c4bcef5acfb6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 879706, "upload_time": "2013-11-24T22:15:34", "url": "https://files.pythonhosted.org/packages/ad/07/21c7fea8b143f611460378834ad59dc176f624939e3ce3cd16b2af8ba170/wiki-0.0.22.tar.gz" } ], "0.0.23": [ { "comment_text": "", "digests": { "md5": "df4e8bdbf06491b850574242751a7e59", "sha256": "21e28068e64e2314a2de5c73155523b1ecf2257742a7b6c8921da37e3c80574b" }, "downloads": -1, "filename": "wiki-0.0.23.tar.gz", "has_sig": false, "md5_digest": "df4e8bdbf06491b850574242751a7e59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 880019, "upload_time": "2014-01-06T22:51:14", "url": "https://files.pythonhosted.org/packages/bd/88/a8962bf3e28b986bf23c3ff7f02ce1ebb7c12448a12c974fcf70bfc8307d/wiki-0.0.23.tar.gz" } ], "0.0.24": [], "0.0.24.1": [ { "comment_text": "", "digests": { "md5": "8491355835bbc8952ca111a30dc4c1c6", "sha256": "a9e7c6b9308d2ba2131b43e5c456a9bb4730df8423864239d8bf50b5545fdfe0" }, "downloads": -1, "filename": "wiki-0.0.24.1.tar.gz", "has_sig": true, "md5_digest": "8491355835bbc8952ca111a30dc4c1c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1144979, "upload_time": "2015-01-27T21:18:08", "url": "https://files.pythonhosted.org/packages/6c/c5/c66fd8e13d05a2150539d959f4a343176bdc0cdc5728d532d49c92d14163/wiki-0.0.24.1.tar.gz" } ], "0.0.24.2": [ { "comment_text": "", "digests": { "md5": "fad9fc4aa71fb18f642e1adf572c8b13", "sha256": "9435b81d2c23780fc442183de793936163562e83b0a625a41c9115db9c76f989" }, "downloads": -1, "filename": "wiki-0.0.24.2-py2-none-any.whl", "has_sig": true, "md5_digest": "fad9fc4aa71fb18f642e1adf572c8b13", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1266432, "upload_time": "2015-02-05T00:02:24", "url": "https://files.pythonhosted.org/packages/5b/c9/10517084b29efee5b49628b6eae92046d8409c6cfea17a6baa15492c572d/wiki-0.0.24.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0c027718f20db7714892443e30c9f78c", "sha256": "4b0c19512a7c0576e0e9c3ccfd37bcd24a79f78899437acffa093ab8f5c12876" }, "downloads": -1, "filename": "wiki-0.0.24.2.tar.gz", "has_sig": true, "md5_digest": "0c027718f20db7714892443e30c9f78c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1144963, "upload_time": "2015-02-05T00:00:08", "url": "https://files.pythonhosted.org/packages/90/8b/5eacd15d9c695f1cc67422fb5ab94599541878860b4a6bb156a858ba60bf/wiki-0.0.24.2.tar.gz" } ], "0.0.24.3": [ { "comment_text": "", "digests": { "md5": "1f4fda32e97e95dc62cdb1ac2d13f397", "sha256": "1d7dc79d80a5a29d0428d98882ec0ff8273ccfb63a5c2d4482bb20db7519344c" }, "downloads": -1, "filename": "wiki-0.0.24.3.tar.gz", "has_sig": true, "md5_digest": "1f4fda32e97e95dc62cdb1ac2d13f397", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1140754, "upload_time": "2015-09-24T22:12:06", "url": "https://files.pythonhosted.org/packages/d8/48/b86ee60318222257847f7568c01d98fed0637b7fe17555ac0aa049bef70d/wiki-0.0.24.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "f6c26dd6c7d329110e629d122510efe9", "sha256": "b8bee74712381bd71f14155e9b0af9bf15765eb63401ffffea53c2ccc1b9ab43" }, "downloads": -1, "filename": "wiki-0.0.24.3.zip", "has_sig": true, "md5_digest": "f6c26dd6c7d329110e629d122510efe9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1329283, "upload_time": "2015-09-24T22:12:14", "url": "https://files.pythonhosted.org/packages/de/fa/161a88d882a0717351563387f093ae403ce71ce419b1c96ec96b708af166/wiki-0.0.24.3.zip" } ], "0.0.24.4": [ { "comment_text": "", "digests": { "md5": "a1761a185c10f0cb36938a8cc622a62e", "sha256": "dc37fa1f0d70f8fd4a7ea9bdf54b76879aa5627a001d3dc128c00ecb1b64d6aa" }, "downloads": -1, "filename": "wiki-0.0.24.4.tar.gz", "has_sig": true, "md5_digest": "a1761a185c10f0cb36938a8cc622a62e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1138504, "upload_time": "2015-12-26T17:03:41", "url": "https://files.pythonhosted.org/packages/89/20/7770c54e0006c9d55bd32fa9605ede586449f63c9433e8a3ab2deaf23058/wiki-0.0.24.4.tar.gz" }, { "comment_text": "", "digests": { "md5": "34e2e71d09e2f80ec728cc8755857d6b", "sha256": "d91b473bfbe3d9e702ff0e26512c6aa2cbbebb8a68ee3f2a69d8e3bee1b6d944" }, "downloads": -1, "filename": "wiki-0.0.24.4.zip", "has_sig": true, "md5_digest": "34e2e71d09e2f80ec728cc8755857d6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1326896, "upload_time": "2015-12-26T17:03:58", "url": "https://files.pythonhosted.org/packages/42/72/2418c4c823f682faddcd2f2434b593b7081b9781231475b917781d680b07/wiki-0.0.24.4.zip" } ], "0.0.24.4.post1": [ { "comment_text": "", "digests": { "md5": "79b48c8c58fdde740d02ac2a510dfad0", "sha256": "36f2e2f740c3599d011e973ce94b478cb015876e51ad0f0405bb7fae60517dd0" }, "downloads": -1, "filename": "wiki-0.0.24.4.post1-py2-none-any.whl", "has_sig": true, "md5_digest": "79b48c8c58fdde740d02ac2a510dfad0", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1268952, "upload_time": "2015-12-27T19:33:22", "url": "https://files.pythonhosted.org/packages/fa/ad/9043ec0cf53f337f9efd155381e871c6b39d500e524a604deafa0e733e8f/wiki-0.0.24.4.post1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "efccf0ca936b41ece5d36cc00c3a2d0d", "sha256": "d58421f1f7b94af12ca974a56ec27112c423c4aee9fdd9e8b1e4bacb01cadb63" }, "downloads": -1, "filename": "wiki-0.0.24.4.post1.tar.gz", "has_sig": true, "md5_digest": "efccf0ca936b41ece5d36cc00c3a2d0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1138837, "upload_time": "2015-12-27T19:36:40", "url": "https://files.pythonhosted.org/packages/ee/2b/271c2f7290dfdc4b08bde674798b02fee74b9841da2cf3d5d02e31b67c28/wiki-0.0.24.4.post1.tar.gz" }, { "comment_text": "", "digests": { "md5": "ed956935e970f18af0cd5ef57916b53f", "sha256": "823ecd17510c9833974add125c5bdc6409288a8c2a274862578a2a4b6e774cfa" }, "downloads": -1, "filename": "wiki-0.0.24.4.post1.zip", "has_sig": true, "md5_digest": "ed956935e970f18af0cd5ef57916b53f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1332192, "upload_time": "2015-12-27T19:37:04", "url": "https://files.pythonhosted.org/packages/ec/b5/18e8cadaabb69a59865583a6915e42c1bd4b5ea4bab82c78897850b15d34/wiki-0.0.24.4.post1.zip" } ], "0.1": [ { "comment_text": "", "digests": { "md5": "bde10cdf254c9a748574bd46554cc3f3", "sha256": "9c201c22c032543155349e853b448d8c799bd1f384b93762768f8b20f12788d1" }, "downloads": -1, "filename": "wiki-0.1.tar.gz", "has_sig": true, "md5_digest": "bde10cdf254c9a748574bd46554cc3f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1222687, "upload_time": "2016-02-04T10:29:09", "url": "https://files.pythonhosted.org/packages/a7/48/534222a41c2f075a844d629f49bbcceb153ef66785e4a1b28a6c11b3a206/wiki-0.1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "b9142119f1fc3d490bb3db6baea27003", "sha256": "90371a73797e650ab5e6b08a07a8da162a3e7b04f0822c7242bb9b488ad9eb5a" }, "downloads": -1, "filename": "wiki-0.1.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "b9142119f1fc3d490bb3db6baea27003", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1471454, "upload_time": "2016-05-05T22:32:41", "url": "https://files.pythonhosted.org/packages/46/8a/b7e820a28eeea7c8766d9372781901b97acf9b3a147af75f5b63e4a3d0d7/wiki-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f61aade52dff0512ac3c74842b81b7bf", "sha256": "f3d576dfd8070fd34edce6df2c9dc289117af2bacac8218d2cc281094714b2b4" }, "downloads": -1, "filename": "wiki-0.1.1.tar.gz", "has_sig": true, "md5_digest": "f61aade52dff0512ac3c74842b81b7bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1308454, "upload_time": "2016-05-05T22:32:53", "url": "https://files.pythonhosted.org/packages/f6/6f/c82426c6b9a34f1bf555e0c45914898d4330b24230be0cb1e03a249fd908/wiki-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "f76d3e62805a5070c952059bb2d6002a", "sha256": "2dacedc386a9795357ec0330f5d5535bd53b0851be1fb3420990064e1896860a" }, "downloads": -1, "filename": "wiki-0.1.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "f76d3e62805a5070c952059bb2d6002a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1474837, "upload_time": "2016-06-19T20:33:20", "url": "https://files.pythonhosted.org/packages/bc/c6/1a39c4a4df14c954a9a7cd63df59002f1ba218ed34d5e0dcc15a022e95c4/wiki-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0d0a83a2728ddfbc030ec6a71abc51bd", "sha256": "d72250b4f3cc8b32075d78c13fa6efb119ede0dc66d4c776967f9b0fcbb1f3b6" }, "downloads": -1, "filename": "wiki-0.1.2.tar.gz", "has_sig": true, "md5_digest": "0d0a83a2728ddfbc030ec6a71abc51bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1311790, "upload_time": "2016-06-19T20:33:27", "url": "https://files.pythonhosted.org/packages/be/af/e8ad5b331c98a16ea88e603ff3bf0c49b841aedf58bd943dfbb681a4e9a4/wiki-0.1.2.tar.gz" } ], "0.1.dev20160119155955": [ { "comment_text": "", "digests": { "md5": "11107a1eaceab93dd06bd54e2189fe1a", "sha256": "66c1a35a0c824c2de285270534c98ac36ab7caad621f2fc4325be9bfe1dc2f5c" }, "downloads": -1, "filename": "wiki-0.1.dev20160119155955-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "11107a1eaceab93dd06bd54e2189fe1a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1393458, "upload_time": "2016-01-19T16:01:27", "url": "https://files.pythonhosted.org/packages/8b/c2/0031f264188ed98f1225560a4363f279a0d0003386523ff6a4cd652ee1e8/wiki-0.1.dev20160119155955-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a73f7bb0ab3206aeee698d50db6e0d2d", "sha256": "dde4d706dfc9882e487d8be51e800c477c5e87d230f86edd57a9832ca9877bca" }, "downloads": -1, "filename": "wiki-0.1.dev20160119155955.tar.gz", "has_sig": true, "md5_digest": "a73f7bb0ab3206aeee698d50db6e0d2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1224504, "upload_time": "2016-01-19T16:06:38", "url": "https://files.pythonhosted.org/packages/f2/d2/22b39ab26396eada10e4953f27d6b63986e2e46abe0727b5bace1ce971a0/wiki-0.1.dev20160119155955.tar.gz" } ], "0.1b0": [ { "comment_text": "", "digests": { "md5": "f1d5e48da8a65d38f441b0f08ad1ebc0", "sha256": "b8dffc8de337191e03a85385f157be55b612e9b9e06568c7077e9d9cefa1b95d" }, "downloads": -1, "filename": "wiki-0.1b0.tar.gz", "has_sig": true, "md5_digest": "f1d5e48da8a65d38f441b0f08ad1ebc0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1222302, "upload_time": "2016-01-19T16:18:01", "url": "https://files.pythonhosted.org/packages/c7/59/b726e8b10f8a8bea67c79f3033de05ddb8ab4c8454c74f588614e7cbcccb/wiki-0.1b0.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "23354c461acf885eaf1e5fb07b7a5448", "sha256": "3dfca353f77bde63d9ffd282d6133156cba06a496385cae0aa5ee6d47558474d" }, "downloads": -1, "filename": "wiki-0.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "23354c461acf885eaf1e5fb07b7a5448", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1511793, "upload_time": "2016-12-28T01:21:48", "url": "https://files.pythonhosted.org/packages/c7/c2/93704937a36df9455799f86e3b68aeca8a9791e1702c9acee0ff6315fce7/wiki-0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f1a001de467d03c0a425f656e753460c", "sha256": "a8a5603faa9f1de3826582a91599e5fbbc8799da697e46b5e121076e3520dce0" }, "downloads": -1, "filename": "wiki-0.2.tar.gz", "has_sig": true, "md5_digest": "f1a001de467d03c0a425f656e753460c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1328171, "upload_time": "2016-12-28T01:21:53", "url": "https://files.pythonhosted.org/packages/08/6a/bedf505759aacc7356d10b7a7b0b727e46c00c09f6ee01f7aec81631f82a/wiki-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "bf0def9f09f311d656d428e46ba6448c", "sha256": "70586d4fde83ebff0cb3c06b221d1f4fea4e994902022a2f540ef4f8a8c5199b" }, "downloads": -1, "filename": "wiki-0.2.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "bf0def9f09f311d656d428e46ba6448c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1514643, "upload_time": "2017-02-27T12:34:48", "url": "https://files.pythonhosted.org/packages/06/24/e801478c8a9258eb2fe0574a0a1056977fb4e536ed2599e94728cb03ebf2/wiki-0.2.1-py2.py3-none-any.whl" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "28914900eea524de99d96c51ab94479e", "sha256": "8d646104fefdc925ad1bbe7bc947c2e9dab9ff453f3534f66b652020a36e6ad3" }, "downloads": -1, "filename": "wiki-0.2.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "28914900eea524de99d96c51ab94479e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1515083, "upload_time": "2017-04-15T09:39:39", "url": "https://files.pythonhosted.org/packages/46/74/afb6c23785f2cd0d1a0daa2709146c43be8823f8a32127c23313c52b3b9c/wiki-0.2.2-py2.py3-none-any.whl" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "dd30c4c82336a3e90652da15afcc82b8", "sha256": "7b96e58961c35bfd9337254147771fc94081e688f1e698b4021a087c053e027e" }, "downloads": -1, "filename": "wiki-0.2.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "dd30c4c82336a3e90652da15afcc82b8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1483961, "upload_time": "2017-04-15T20:17:45", "url": "https://files.pythonhosted.org/packages/2b/f7/6ed244b4b5bfe9c05e9b22040755a65620710fb3a18423fed7eb1164cd33/wiki-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cc7c922e459670df5a9d2a1752ad60a2", "sha256": "cfe4688044c7e4071659ed8e15cb2726aec523665abd133ba1e4a17e34d9f3ca" }, "downloads": -1, "filename": "wiki-0.2.3.tar.gz", "has_sig": true, "md5_digest": "cc7c922e459670df5a9d2a1752ad60a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1298512, "upload_time": "2017-04-16T19:27:24", "url": "https://files.pythonhosted.org/packages/77/c2/76ef252e58e51a67896a6565b958d6d5d33ab5854ac384585054fea2dd2b/wiki-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "c5c4d2325e1688d0081078f3cd5f0a22", "sha256": "0d8d2289165eb288a274dfe941e0c6761aababce21d16bfa549d9337d57a41bd" }, "downloads": -1, "filename": "wiki-0.2.4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "c5c4d2325e1688d0081078f3cd5f0a22", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1503249, "upload_time": "2017-04-21T10:06:26", "url": "https://files.pythonhosted.org/packages/85/d8/ad25d9e16feba2d444828dc17171c9b1a32bd479056972d02303a003524d/wiki-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4078beda9d895592dcd655cf024d4671", "sha256": "0650528a012ef85a358fbb424e1bd0b28dd4a05d394673262f6a4c99f4a722d2" }, "downloads": -1, "filename": "wiki-0.2.4.tar.gz", "has_sig": true, "md5_digest": "4078beda9d895592dcd655cf024d4671", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1317364, "upload_time": "2017-04-21T10:06:55", "url": "https://files.pythonhosted.org/packages/85/68/7849b76d9eff981d76a41b54041f8b5ae9551e765cb515b945f120cafb53/wiki-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "e10df6dd0061592a28d97e91bd7f3edf", "sha256": "6a5bcf5ffbbf395ca8a3aac77a9b139810913e44659878e15cd776367ef09d05" }, "downloads": -1, "filename": "wiki-0.2.5-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "e10df6dd0061592a28d97e91bd7f3edf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1492629, "upload_time": "2018-01-29T12:54:54", "url": "https://files.pythonhosted.org/packages/2f/6d/313d01306f3762c3b35d5858a917cd5b18269e717ac5a617f84f01944802/wiki-0.2.5-py2.py3-none-any.whl" } ], "0.2b1": [ { "comment_text": "", "digests": { "md5": "8973a470559835f5a3e880ba27284e45", "sha256": "d3424ebf60e9f084a4d8efae2bfc62ad053acf7ca31bbbeb71a990f7458cbdb3" }, "downloads": -1, "filename": "wiki-0.2b1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "8973a470559835f5a3e880ba27284e45", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1465872, "upload_time": "2016-10-12T23:28:14", "url": "https://files.pythonhosted.org/packages/fe/00/0d7c7a6e857e1797b00d10f9e695dab9ffcac06d052bf9f63af4cef107c9/wiki-0.2b1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "42cc014074d52bb346bc136986dd4ef6", "sha256": "0caf27bf7985440d9a265508dca112029ca575227695999659141d265da33f28" }, "downloads": -1, "filename": "wiki-0.2b1.tar.gz", "has_sig": true, "md5_digest": "42cc014074d52bb346bc136986dd4ef6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1290769, "upload_time": "2016-10-12T23:28:20", "url": "https://files.pythonhosted.org/packages/3a/60/ceedee1dff114afece48c92e7d77e940929906ab968783d47a2d64641f05/wiki-0.2b1.tar.gz" } ], "0.2b2": [ { "comment_text": "", "digests": { "md5": "95092228620be30d5e1173236612ff14", "sha256": "5b14ab59e729abb58292de811caec31b907074383e69fc9d611206090b6cb482" }, "downloads": -1, "filename": "wiki-0.2b2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "95092228620be30d5e1173236612ff14", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1487976, "upload_time": "2016-11-02T13:15:13", "url": "https://files.pythonhosted.org/packages/6c/27/3d3ef8d617e31900ea176a9f0eb9257ff3c8d61bb5bd645831812300221f/wiki-0.2b2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0ccf916c64d9a21520b291759400e75d", "sha256": "9408bd41b7fd244b6d9cdce71a3e62d6b883f8e69b5008097b8ca2fa43e00660" }, "downloads": -1, "filename": "wiki-0.2b2.tar.gz", "has_sig": true, "md5_digest": "0ccf916c64d9a21520b291759400e75d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1308392, "upload_time": "2016-11-02T13:15:18", "url": "https://files.pythonhosted.org/packages/4c/c6/35c18eee6ac5f1cca1e823e24022310fdb2cee9dcc3431ad455e1cc05bdb/wiki-0.2b2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "f74759c563fcc297df034c0d30bf571e", "sha256": "1f28e53d95bf3b6491a3c0c0b7c4af02084f82c0c3ff88e82a6078c9f9658e55" }, "downloads": -1, "filename": "wiki-0.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "f74759c563fcc297df034c0d30bf571e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1582117, "upload_time": "2018-01-29T15:50:27", "url": "https://files.pythonhosted.org/packages/a5/20/168dc8b5de89cb5d545a41c197bba3c446006986a22a2f89f364a039a46e/wiki-0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0e850a1915147547a4a2d59e15e046de", "sha256": "362b7370b662be96ff51fc29eaa85a758441610af78ba72b4f28ffa06864125a" }, "downloads": -1, "filename": "wiki-0.3.tar.gz", "has_sig": true, "md5_digest": "0e850a1915147547a4a2d59e15e046de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1392911, "upload_time": "2018-01-29T15:50:31", "url": "https://files.pythonhosted.org/packages/f9/51/b56dc6b17ebee7844019a6a45eba30b9fd631bb88bec6ce3c739e4845af8/wiki-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "25e618bb74f04bafe90bf1bf3f3eb2e7", "sha256": "a68efcba05c68883361606519d763314790e2c5aa9f308d7a314ac3ab5fbdc3e" }, "downloads": -1, "filename": "wiki-0.3.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "25e618bb74f04bafe90bf1bf3f3eb2e7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1582489, "upload_time": "2018-02-10T20:21:25", "url": "https://files.pythonhosted.org/packages/53/cf/88d9b157f1cca646b9d3418e2eb2d3cf8c965fdc77b4ea35d97c16451704/wiki-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fba6e2a1feada868713be586aa693923", "sha256": "11dbff30fd86dd4942256188813d786adacff02a26efacfacc2ca80fd7e56eca" }, "downloads": -1, "filename": "wiki-0.3.1.tar.gz", "has_sig": true, "md5_digest": "fba6e2a1feada868713be586aa693923", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1393588, "upload_time": "2018-02-10T20:21:30", "url": "https://files.pythonhosted.org/packages/4b/97/ea68c35c84b3ede433b182cfd8cc501b635fcd941afb51199fc98c199ea3/wiki-0.3.1.tar.gz" } ], "0.3b1": [ { "comment_text": "", "digests": { "md5": "d5c4f89ee199c0707d5129936e93731d", "sha256": "fd7762964e75ee1711761524e083c1099afc6ee1b7e6edf2ade901ec8340c934" }, "downloads": -1, "filename": "wiki-0.3b1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "d5c4f89ee199c0707d5129936e93731d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1473318, "upload_time": "2017-07-20T17:33:21", "url": "https://files.pythonhosted.org/packages/10/b2/1a98afa84e615d6e835060801b987c758e945d589f8ad1aa07894b62de61/wiki-0.3b1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f0ded4e3c7f39bb88d6817e168f2f229", "sha256": "b011f049e0271bc2fac12c1ecef61555545b3e3ba43de56c75b8af604bbb4267" }, "downloads": -1, "filename": "wiki-0.3b1.tar.gz", "has_sig": true, "md5_digest": "f0ded4e3c7f39bb88d6817e168f2f229", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1296393, "upload_time": "2017-07-20T17:33:25", "url": "https://files.pythonhosted.org/packages/c5/77/19093096d3e58d69582e7e3300aa0d0eb8b72adbacd90992d429679edbf4/wiki-0.3b1.tar.gz" } ], "0.3b2": [ { "comment_text": "", "digests": { "md5": "e3a79e03e6c4688e738877d3828c21c4", "sha256": "4f5a7e865f0dad355fcfa11710bc5ab2f42f98031d117671cbcb70a489346160" }, "downloads": -1, "filename": "wiki-0.3b2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "e3a79e03e6c4688e738877d3828c21c4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1478800, "upload_time": "2017-08-16T16:56:38", "url": "https://files.pythonhosted.org/packages/00/77/1b98f5e3a3cb4b487aefefd4500389e6d79a61f1b5f745cf5afe5f7826dc/wiki-0.3b2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "39d1bcedb4480c34f3e2eead81d9d472", "sha256": "ebbee91043b880989295ce13eab28e6f89487ed5948b95de2d2b523b763f48a1" }, "downloads": -1, "filename": "wiki-0.3b2.tar.gz", "has_sig": true, "md5_digest": "39d1bcedb4480c34f3e2eead81d9d472", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1300987, "upload_time": "2017-08-16T16:56:44", "url": "https://files.pythonhosted.org/packages/51/d6/240923c2ae129538b82cf21364542b088c854cfb26b007226c88e6a938e4/wiki-0.3b2.tar.gz" } ], "0.3b3": [ { "comment_text": "", "digests": { "md5": "66225e4f1b9c95c569b1b41cb52c6a40", "sha256": "b82accdaad19ac33bd50d143b3b0d2dcff75a4db8bd63689e38b91c57e4c37b1" }, "downloads": -1, "filename": "wiki-0.3b3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "66225e4f1b9c95c569b1b41cb52c6a40", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1555107, "upload_time": "2017-09-06T12:31:20", "url": "https://files.pythonhosted.org/packages/cc/8e/3e4493f40d05c428316bc6f66010ff2c7b052381e4a676b7afc67d8f502c/wiki-0.3b3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a764031f08e3a8d05e711527e855557e", "sha256": "0961083d2d4b541697260a63f0aad865919fdbf5659f4adfe0fa09d980bdf807" }, "downloads": -1, "filename": "wiki-0.3b3.tar.gz", "has_sig": true, "md5_digest": "a764031f08e3a8d05e711527e855557e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1369093, "upload_time": "2017-09-06T12:31:24", "url": "https://files.pythonhosted.org/packages/63/a4/de98d92ce3bbefd796e385224935424f4e7f5c3cc5cd7aa0de599be5f15a/wiki-0.3b3.tar.gz" } ], "0.3b4": [ { "comment_text": "", "digests": { "md5": "4d7dd74e9da9dc74b5e3fecaf0885b67", "sha256": "68c7d6d3941a6157128b48094cc34bf22a5ffda9ab23acc6400f5ef83e93fe3c" }, "downloads": -1, "filename": "wiki-0.3b4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "4d7dd74e9da9dc74b5e3fecaf0885b67", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1566325, "upload_time": "2018-01-15T14:09:02", "url": "https://files.pythonhosted.org/packages/5c/e7/d9223ebaeb99bc16f3cae795c9eb1f0f66a6e7f04d94df5a603a398b3af9/wiki-0.3b4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "85368d66dae8fffff56df71510355272", "sha256": "6ded7d8aaf6bb2f55474bc5ce397a04b94ddbf1782d87eb8e862aa663419f5e4" }, "downloads": -1, "filename": "wiki-0.3b4.tar.gz", "has_sig": true, "md5_digest": "85368d66dae8fffff56df71510355272", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1380867, "upload_time": "2018-01-15T14:09:47", "url": "https://files.pythonhosted.org/packages/a7/b4/37e5942c96388fdbaba9da1764075cc711776af7328f203182e2646caafa/wiki-0.3b4.tar.gz" } ], "0.3rc1": [ { "comment_text": "", "digests": { "md5": "e699df8ef5fd3622d261e555dd71fbe6", "sha256": "e83151c2dea8fff53b869880881d8ae0c9e0137f93d54762fde8dec48967af49" }, "downloads": -1, "filename": "wiki-0.3rc1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "e699df8ef5fd3622d261e555dd71fbe6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1582171, "upload_time": "2018-01-29T14:35:39", "url": "https://files.pythonhosted.org/packages/ae/e6/608a5bc3718e59e52358d1c75a457a1772bde3a0207f2b6d8c7bb0c46e52/wiki-0.3rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b9f53a9b7528b1e4362b57cfb7deaace", "sha256": "b7c06c8e8c220d1571e640a99da501e079d89f948ffda691a10fa65a656d91c8" }, "downloads": -1, "filename": "wiki-0.3rc1.tar.gz", "has_sig": true, "md5_digest": "b9f53a9b7528b1e4362b57cfb7deaace", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1393001, "upload_time": "2018-01-29T14:35:43", "url": "https://files.pythonhosted.org/packages/a5/4a/7e47ab8b7bbc1b4b7db216ef7ff6fc2ef1606c6ed26e6f1d1fcf345c6f9f/wiki-0.3rc1.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "e2b31338e53d2938ec985b145b77e7cd", "sha256": "e5754a49645fcfc6e667eb4bf24b6a0b0791290014abcacafd8e7e430975d506" }, "downloads": -1, "filename": "wiki-0.4.1-py3-none-any.whl", "has_sig": true, "md5_digest": "e2b31338e53d2938ec985b145b77e7cd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1619886, "upload_time": "2018-10-20T21:58:11", "url": "https://files.pythonhosted.org/packages/90/e7/37f08836ce88a2869adcc7fe497755ebac03ff3651e0089a9550bc3bb2ab/wiki-0.4.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "74c004b0eb0c0e93d7211ff782150248", "sha256": "e2518cec2cbcfe53cbc2249ec92e40e40dc2d8eef7020accf7b65a645b5dbff8" }, "downloads": -1, "filename": "wiki-0.4.1.tar.gz", "has_sig": true, "md5_digest": "74c004b0eb0c0e93d7211ff782150248", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1434026, "upload_time": "2018-10-20T21:58:16", "url": "https://files.pythonhosted.org/packages/9d/4e/f2d0ee693ec8ef2a6308990624c467bfaf887b06fc13c17ad8da8ce92fe6/wiki-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "e582416a291c206b84b23c8219da83c5", "sha256": "eb968853010ed9f57f9189c833fa994ab4496097b4a6660106db1ce08d28d08c" }, "downloads": -1, "filename": "wiki-0.4.2-py3-none-any.whl", "has_sig": true, "md5_digest": "e582416a291c206b84b23c8219da83c5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1619804, "upload_time": "2018-10-25T22:41:21", "url": "https://files.pythonhosted.org/packages/b4/0e/36298d2a1d57ad97390f5f5e40e0246b06459dbaf5b8c97bb4c2d5ba6831/wiki-0.4.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5b920dca1b176b0d3460a63f41bad687", "sha256": "f2a6bb0ce069e8267e0b84c2da629ea2419b96b09aacc47bd50c52e6d2c05803" }, "downloads": -1, "filename": "wiki-0.4.2.tar.gz", "has_sig": true, "md5_digest": "5b920dca1b176b0d3460a63f41bad687", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1433917, "upload_time": "2018-10-25T22:41:26", "url": "https://files.pythonhosted.org/packages/d1/3e/f48b27968838c2012c4afdffdc9a070f3ee12f426bdb9e5b338561f858ca/wiki-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "8796b1dd9c11bd25d436da4a0da978bb", "sha256": "219048c67eb64fc91d0c4ce24147cd0d28d7d0f3cdb5ea254e7fc721cecbfbe4" }, "downloads": -1, "filename": "wiki-0.4.3-py3-none-any.whl", "has_sig": true, "md5_digest": "8796b1dd9c11bd25d436da4a0da978bb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1618886, "upload_time": "2019-02-01T12:55:51", "url": "https://files.pythonhosted.org/packages/bc/07/fd7b5a47acd309b081660723a2ba19e974fae1fea95ae06f4ce620a3c104/wiki-0.4.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c08585f2a4a373ad6c8e5a0735f0329f", "sha256": "7ceee6a214c4d4ade4e25f29690b0fb301aec09bb63902f6d4e16f5d871c140c" }, "downloads": -1, "filename": "wiki-0.4.3.tar.gz", "has_sig": true, "md5_digest": "c08585f2a4a373ad6c8e5a0735f0329f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1432922, "upload_time": "2019-02-01T12:55:58", "url": "https://files.pythonhosted.org/packages/f5/df/e59705f1c9523694e2daf122974b510664e6b5c8735acd90aaeb5b56b18b/wiki-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "2230117cfa98420b3130a28753b8b893", "sha256": "df9c73d4185433d9f375c1646b7c08e099e86172faf93d6afc16389db075440a" }, "downloads": -1, "filename": "wiki-0.4.4-py3-none-any.whl", "has_sig": true, "md5_digest": "2230117cfa98420b3130a28753b8b893", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1620196, "upload_time": "2019-02-01T15:53:56", "url": "https://files.pythonhosted.org/packages/ac/d9/f7a689292e86d153b99ba5e91b433068f62895de5e005642139f23517494/wiki-0.4.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e02a06c956d5031c7cd1b35b545ed65f", "sha256": "8a3130c50aa6e92a579968d154ce7e66dda85d0b10358d479066ed957f6f4dfc" }, "downloads": -1, "filename": "wiki-0.4.4.tar.gz", "has_sig": true, "md5_digest": "e02a06c956d5031c7cd1b35b545ed65f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1434534, "upload_time": "2019-02-01T15:54:02", "url": "https://files.pythonhosted.org/packages/92/ea/c6254055a02ba2060bb73f79260e825d3a2e6dac6e5f0c0134079fc69ffe/wiki-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "9fded8eec3c2a0a4c4bdd9895d181d9d", "sha256": "2dbbae8358d1511d90ff131948435fb9e346584c519216e199f6471ad96970d3" }, "downloads": -1, "filename": "wiki-0.4.5-py3-none-any.whl", "has_sig": true, "md5_digest": "9fded8eec3c2a0a4c4bdd9895d181d9d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1663496, "upload_time": "2019-07-17T13:29:29", "url": "https://files.pythonhosted.org/packages/5f/fe/107854483f63cb9d5996032e228c0dabdca4a74b28250090573570f945f5/wiki-0.4.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a52f2381b409f862aeb387e95202a460", "sha256": "b72e7733a1a92e23e21c33caf78c5dab1d521e372f1d81bdc7c3851c418beb1a" }, "downloads": -1, "filename": "wiki-0.4.5.tar.gz", "has_sig": true, "md5_digest": "a52f2381b409f862aeb387e95202a460", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1461063, "upload_time": "2019-07-17T13:29:33", "url": "https://files.pythonhosted.org/packages/73/cb/696643ecbd5bf0b771bbe85d5b07b5cad27ec8b20e054710e04f005d8e45/wiki-0.4.5.tar.gz" } ], "0.4a1": [ { "comment_text": "", "digests": { "md5": "4d7565f4fa3c16a37fb13fb802f6f503", "sha256": "e724ef2a9952b35869accab1832fd1aa610b17f49dd734d53490b47f2f06ed5c" }, "downloads": -1, "filename": "wiki-0.4a1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "4d7565f4fa3c16a37fb13fb802f6f503", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1585013, "upload_time": "2018-02-20T22:59:23", "url": "https://files.pythonhosted.org/packages/84/92/2e9012d25c40383ab7492b417a9dee202d6bd9a282917f7539a6713ef07d/wiki-0.4a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0cc682234a9ee31a74e06806911525f6", "sha256": "a168e3ebdc8712238cd0e3c1d7b277860b9ec66ceb3c4c9caa33b1a978ffdfb9" }, "downloads": -1, "filename": "wiki-0.4a1.tar.gz", "has_sig": true, "md5_digest": "0cc682234a9ee31a74e06806911525f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1397592, "upload_time": "2018-02-20T22:59:28", "url": "https://files.pythonhosted.org/packages/7c/73/8a3a725ed92a16b17898632a1813fb38520e2e64224a6cbc45edeaa15c97/wiki-0.4a1.tar.gz" } ], "0.4a2": [ { "comment_text": "", "digests": { "md5": "343fd81dd389884bf55de36cefaf2473", "sha256": "4768ee6fa8cd61c67a17db59a942a448872cf8dc3f4d8809f34c00d717600c86" }, "downloads": -1, "filename": "wiki-0.4a2-py3-none-any.whl", "has_sig": true, "md5_digest": "343fd81dd389884bf55de36cefaf2473", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1589437, "upload_time": "2018-02-25T15:06:18", "url": "https://files.pythonhosted.org/packages/2f/6a/c43eb4fe76c6a01aa323cd217ddd7854796ce17630b669c90d21a6ef57e1/wiki-0.4a2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ca6b44bc01715e624888a468cb90de6b", "sha256": "d5d98a980d904508d4e190f992f5c81068f20ef160e2ad24d055578692fd693f" }, "downloads": -1, "filename": "wiki-0.4a2.tar.gz", "has_sig": true, "md5_digest": "ca6b44bc01715e624888a468cb90de6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1401061, "upload_time": "2018-02-25T15:06:24", "url": "https://files.pythonhosted.org/packages/e9/b7/e0fe6b142f369490c0b665189e705b1789f7796ea09a3b901897ceafe35e/wiki-0.4a2.tar.gz" } ], "0.4a3": [ { "comment_text": "", "digests": { "md5": "69b864bd39a04e16f6ae3b05bc1ec44d", "sha256": "73f5816a1712bbc5a68c94ebc0b9199c5659fc439a8827891ff180f82009828b" }, "downloads": -1, "filename": "wiki-0.4a3-py3-none-any.whl", "has_sig": true, "md5_digest": "69b864bd39a04e16f6ae3b05bc1ec44d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1589308, "upload_time": "2018-02-28T13:35:21", "url": "https://files.pythonhosted.org/packages/66/a6/a26190848d5cc1a2224e62ff14082824d11bab4f00fedb15cce31ff60564/wiki-0.4a3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "99590b9fad04a83caf53ff07239cf394", "sha256": "fad3434aa7a83b464ed6a22bc8ba251971dc8982c9718faa716dfa1069908464" }, "downloads": -1, "filename": "wiki-0.4a3.tar.gz", "has_sig": true, "md5_digest": "99590b9fad04a83caf53ff07239cf394", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1400940, "upload_time": "2018-02-28T13:35:26", "url": "https://files.pythonhosted.org/packages/0c/aa/d1aece10a7a319adcfd5da33660cc90fbace6f75c0827ceb7fe0fe8b013a/wiki-0.4a3.tar.gz" } ], "0.4a4": [ { "comment_text": "", "digests": { "md5": "511b3a04e3fc113982af92133be17c1f", "sha256": "b254548aea240edd930fb16eb2a19863d746124e437b1204c02e4eec6b4f0933" }, "downloads": -1, "filename": "wiki-0.4a4-py3-none-any.whl", "has_sig": true, "md5_digest": "511b3a04e3fc113982af92133be17c1f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1642611, "upload_time": "2018-03-30T21:43:54", "url": "https://files.pythonhosted.org/packages/ac/e6/0d27eeb41b5550b0f0d7018ecf585c7001d514e9e9fc7de7bf2c80d491c1/wiki-0.4a4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "274d8da04800077f8608b2a91da246f0", "sha256": "528daed68a4db37317a407da771c691e9512901b688fc0e56e80a9aeadfc6b22" }, "downloads": -1, "filename": "wiki-0.4a4.tar.gz", "has_sig": true, "md5_digest": "274d8da04800077f8608b2a91da246f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1447323, "upload_time": "2018-03-30T21:43:59", "url": "https://files.pythonhosted.org/packages/41/10/329736d2703abbfbaf36529b894d9b5686c9534e2949c09cc8c93e029559/wiki-0.4a4.tar.gz" } ], "0.4a5": [ { "comment_text": "", "digests": { "md5": "8d147fb92d0fd50e6f0dd868604b3d1b", "sha256": "4178b2102eef0ac2cbf15a27c2217c51bc263759de7998350ca7e5d21d4f3f34" }, "downloads": -1, "filename": "wiki-0.4a5-py3-none-any.whl", "has_sig": true, "md5_digest": "8d147fb92d0fd50e6f0dd868604b3d1b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1638293, "upload_time": "2018-07-18T21:54:45", "url": "https://files.pythonhosted.org/packages/30/0c/63845e563a5c2417f9a6b4098c23fde2658b4abebcf972f5c6f1f0c88939/wiki-0.4a5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "02498eab716c6b5f4c1bf12cff40f483", "sha256": "ae31694021c92f28820ff09eb4f80b1bd3b30c509f411275a1bf61a175e6437d" }, "downloads": -1, "filename": "wiki-0.4a5.tar.gz", "has_sig": true, "md5_digest": "02498eab716c6b5f4c1bf12cff40f483", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1447875, "upload_time": "2018-07-18T21:54:51", "url": "https://files.pythonhosted.org/packages/fd/c7/42aaa58b74620482bd0e38cae4d681af35f43349c2f3a3bbd951150f911b/wiki-0.4a5.tar.gz" } ], "0.4b1": [ { "comment_text": "", "digests": { "md5": "04fea784c5c5e155ff03199ecadd27df", "sha256": "91c3e205b00f8988d78dd6911a3205e0a88ddd1c5a5b98d0fd28a194f4653e16" }, "downloads": -1, "filename": "wiki-0.4b1-py3-none-any.whl", "has_sig": true, "md5_digest": "04fea784c5c5e155ff03199ecadd27df", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1641261, "upload_time": "2018-08-02T14:40:49", "url": "https://files.pythonhosted.org/packages/07/aa/7f4847639f601bbfe2fb0bd8048a8e3b5671007e380b4e4f9aaceaa8f54e/wiki-0.4b1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "06065a15901cc85630eb32fd4fc5555c", "sha256": "820bdf702e91126d414e51d42b41522df0b5470cf99d0ed958a9997f16462a25" }, "downloads": -1, "filename": "wiki-0.4b1.tar.gz", "has_sig": true, "md5_digest": "06065a15901cc85630eb32fd4fc5555c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1448757, "upload_time": "2018-08-02T14:40:52", "url": "https://files.pythonhosted.org/packages/18/af/b829bc0b124ea4be59a69a3abcda6b0fffb7e0b2136722bbb2ee2414d3c1/wiki-0.4b1.tar.gz" } ], "0.4b2": [ { "comment_text": "", "digests": { "md5": "ac226b2ee30f837e6b02005848341ec4", "sha256": "00f1f3dbf1bbaad75f230892d7aba50504ea2642cb1d08b3775d4eed2df2df87" }, "downloads": -1, "filename": "wiki-0.4b2-py3-none-any.whl", "has_sig": true, "md5_digest": "ac226b2ee30f837e6b02005848341ec4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1653327, "upload_time": "2018-09-15T11:41:38", "url": "https://files.pythonhosted.org/packages/8f/4c/d1cd676352eb18cadbb4ce28bf797e29ab012e467c3e604f2dbc93908256/wiki-0.4b2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9211da702d5e85d23a3ccf99cebc4a22", "sha256": "40d0ccbbe5d566ee4c63309d254821d248d815a502be3bd94376d16a0e7cdf86" }, "downloads": -1, "filename": "wiki-0.4b2.tar.gz", "has_sig": true, "md5_digest": "9211da702d5e85d23a3ccf99cebc4a22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1459428, "upload_time": "2018-09-15T11:41:44", "url": "https://files.pythonhosted.org/packages/35/4c/b6ad7aba1906d877523d9d1c7e928fb8621a46d92c30e32974a1360370c1/wiki-0.4b2.tar.gz" } ], "0.4b3": [ { "comment_text": "", "digests": { "md5": "bd64b72fb8dc3cc2a8976f1df24aaddb", "sha256": "6d400bac633324e73f23a696f63357219d6400adac4e26add91377d4ae3aec3b" }, "downloads": -1, "filename": "wiki-0.4b3-py3-none-any.whl", "has_sig": true, "md5_digest": "bd64b72fb8dc3cc2a8976f1df24aaddb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1653332, "upload_time": "2018-09-17T16:14:35", "url": "https://files.pythonhosted.org/packages/31/b1/164dd0e24543c6efdce23b0d9d5a6cf674bd0e9cd7e9867cd5b19933d721/wiki-0.4b3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3316fec8eeed777c15f0d00a3218d0f9", "sha256": "53b15ea4f01a4ac376f430c291efcc3af1cffe71d5f334b957515a74088fc108" }, "downloads": -1, "filename": "wiki-0.4b3.tar.gz", "has_sig": true, "md5_digest": "3316fec8eeed777c15f0d00a3218d0f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1459477, "upload_time": "2018-09-17T16:14:39", "url": "https://files.pythonhosted.org/packages/e3/9e/703ecf49eecb20f9924ec8651bbfe778aec8e27644d5e9ecb80b57d70fee/wiki-0.4b3.tar.gz" } ], "0.5.dev20181021091629": [ { "comment_text": "", "digests": { "md5": "8ac6c82ab48170fffbfb1e6eaac78d03", "sha256": "c5b93a5a88dafbffbe73937155f0af20075d4b57e9496963ae47dd4bba7ce03d" }, "downloads": -1, "filename": "wiki-0.5.dev20181021091629-py3-none-any.whl", "has_sig": true, "md5_digest": "8ac6c82ab48170fffbfb1e6eaac78d03", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1620040, "upload_time": "2018-10-21T09:23:17", "url": "https://files.pythonhosted.org/packages/05/4b/8b8e7ad4fb5f6a866d676b2ae943b0438000a1c4cceb893af89593ff82a5/wiki-0.5.dev20181021091629-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0f286708f873ee6a73f5f01764f710d6", "sha256": "723b5eec5a16528c9b55d66dcf9ff457c8e0329319cbc31334796db74ce2215b" }, "downloads": -1, "filename": "wiki-0.5.dev20181021091629.tar.gz", "has_sig": true, "md5_digest": "0f286708f873ee6a73f5f01764f710d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1435755, "upload_time": "2018-10-21T09:23:22", "url": "https://files.pythonhosted.org/packages/f0/de/92a747baa08117945b2a0138d3561661d1fef76d26c12819c3999ddb8aa2/wiki-0.5.dev20181021091629.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9fded8eec3c2a0a4c4bdd9895d181d9d", "sha256": "2dbbae8358d1511d90ff131948435fb9e346584c519216e199f6471ad96970d3" }, "downloads": -1, "filename": "wiki-0.4.5-py3-none-any.whl", "has_sig": true, "md5_digest": "9fded8eec3c2a0a4c4bdd9895d181d9d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1663496, "upload_time": "2019-07-17T13:29:29", "url": "https://files.pythonhosted.org/packages/5f/fe/107854483f63cb9d5996032e228c0dabdca4a74b28250090573570f945f5/wiki-0.4.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a52f2381b409f862aeb387e95202a460", "sha256": "b72e7733a1a92e23e21c33caf78c5dab1d521e372f1d81bdc7c3851c418beb1a" }, "downloads": -1, "filename": "wiki-0.4.5.tar.gz", "has_sig": true, "md5_digest": "a52f2381b409f862aeb387e95202a460", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1461063, "upload_time": "2019-07-17T13:29:33", "url": "https://files.pythonhosted.org/packages/73/cb/696643ecbd5bf0b771bbe85d5b07b5cad27ec8b20e054710e04f005d8e45/wiki-0.4.5.tar.gz" } ] }