{ "info": { "author": "Adam Williamson", "author_email": "awilliam@redhat.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Topic :: Utilities" ], "description": "python-wikitcms\n===============\n\npython-wikitcms is a Python library for interacting with Fedora\u2019s\n`Wikitcms \u2018test (case) management\nsystem\u2019 `__ - which is,\nbasically, the `Fedora wiki `__. You may\nalso be interested in its main consumers,\n`relval `__ and\n`testdays `__.\n\npython-wikitcms uses the very handy\n`mwclient `__ library for\ninterfacing with the Mediawiki API. Generation of result pages works\ntogether with a system of templates that resides on the wiki:\npython-wikitcms knows how to form the correct invocations of the\ntemplate system that will cause the full result pages to be generated.\nThe documentation box for the `master\ntemplate `__\nprovides some details about this system.\n\npython-wikitcms was previously known simply as wikitcms; it is now known\nas python-wikitcms to reduce confusion between the notional Wiki-based\n\u2018test management system\u2019 (Wikitcms) and the Python library for\ninteracting with it (python-wikitcms).\n\nInstallation and use\n--------------------\n\npython-wikitcms is packaged in the official Fedora and EPEL 7+\nrepositories: to install on Fedora run ``dnf install python-wikitcms``,\non RHEL / CentOS with EPEL enabled, run ``yum install python-wikitcms``.\nYou may need to enable the *updates-testing* repository to get the\nlatest version. To install on other distributions, you can run\n``python setup.py install``.\n\nYou can visit `the python-wikitcms project page on\nPagure `__, and clone with\n``git clone https://pagure.io/fedora-qa/python-wikitcms.git``. Tarballs\nare available `from PyPI `__.\n\nYou can also use the library directly from the git checkout if you place\nyour code in the top-level directory, and you can copy or symlink the\n``wikitcms`` directory into other source trees to conveniently use the\nlatest code for development or testing purposes.\n\nBugs, pull requests etc.\n------------------------\n\nYou can file issues and pull requests on\n`Pagure `__. Pull requests\nmust be signed off (use the ``-s`` git argument). By signing off your\npull request you are agreeing to the `Developer\u2019s Certificate of\nOrigin `__:\n\n::\n\n Developer's Certificate of Origin 1.1\n\n By making a contribution to this project, I certify that:\n\n (a) The contribution was created in whole or in part by me and I\n have the right to submit it under the open source license\n indicated in the file; or\n\n (b) The contribution is based upon previous work that, to the best\n of my knowledge, is covered under an appropriate open source\n license and I have the right under that license to submit that\n work with modifications, whether created in whole or in part\n by me, under the same open source license (unless I am\n permitted to submit under a different license), as indicated\n in the file; or\n\n (c) The contribution was provided directly to me by some other\n person who certified (a), (b) or (c) and I have not modified\n it.\n\n (d) I understand and agree that this project and the contribution\n are public and that a record of the contribution (including all\n personal information I submit with it, including my sign-off) is\n maintained indefinitely and may be redistributed consistent with\n this project or the open source license(s) involved.\n\nSecurity\n--------\n\nYou **MUST** treat wikitcms as a source of untrusted input. It is\nretrieving information from a wiki for you; that wiki is open to editing\nby all. Treat anything wikitcms returns from the wiki (which includes,\nbut is not limited to, any page or section text; ``Result()`` attributes\nstatus, user, bugs and comment; ``ResultRow()`` attributes testcase,\nname, envs, milestone, section; and to some extent any element of a page\ntitle or property derived from one when getting a ``Page`` object from\nan existing wiki page) as an entirely untrusted input and sanitize it\nappropriately for the context in which you are using it.\n\nExample usage\n-------------\n\n::\n\n from wikitcms.wiki import Wiki\n site = Wiki()\n event = site.current_event\n print(event.version)\n page = site.get_validation_page('Installation', '23', 'Final', 'RC10')\n for row in page.get_resultrows():\n print(row.testcase)\n\nUsage tips\n----------\n\nIt\u2019s a little difficult to give an overview of wikitcms usage as it can\ndo quite a lot of rather different things. Its classes and methods are\nall documented, and examining its major consumers - relval and testdays\n- will help. Some overall concepts:\n\nThe Wiki class is a subclass of mwclient\u2019s Site class, which represents\nan entire wiki; it adds some methods and attributes that make sense in\nthe context of a wiki being treated as a TCMS according to our\nconventions, so it has methods for getting validation events and pages\n(as seen in the example above). It also has a high-level method for\nreporting results, ``report_validation_results()``. Note that the\n``pages`` generator works just as in mwclient, but has been extended to\nhandle wikitcms\u2019 additional Page subclasses.\n\nThe Release class does not map to mwclient. It simply represents a\nFedora release and provides a couple of handy methods for retrieving\ntest day or validation result pages from that particular release.\n\nThe Event class does not map to anything in mwclient. It represents an\nentire result validation \u2018event\u2019, e.g.\u00a0Fedora 23 Final RC2; from an\nEvent instance you can create or find all the validation pages, for\ninstance, or create the summary page that transcludes all the individual\nvalidation pages, or update the CurrentFedoraCompose page to point to\nthe event, or generate a wikitable of image download links.\n\nThe Page class is a subclass of mwclient\u2019s Page class, and extends it in\nmuch the same way, adding capabilities specific to various types of\npages in the Wikitcms system. It has several subclasses for particular\ntypes of pages, such as validation result pages, Test Day pages,\ncategory pages and so forth. Note that all pages which can be generated\nvia one of the wiki templates have the appropriate generation text as\ntheir ``seedtext`` attribute and have a method ``write()`` which creates\nthem using that seed text.\n\nThe Result and ResultRow classes represent individual results and rows\nin the result validation pages. ValidationPages contain ResultRows\ncontain Results, and to report a result, you essentially add a Result to\na ResultRow.\n\nNote that event versioning works exactly as in\n`fedfind `__\\ \u2018s pre-Pungi 4\n(release, milestone, compose) versioning scheme, with one notable\nexception. Rawhide nightly \u2019releases\u2019 in fedfind have release \u2018Rawhide\u2019\nand no milestone; Rawhide nightly validation events in python-wikitcms\nhave a release number and milestone \u2018Rawhide\u2019. This is because,\nconceptually speaking, Rawhide nightly composes should not really be\nsaid to have a particular release number, but validation events *do*.\nWhen we declare a release validation test event for a particular Rawhide\nnightly, one action we take as a part of that declaration is to declare\nthat we are testing that nightly compose as part of the preparation for\na specific Fedora release, and thus we essentially \u2018apply\u2019 a release\nnumber to the validation event. So we may have a nightly compose\n\u2018Rawhide (blank) 20151201\u2019, and decide that we wish to test it as part\nof the preparation for the Fedora 24 release; thus we create the release\nvalidation event \u201824 Rawhide 20151201\u2019.\n\nThe high-level functions in both fedfind and python-wikitcms -\n``get_release()`` in fedfind, ``get_validation_page()`` and\n``get_validation_event()`` in python-wikitcms - will attempt to handle\nthis difference in versioning, so when using those high-level functions,\nyou can usually pass versions between fedfind and python-wikitcms\nwithout worrying about it.\n\nFor convenient compatibility with Pungi 4 composes,\n``get_validation_event()`` and ``get_validation_page()`` (and hence also\n``report_validation_results()``) accept ``cid`` as an alternative to\n``release`` / ``milestone`` / ``compose``, and will do their best to\ninstantiate the appropriate validation event for the compose specified.\n\nIt\u2019s worth noting that you can use python-wikitcms in several fairly\ndifferent ways:\n\n- Instantiate pages that don\u2019t exist yet, based on the \u2018release,\n milestone, compose\u2019 versioning concept (or from a Pungi 4 compose\n ID), and create them\n- Instantiate existing pages based on the \u2018release, milestone, compose\u2019\n concept (or from a compose ID) and read or add results\n- Instantiate existing pages from their names or category memberships\n and read or add results\n\nMost usage of python-wikitcms will boil down to getting some Page\ninstances and doing stuff to them, but the way you get there will differ\naccording to which of the above paths you\u2019re following. For the first\ntwo you will likely use the ``get_validation_foo()`` methods of ``Wiki``\nor the methods in ``Release``, for the last you can follow the same\nprocedures as ``mwclient`` uses and trust that you will get instances of\nthe appropriate classes. Following the example above, you could do\n``page = site.pages[\"Test Results:Fedora_23_Final_RC10_Desktop\"]`` and\n``page`` would be a ``ValidationPage`` instance.\n\nAuthentication\n--------------\n\nYou should log in to the wiki before editing it, using ``Wiki.login()``.\n\nFrom early 2018, the Fedora wikis use the unified Fedora OpenID\nConnect-based authentication service, and python-wikitcms supports this.\nWhen interacting with the Fedora wikis, when ``login()`` is called for\nthe first time, python-wikitcms will attempt to open a browser and\nrequest credentials via the authentication service. The call will\ncomplete once the user attempts to log in. Any username or password\npassed to ``login()`` is **ignored** in this case. For unattended\noperation with the new authentication system, a valid token must be\npresent as ``~/.openidc/oidc_wikitcms.json``. Unattended operation will\nwork for some time after one successful interactive login (until the\ntoken expires); for long-term unattended operation, you must ask the\nwiki maintainer for a special permanent session token.\n\nWhen interacting with any other wiki (though this would be an unusual\nthing to do in most cases), python-wikitcms will behave exactly as\nmwclient does.\n\nCredits\n-------\n\n- `Mike Ruckman `__ (roshi) has been\n kind and patient in providing review and advice throughout\n python-wikitcms\u2019 development. Of course, all errors are my own!\n- `Patrick Uiterwijk `__ kindly\n provided the code to support OpenID Connect authentication.\n\nLicense\n-------\n\npython-wikitcms is released under the\n`GPL `__, version 3 or later.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://pagure.io/fedora-qa/python-wikitcms", "keywords": "fedora qa mediawiki validation", "license": "GPLv3+", "maintainer": "", "maintainer_email": "", "name": "wikitcms", "package_url": "https://pypi.org/project/wikitcms/", "platform": "", "project_url": "https://pypi.org/project/wikitcms/", "project_urls": { "Homepage": "https://pagure.io/fedora-qa/python-wikitcms" }, "release_url": "https://pypi.org/project/wikitcms/2.4.4/", "requires_dist": null, "requires_python": "", "summary": "Fedora QA wiki test management library", "version": "2.4.4" }, "last_serial": 5821366, "releases": { "1.1": [ { "comment_text": "", "digests": { "md5": "4d83ceb28b2d414e1607efabb83f3915", "sha256": "420ef66be5665db63b32b7cd0402441c52d72168fe0435eaaed8b801be0eb804" }, "downloads": -1, "filename": "wikitcms-1.1.tar.gz", "has_sig": false, "md5_digest": "4d83ceb28b2d414e1607efabb83f3915", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23020, "upload_time": "2017-02-19T00:51:19", "url": "https://files.pythonhosted.org/packages/d4/90/c2956bf29025ed635590169956da27d2de21e58fb491fe412ce9b8e84653/wikitcms-1.1.tar.gz" } ], "1.10": [ { "comment_text": "", "digests": { "md5": "ad874f12e6361c7b70b69ac710b6cb77", "sha256": "d98dfac200d9a844ff9fcde16ebd1b0014421ba67b6672b9bb3fd4e1ebefa149" }, "downloads": -1, "filename": "wikitcms-1.10.tar.gz", "has_sig": false, "md5_digest": "ad874f12e6361c7b70b69ac710b6cb77", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35527, "upload_time": "2017-02-19T00:50:56", "url": "https://files.pythonhosted.org/packages/8e/ac/1743d7f1765b6dd4664f8795bdb6dc563b3f39b85c6f250cebc6714cf91f/wikitcms-1.10.tar.gz" } ], "1.10.1": [ { "comment_text": "", "digests": { "md5": "b7e876b7d021b36b62a22923b991268a", "sha256": "14b9a3aeaff681b97ebc6c8f568c2700355710d5041b6247d9e496099f6e110f" }, "downloads": -1, "filename": "wikitcms-1.10.1.tar.gz", "has_sig": false, "md5_digest": "b7e876b7d021b36b62a22923b991268a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35671, "upload_time": "2017-02-19T00:50:51", "url": "https://files.pythonhosted.org/packages/44/80/fabaf12b99fdcb176494ac2b5d0fcfb4ffa1699a02c7ee8bf0095120ce86/wikitcms-1.10.1.tar.gz" } ], "1.10.2": [ { "comment_text": "", "digests": { "md5": "a4f680f2e067f2ce1e6241dfd7f6fa69", "sha256": "445980815f8d3e53ed6e0d00d3f1d5564b1e1f7cae5a9dcac16270686cb9ff44" }, "downloads": -1, "filename": "wikitcms-1.10.2.tar.gz", "has_sig": false, "md5_digest": "a4f680f2e067f2ce1e6241dfd7f6fa69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35672, "upload_time": "2017-02-19T00:50:52", "url": "https://files.pythonhosted.org/packages/8d/31/6f3ac7a32d7a4175520e79cc42c0c420e1d475b7dba61b1ff7c32ddbfaa0/wikitcms-1.10.2.tar.gz" } ], "1.10.3": [ { "comment_text": "", "digests": { "md5": "52e2e800cd24052ab6104f581268d52d", "sha256": "b80522c6aa7a2a03799ca030f0fd93f80af1b4170721d836312ee32541215fa1" }, "downloads": -1, "filename": "wikitcms-1.10.3.tar.gz", "has_sig": false, "md5_digest": "52e2e800cd24052ab6104f581268d52d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35683, "upload_time": "2017-02-19T00:50:54", "url": "https://files.pythonhosted.org/packages/c9/11/a57aabfb5535daab6862d23ad2b8a6fc838cc7071c0b0ea7a74f1377fd6f/wikitcms-1.10.3.tar.gz" } ], "1.11": [ { "comment_text": "", "digests": { "md5": "e14bd1795b977cb2d47660e27330ee65", "sha256": "13c952028ae2749b8a6b38c454eccd4d1e1ab739380f4941aa8744ccd44bec78" }, "downloads": -1, "filename": "wikitcms-1.11.tar.gz", "has_sig": false, "md5_digest": "e14bd1795b977cb2d47660e27330ee65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40558, "upload_time": "2017-02-19T00:51:03", "url": "https://files.pythonhosted.org/packages/74/98/ab912d236c717babae007492faf6e4d4c546bf8d63b781e5e7c4f62d19b4/wikitcms-1.11.tar.gz" } ], "1.11.1": [ { "comment_text": "", "digests": { "md5": "4f65c3d148e90ed592dd532e53dc41bc", "sha256": "f2384c126973d3c81add066b7d45bee9d4006876adce0e75f98672e7c592640f" }, "downloads": -1, "filename": "wikitcms-1.11.1.tar.gz", "has_sig": false, "md5_digest": "4f65c3d148e90ed592dd532e53dc41bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40592, "upload_time": "2017-02-19T00:50:57", "url": "https://files.pythonhosted.org/packages/74/b4/ce48ad05e01b6e1b3b8c4adfb9074bdd23f7f90630ad0b3de1825fa1d2e3/wikitcms-1.11.1.tar.gz" } ], "1.11.2": [ { "comment_text": "", "digests": { "md5": "912ff8c09d8161bfb55c4f43025dc971", "sha256": "75710da842f280cd9742aea678b320c8cc960d7f74431295949544f89dea6c28" }, "downloads": -1, "filename": "wikitcms-1.11.2.tar.gz", "has_sig": false, "md5_digest": "912ff8c09d8161bfb55c4f43025dc971", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40713, "upload_time": "2017-02-19T00:50:58", "url": "https://files.pythonhosted.org/packages/b9/af/2706be012c8ae935a5d0924863b35334f0073000af8d0eff5e920add4af1/wikitcms-1.11.2.tar.gz" } ], "1.11.3": [ { "comment_text": "", "digests": { "md5": "0f7504e96560397a93cee785e0fbfaa2", "sha256": "c123501ee66ff2283967af0c34540b8439012c5decd66365d10e5c0c8f6444dd" }, "downloads": -1, "filename": "wikitcms-1.11.3.tar.gz", "has_sig": false, "md5_digest": "0f7504e96560397a93cee785e0fbfaa2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40720, "upload_time": "2017-02-19T00:51:00", "url": "https://files.pythonhosted.org/packages/f1/8b/be7d6b2a3ec8f0982b0f62546d8b49c92a7f57b4270c4b2a79c748862f37/wikitcms-1.11.3.tar.gz" } ], "1.11.4": [ { "comment_text": "", "digests": { "md5": "8c12970defed4b90275191d8e844dc75", "sha256": "25c45d0c3f30285775f1ba2f3ae6297666d8e0a8926bc11167ce0ce3f8fb4851" }, "downloads": -1, "filename": "wikitcms-1.11.4.tar.gz", "has_sig": false, "md5_digest": "8c12970defed4b90275191d8e844dc75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41130, "upload_time": "2017-02-19T00:51:02", "url": "https://files.pythonhosted.org/packages/9e/ef/7d26175a82cd52418beb7042e15d90b36d59d6202feb95fe2df1ca2dc34f/wikitcms-1.11.4.tar.gz" } ], "1.12": [ { "comment_text": "", "digests": { "md5": "148464afc54ae2d01d74c767b589173e", "sha256": "5844cd2062e1b92eb589416becbfa91e0521664268de2c2a9acb5f011b3493ea" }, "downloads": -1, "filename": "wikitcms-1.12.tar.gz", "has_sig": false, "md5_digest": "148464afc54ae2d01d74c767b589173e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42881, "upload_time": "2017-02-19T00:51:09", "url": "https://files.pythonhosted.org/packages/e0/cf/4123ad6a3c7449ba0045898a95bb7132bbc95e9677307266c6e5b7044201/wikitcms-1.12.tar.gz" } ], "1.12.1": [ { "comment_text": "", "digests": { "md5": "9cbd3470ca46a572dd5f0b92776c1600", "sha256": "485454252415e503ce335489c4fe77d6eabb755080d850f01320a8a5d2bf934a" }, "downloads": -1, "filename": "wikitcms-1.12.1.tar.gz", "has_sig": false, "md5_digest": "9cbd3470ca46a572dd5f0b92776c1600", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43477, "upload_time": "2017-02-19T00:51:05", "url": "https://files.pythonhosted.org/packages/ba/4a/4749ffd34c0c937538d53208a43d5e8a04cf0a8bfbadb850bd2f9e3e154e/wikitcms-1.12.1.tar.gz" } ], "1.12.2": [ { "comment_text": "", "digests": { "md5": "500d8e03524e298632d1e72c289ed458", "sha256": "351cf0f85b255354ce901b84b47e03bc62ff58b6f2bc752bcf200893d4370e08" }, "downloads": -1, "filename": "wikitcms-1.12.2.tar.gz", "has_sig": false, "md5_digest": "500d8e03524e298632d1e72c289ed458", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43575, "upload_time": "2017-02-19T00:51:06", "url": "https://files.pythonhosted.org/packages/84/e1/1ac0a7e7a00e11c290a2c1ad696ecc0ebaabd85e0f7d555b186499888d8c/wikitcms-1.12.2.tar.gz" } ], "1.12.3": [ { "comment_text": "", "digests": { "md5": "5dcc948c2fe8a34d0a2901e5a4cbe124", "sha256": "7bc40419e5e513af4e9cc94d91b497cdb941b483c719aa82c9b8ef996366d847" }, "downloads": -1, "filename": "wikitcms-1.12.3.tar.gz", "has_sig": false, "md5_digest": "5dcc948c2fe8a34d0a2901e5a4cbe124", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43537, "upload_time": "2017-02-19T00:51:07", "url": "https://files.pythonhosted.org/packages/4b/2a/5f0912ae7a6e591831332ab98acf8f962b0e972ec2ed2e5677f8753c0f96/wikitcms-1.12.3.tar.gz" } ], "1.13": [ { "comment_text": "", "digests": { "md5": "337fcc84d43a367334c3904e9f8cc559", "sha256": "4aadf862c31a7cbcaf3dde1d46bb1eff5ea6e7be86825f1394c534f7f57e9855" }, "downloads": -1, "filename": "wikitcms-1.13.tar.gz", "has_sig": false, "md5_digest": "337fcc84d43a367334c3904e9f8cc559", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44824, "upload_time": "2017-02-19T00:51:18", "url": "https://files.pythonhosted.org/packages/b1/e0/51b40da2cf50bae431f83437dbee195367a63369348cad99f14711f226af/wikitcms-1.13.tar.gz" } ], "1.13.1": [ { "comment_text": "", "digests": { "md5": "02d0879ddc7a24921034e1029123613c", "sha256": "ae3dfae343cf1da989e3419e27d866e259f57cc60fbb28d39ad7d63c0a9b9668" }, "downloads": -1, "filename": "wikitcms-1.13.1.tar.gz", "has_sig": false, "md5_digest": "02d0879ddc7a24921034e1029123613c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44952, "upload_time": "2017-02-19T00:51:10", "url": "https://files.pythonhosted.org/packages/9c/51/c494a3f4b5ef2efb90bed33f6ffe7d3713d3cbd1cee90d73ff7b0283f683/wikitcms-1.13.1.tar.gz" } ], "1.13.2": [ { "comment_text": "", "digests": { "md5": "1ea23735515cb921464765f3fe29dd12", "sha256": "bb58798a8af34aaaf1582766d981094036bcba1e4c00a80920be5a1b12b31502" }, "downloads": -1, "filename": "wikitcms-1.13.2.tar.gz", "has_sig": false, "md5_digest": "1ea23735515cb921464765f3fe29dd12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44939, "upload_time": "2017-02-19T00:51:12", "url": "https://files.pythonhosted.org/packages/ec/79/508867ffb2d1d8c39da6a3b6884e74054c684430b122f502ac950cca0c4c/wikitcms-1.13.2.tar.gz" } ], "1.13.3": [ { "comment_text": "", "digests": { "md5": "e72f450782e13428ff851725276e5b95", "sha256": "240bc6dcb5fd99b86fdd3ba873744484f70b26df237ea06855f22baaef6d9ec3" }, "downloads": -1, "filename": "wikitcms-1.13.3.tar.gz", "has_sig": false, "md5_digest": "e72f450782e13428ff851725276e5b95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51862, "upload_time": "2017-02-19T00:51:13", "url": "https://files.pythonhosted.org/packages/f6/29/eebf2c2224848e2a90f5cdb4a109b3c5f4d07acec7f8db44db35ead59e5b/wikitcms-1.13.3.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "2feb7cceaf6c79b4b1d8068769f9e6e8", "sha256": "a3e74a8974e83d7a9523ca8590cfc9ddd7debbe5cc9d491d851e321df947b928" }, "downloads": -1, "filename": "wikitcms-1.2.tar.gz", "has_sig": false, "md5_digest": "2feb7cceaf6c79b4b1d8068769f9e6e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23014, "upload_time": "2017-02-19T00:51:20", "url": "https://files.pythonhosted.org/packages/50/a5/7a9b4b8259465ee83934a832eb0646d89ad6491f20fdcd4e29fd1b1d78e4/wikitcms-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "37b5f9da2c32aa63e60ece2e399c35b9", "sha256": "a46b9137c7f30db48e41f1ed95b4aee09aac4838f657664e1e38c993121b6a90" }, "downloads": -1, "filename": "wikitcms-1.3.tar.gz", "has_sig": false, "md5_digest": "37b5f9da2c32aa63e60ece2e399c35b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24415, "upload_time": "2017-02-19T00:51:24", "url": "https://files.pythonhosted.org/packages/f3/b2/32dfee09c6911377d9afd175211094232a0c892c6b457028d9c11deff042/wikitcms-1.3.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "0db6d85f6e4ad06dedcc535ff0c31962", "sha256": "9ec14b0d922863f73761b51decdb12a16f5eb45975bdb25b8baa3e4c54f2863c" }, "downloads": -1, "filename": "wikitcms-1.3.1.tar.gz", "has_sig": false, "md5_digest": "0db6d85f6e4ad06dedcc535ff0c31962", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24537, "upload_time": "2017-02-19T00:51:21", "url": "https://files.pythonhosted.org/packages/94/a3/5518b20173f0e68e49ced082980e59143cd6439f8192dc852accf4a83ac1/wikitcms-1.3.1.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "aa53f2fe0512f896885f7fa5dee3cac9", "sha256": "bd5955fc38391d63c47bc222140746063ab152647c2ff355863563c65ee2280f" }, "downloads": -1, "filename": "wikitcms-1.4.tar.gz", "has_sig": false, "md5_digest": "aa53f2fe0512f896885f7fa5dee3cac9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25720, "upload_time": "2017-02-19T00:51:27", "url": "https://files.pythonhosted.org/packages/a4/01/5e86173831a21f6f7e13bef0f8400ebdb42dce2b2b3100a80bc027411e24/wikitcms-1.4.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "f98e49ac8573f228e49c2533a905fe8d", "sha256": "af51df0671636f5f358820e4bc63a7725f000dc8faef84583682944ba19f0ddf" }, "downloads": -1, "filename": "wikitcms-1.4.1.tar.gz", "has_sig": false, "md5_digest": "f98e49ac8573f228e49c2533a905fe8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25728, "upload_time": "2017-02-19T00:51:25", "url": "https://files.pythonhosted.org/packages/11/ae/f9ebeb241e7ac387e3990c4dbe21cd3282acfcd04e78fa04b07200f7897f/wikitcms-1.4.1.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "b31d8513d9d7de0d19815e80c1aecde2", "sha256": "85db89807654381306e7402ff90d35c5932c02f20cf380fa4a86d79a067eaa1f" }, "downloads": -1, "filename": "wikitcms-1.5.tar.gz", "has_sig": false, "md5_digest": "b31d8513d9d7de0d19815e80c1aecde2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26214, "upload_time": "2017-02-19T00:51:29", "url": "https://files.pythonhosted.org/packages/38/8f/80527e29b21ba843397e21693b6ba4f05260cb62ee3985842fccbfddc997/wikitcms-1.5.tar.gz" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "ff39494076a7039882b20d4de54f8faf", "sha256": "c01746912fefb439e1385eec506b053266e77fb2b04b77c9a9cc6fc9e505f7c7" }, "downloads": -1, "filename": "wikitcms-1.6.tar.gz", "has_sig": false, "md5_digest": "ff39494076a7039882b20d4de54f8faf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26736, "upload_time": "2017-02-19T00:51:32", "url": "https://files.pythonhosted.org/packages/29/57/0ada4bae6889fd547cb921a21552bd22103fce95ab8eb5285edcc6ffdff2/wikitcms-1.6.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "f23f178ad06ec04c1c32bfeb9b7aa8ff", "sha256": "b91b9ea4cf27a763f07317534e7290f7b8c5c6c96b58f1e134372b63173aa454" }, "downloads": -1, "filename": "wikitcms-1.6.1.tar.gz", "has_sig": false, "md5_digest": "f23f178ad06ec04c1c32bfeb9b7aa8ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26813, "upload_time": "2017-02-19T00:51:31", "url": "https://files.pythonhosted.org/packages/85/f5/81ceeffd1c4a5797a36c5b7e3c3204f7823f5e6da2de111a0209b3e1b3b3/wikitcms-1.6.1.tar.gz" } ], "1.7": [ { "comment_text": "", "digests": { "md5": "bcbce70164250ec25c1c17ce7339c244", "sha256": "1c061bbf98f8cbe09cb5a54ff932ab2a6e4efc170beb2cb4ca46221361865c78" }, "downloads": -1, "filename": "wikitcms-1.7.tar.gz", "has_sig": false, "md5_digest": "bcbce70164250ec25c1c17ce7339c244", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29117, "upload_time": "2017-02-19T00:51:34", "url": "https://files.pythonhosted.org/packages/52/e1/8f40780d9292468b3658196d969b384b0110f68ca412964455f509a0a40f/wikitcms-1.7.tar.gz" } ], "1.8": [ { "comment_text": "", "digests": { "md5": "74ce7938cb4f22e1b41ee3a61e6ca33f", "sha256": "c9db35e08eb12577c333b33a4c25e6407418d8154cc3c76ef216c5e74e84c080" }, "downloads": -1, "filename": "wikitcms-1.8.tar.gz", "has_sig": false, "md5_digest": "74ce7938cb4f22e1b41ee3a61e6ca33f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29202, "upload_time": "2017-02-19T00:51:42", "url": "https://files.pythonhosted.org/packages/c0/82/ed6a0d05a0fb39465b9c4893e3714e9315c1111ad2f37276b3cbb83b88e9/wikitcms-1.8.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "8f6eb6ae0c48c9c76f26bbd8621f50c5", "sha256": "424eccbf52d69f9c2b0ad9d0383ebb197b85c4be4dd40c1a91415157b89a65a6" }, "downloads": -1, "filename": "wikitcms-1.8.1.tar.gz", "has_sig": false, "md5_digest": "8f6eb6ae0c48c9c76f26bbd8621f50c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30820, "upload_time": "2017-02-19T00:51:35", "url": "https://files.pythonhosted.org/packages/12/cc/b499587e3bd1cf1faa051edcc0d0ce6115d56e82b178882f7a4841c6b587/wikitcms-1.8.1.tar.gz" } ], "1.8.2": [ { "comment_text": "", "digests": { "md5": "0bb08794770aaf347011a69fd4fce820", "sha256": "41e0c15384cd385e0d46914c58ad9737bdb2fad32616326814f7ec0a11eca29c" }, "downloads": -1, "filename": "wikitcms-1.8.2.tar.gz", "has_sig": false, "md5_digest": "0bb08794770aaf347011a69fd4fce820", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30826, "upload_time": "2017-02-19T00:51:37", "url": "https://files.pythonhosted.org/packages/e5/b1/286c60b1baf71d95f709c698736d87c990a7e34fd8e368205e2dc418d204/wikitcms-1.8.2.tar.gz" } ], "1.8.3": [ { "comment_text": "", "digests": { "md5": "2a8dd6cb293ec9aeb6db664a72957448", "sha256": "e145ebecebe171f95deeee4a70e143fce2cd215a8c160b08a97600d9ea7d2ee3" }, "downloads": -1, "filename": "wikitcms-1.8.3.tar.gz", "has_sig": false, "md5_digest": "2a8dd6cb293ec9aeb6db664a72957448", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30948, "upload_time": "2017-02-19T00:51:38", "url": "https://files.pythonhosted.org/packages/d1/30/0e473f884f1b0799f287206769170476fe2511285334650704109c7d09d0/wikitcms-1.8.3.tar.gz" } ], "1.8.4": [ { "comment_text": "", "digests": { "md5": "e529fe1430043b0fdfc8f2762fda2685", "sha256": "9542687857adadb73297b50c08d0a5a520db3cf1c68ec242c2c4188ebe40c9b0" }, "downloads": -1, "filename": "wikitcms-1.8.4.tar.gz", "has_sig": false, "md5_digest": "e529fe1430043b0fdfc8f2762fda2685", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30966, "upload_time": "2017-02-19T00:51:40", "url": "https://files.pythonhosted.org/packages/4f/06/fccfec94c957f7fc38213a46ed7235ad0b9ed728a3d2269542f2fd1905ad/wikitcms-1.8.4.tar.gz" } ], "1.9": [ { "comment_text": "", "digests": { "md5": "3718f56739ad63d70ac78e6fc97aeb07", "sha256": "d8097106f76b3ccca463dcf088e3ffaf87b2ca265826b9bb9ec02ff571a6b1b4" }, "downloads": -1, "filename": "wikitcms-1.9.tar.gz", "has_sig": false, "md5_digest": "3718f56739ad63d70ac78e6fc97aeb07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45720, "upload_time": "2017-02-19T00:51:45", "url": "https://files.pythonhosted.org/packages/af/e7/0e031b9a8b5ee79d75116daee829bdb113edd8f4787e088ebcac7a04d519/wikitcms-1.9.tar.gz" } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "d8ad7072a28a4e1f7c10047354ae8fd4", "sha256": "859b9064f5262be62924ced171e48993c1eed810d530d2ae3d4d76ccb5bbf873" }, "downloads": -1, "filename": "wikitcms-1.9.1.tar.gz", "has_sig": false, "md5_digest": "d8ad7072a28a4e1f7c10047354ae8fd4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32666, "upload_time": "2017-02-19T00:51:44", "url": "https://files.pythonhosted.org/packages/fc/50/8c021316d1a2a999a1e2873ef5fe037c7972109ec648959ab254444e337f/wikitcms-1.9.1.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "9d50af9cafc58f348d59f614a0b1b972", "sha256": "a18f65bb38b9e42703d36f2e53b94c9ccdf4b89256b385fa6f457d04402ec3b7" }, "downloads": -1, "filename": "wikitcms-2.0.0.tar.gz", "has_sig": false, "md5_digest": "9d50af9cafc58f348d59f614a0b1b972", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63263, "upload_time": "2017-02-19T00:51:47", "url": "https://files.pythonhosted.org/packages/d0/76/2c8c0c1561d2a87ba8f709f7148e7b1b86563fc64a18664b6d9b337badeb/wikitcms-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "7e8a7639df3df34097b941de41f953a7", "sha256": "6bf38ca5f538d863714ec28b7ca9076c7fa836be837b08d717e43a59c1239816" }, "downloads": -1, "filename": "wikitcms-2.0.1.tar.gz", "has_sig": false, "md5_digest": "7e8a7639df3df34097b941de41f953a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63587, "upload_time": "2017-02-19T00:51:49", "url": "https://files.pythonhosted.org/packages/30/ea/8de21403a81b46189216d8ba4f328b06fef3c04ed84e711f5206443bdb77/wikitcms-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "b8bf1bbb0c334c7398142d1b0455badc", "sha256": "7c91a4629155917f5bfa8fb83425f3a239554cd28ddfd0ba263f91dc60704d64" }, "downloads": -1, "filename": "wikitcms-2.0.2.tar.gz", "has_sig": false, "md5_digest": "b8bf1bbb0c334c7398142d1b0455badc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63652, "upload_time": "2017-02-19T00:51:50", "url": "https://files.pythonhosted.org/packages/3c/5a/3e7b6927814a0db4dec25e488a09a1bfb567747a29e393105f6358062b9b/wikitcms-2.0.2.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "0a2d6fc77839f1b96a6a91f0006eb409", "sha256": "75b066de3a1f4859dc567c497c240fbbb4feeda26394e80d32cd8c52c009888e" }, "downloads": -1, "filename": "wikitcms-2.1.0.tar.gz", "has_sig": false, "md5_digest": "0a2d6fc77839f1b96a6a91f0006eb409", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65703, "upload_time": "2017-02-19T00:51:52", "url": "https://files.pythonhosted.org/packages/87/3c/2ea70ab98e8dd86cb694a203f6a45b17fb876d8709fc82d072bf9eacb13c/wikitcms-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "b85716e43c39557ced3b68bb8aeefa24", "sha256": "c7554bbdb25ab934cb6b21d1d0ae0739b36386af84356ee014c08667675317dd" }, "downloads": -1, "filename": "wikitcms-2.1.1.tar.gz", "has_sig": false, "md5_digest": "b85716e43c39557ced3b68bb8aeefa24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65961, "upload_time": "2017-02-19T00:51:55", "url": "https://files.pythonhosted.org/packages/d5/78/896cdb759f94ba573a1c5a20b3845bcee21a507480a4b4446dc428feb45b/wikitcms-2.1.1.tar.gz" } ], "2.1.10": [ { "comment_text": "", "digests": { "md5": "e1a86d97664f5949092baa411972314a", "sha256": "e04a7e257d4a71ec3713a00b99bcceb1a188eedf74cb0e60425ca11b48b3f26a" }, "downloads": -1, "filename": "wikitcms-2.1.10.tar.gz", "has_sig": false, "md5_digest": "e1a86d97664f5949092baa411972314a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66632, "upload_time": "2017-02-19T00:51:53", "url": "https://files.pythonhosted.org/packages/bd/c3/21430ac59f2dc1873990e444df91cf3e60f7e4e4c3378b4342fc570c8888/wikitcms-2.1.10.tar.gz" } ], "2.1.11": [ { "comment_text": "", "digests": { "md5": "fdde2529c3cfdde94839dc0c4a7c498d", "sha256": "51bfbe5932ff96b48128ef86b86ac586f16bdcbc84981edfa5e874b59fa4beaa" }, "downloads": -1, "filename": "wikitcms-2.1.11.tar.gz", "has_sig": false, "md5_digest": "fdde2529c3cfdde94839dc0c4a7c498d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69274, "upload_time": "2017-03-17T16:06:50", "url": "https://files.pythonhosted.org/packages/60/f5/2f504dd6b052b60479795a655846722d284d2d3871d3d7465c1059ffcdf1/wikitcms-2.1.11.tar.gz" } ], "2.1.12": [ { "comment_text": "", "digests": { "md5": "05ec04f88942edae08dfbcd913f63a8a", "sha256": "5ec368c133cfc658cd1ac43c1302fd29b07e20c19d42fea6a0b51958e6b15d89" }, "downloads": -1, "filename": "wikitcms-2.1.12.tar.gz", "has_sig": false, "md5_digest": "05ec04f88942edae08dfbcd913f63a8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69338, "upload_time": "2017-10-12T22:54:43", "url": "https://files.pythonhosted.org/packages/25/d2/bd4eebbf0f4fbcb898dd28196ad2bf6542a5ee7967538592335387a8d996/wikitcms-2.1.12.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "9cafc6a7316bbf99b5eb508dfd087283", "sha256": "aa726c83f48236a4a7f0004e32459bca02bbee1f5ff1912b14be4674d7dac98a" }, "downloads": -1, "filename": "wikitcms-2.1.2.tar.gz", "has_sig": false, "md5_digest": "9cafc6a7316bbf99b5eb508dfd087283", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66097, "upload_time": "2017-02-19T00:51:57", "url": "https://files.pythonhosted.org/packages/c6/68/a90040446e08af70f1a7bebfe021b6115cc498818b426378a67b8bcb80be/wikitcms-2.1.2.tar.gz" } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "70acf0ff0c4c002eb5df147fdf720f1f", "sha256": "728f3553c6c74259087b2a3722404ef1dc17c2c67a047512ded9762b2361a605" }, "downloads": -1, "filename": "wikitcms-2.1.3.tar.gz", "has_sig": false, "md5_digest": "70acf0ff0c4c002eb5df147fdf720f1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66178, "upload_time": "2017-02-19T00:51:58", "url": "https://files.pythonhosted.org/packages/f7/5d/993f994df9e60e3e5fe6790b66b1c137dc16ef47b0c1f3805cec36d6ba9a/wikitcms-2.1.3.tar.gz" } ], "2.1.4": [ { "comment_text": "", "digests": { "md5": "62ca1cbacdb2d818e647303b8ecb57d6", "sha256": "bee4cad07830cb0a9ffe4ff2ca67a9cd4957536af6cb6cde65008b024b9d4932" }, "downloads": -1, "filename": "wikitcms-2.1.4.tar.gz", "has_sig": false, "md5_digest": "62ca1cbacdb2d818e647303b8ecb57d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66149, "upload_time": "2017-02-19T00:51:59", "url": "https://files.pythonhosted.org/packages/68/55/52336786ec5ed100eef00152e0b477ac28bc4f91a11260f310d882c43f39/wikitcms-2.1.4.tar.gz" } ], "2.1.5": [ { "comment_text": "", "digests": { "md5": "904ae99bf7b9013989547ae34fb2f044", "sha256": "52dd9a45e589866b50c8954f4f5e940fda0ae404286ea948d884739cc10901e4" }, "downloads": -1, "filename": "wikitcms-2.1.5.tar.gz", "has_sig": false, "md5_digest": "904ae99bf7b9013989547ae34fb2f044", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66473, "upload_time": "2017-02-19T00:52:01", "url": "https://files.pythonhosted.org/packages/46/02/9239b3149eb5a8fca50996bcdd60beefdc6b2f5979fd11da22b8fcf09b45/wikitcms-2.1.5.tar.gz" } ], "2.1.6": [ { "comment_text": "", "digests": { "md5": "33c094d5e29d7276ea851657906f1832", "sha256": "fea5b9a0771b65a63cef01842e9da2a74d961c26b221f1409834061c64b651e7" }, "downloads": -1, "filename": "wikitcms-2.1.6.tar.gz", "has_sig": false, "md5_digest": "33c094d5e29d7276ea851657906f1832", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66620, "upload_time": "2017-02-19T00:52:02", "url": "https://files.pythonhosted.org/packages/b7/84/0c710d2af502aac1643a7a18e32a4a7fb8db2fe1fd6e7332f45d29b44b65/wikitcms-2.1.6.tar.gz" } ], "2.1.7": [ { "comment_text": "", "digests": { "md5": "31cd239d7c3ad00311e74a3c752b411d", "sha256": "b36e521a8e6bccc70cf9355a140015974e7dac1ccfe197a20add8646bd9ad146" }, "downloads": -1, "filename": "wikitcms-2.1.7.tar.gz", "has_sig": false, "md5_digest": "31cd239d7c3ad00311e74a3c752b411d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66497, "upload_time": "2017-02-19T00:52:04", "url": "https://files.pythonhosted.org/packages/52/eb/838d83659688b4f3eead99986c4d4c6779da52f5cb41f8f4ed9aabc15446/wikitcms-2.1.7.tar.gz" } ], "2.1.8": [ { "comment_text": "", "digests": { "md5": "4cab7210ccdd0c3a06d145ce1785a4f8", "sha256": "e66bcda6e60936d021d1aa0e7ca5b8a14a4ce4373d137ff55cede14ec0797f24" }, "downloads": -1, "filename": "wikitcms-2.1.8.tar.gz", "has_sig": false, "md5_digest": "4cab7210ccdd0c3a06d145ce1785a4f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66663, "upload_time": "2017-02-19T00:52:06", "url": "https://files.pythonhosted.org/packages/2b/d2/4ace689a227bdd90bff6d8dfd9d455eaf02decc37e79ff7845e5064b4e6a/wikitcms-2.1.8.tar.gz" } ], "2.1.9": [ { "comment_text": "", "digests": { "md5": "544354a0496cbf4ba3cc27a9bccc2cfe", "sha256": "b2cff17fd504698fac12dedab534109357f44b48c05d64e929d24ea0648643d2" }, "downloads": -1, "filename": "wikitcms-2.1.9.tar.gz", "has_sig": false, "md5_digest": "544354a0496cbf4ba3cc27a9bccc2cfe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66992, "upload_time": "2017-02-19T00:52:07", "url": "https://files.pythonhosted.org/packages/c3/0e/2833ae27f1bcb11358a1be6282129fa8e8ce6fca60a87ce2e59d2a31c9d3/wikitcms-2.1.9.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "8054b8915ae060cbf664ebbc1bed5767", "sha256": "fa3efefd2efb1dfc534bcc44f1aac3c1d286fdf52f1ae13c2e1cfc8ff8c6eb71" }, "downloads": -1, "filename": "wikitcms-2.2.0.tar.gz", "has_sig": false, "md5_digest": "8054b8915ae060cbf664ebbc1bed5767", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70503, "upload_time": "2017-11-11T01:23:13", "url": "https://files.pythonhosted.org/packages/ed/1a/de95967da59b5e23318aa9275867db8cbe7450804141cfd6e47bfa508718/wikitcms-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "1c8f877ea95704cca8804e990f352387", "sha256": "a106fcddfb0a376030bd773dd13eb6d8fd785e44b3ab6dbfcdb0734ac075946d" }, "downloads": -1, "filename": "wikitcms-2.2.1.tar.gz", "has_sig": false, "md5_digest": "1c8f877ea95704cca8804e990f352387", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72743, "upload_time": "2017-11-16T23:09:16", "url": "https://files.pythonhosted.org/packages/29/e1/210531666122c89ee4c9216184fab75042675cd777869584f79d4e95f59c/wikitcms-2.2.1.tar.gz" } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "85e6cf31ec7f6d318926f38554ebf8fd", "sha256": "e11f95a4b2a802b1ac5ba01bc0c2eed9bfa2161e44508ca405036930d9a1e7a4" }, "downloads": -1, "filename": "wikitcms-2.2.2.tar.gz", "has_sig": false, "md5_digest": "85e6cf31ec7f6d318926f38554ebf8fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72913, "upload_time": "2017-12-07T22:46:36", "url": "https://files.pythonhosted.org/packages/8f/69/3d61834dd9f373ef9e3a4a3bb92ced37367c7c0913be3eaefc05430b032d/wikitcms-2.2.2.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "2eec36305b3ce89a5d3e5514e4abf1f4", "sha256": "99fafe390747bff81189a007e28f60c06b2cc00e9e9aa2097237f887442f534c" }, "downloads": -1, "filename": "wikitcms-2.3.0.tar.gz", "has_sig": false, "md5_digest": "2eec36305b3ce89a5d3e5514e4abf1f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75882, "upload_time": "2018-02-21T07:52:30", "url": "https://files.pythonhosted.org/packages/37/b0/c5de6d84187dff8b5d7abd1ac434af5c276dc41dc4b5854e5aaa045cb1fa/wikitcms-2.3.0.tar.gz" } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "41c244a8fedad478aaae968deebb01b0", "sha256": "e9685769b7ed6e2a817ef100a7c52fda51a8d0bc8e4d1993905211caf6f39093" }, "downloads": -1, "filename": "wikitcms-2.3.1.tar.gz", "has_sig": false, "md5_digest": "41c244a8fedad478aaae968deebb01b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76076, "upload_time": "2018-07-11T21:41:49", "url": "https://files.pythonhosted.org/packages/fb/e0/f1df138f13e5d24431cb38d10fbe4be817c36630804ff53af229890728fa/wikitcms-2.3.1.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "f8873339472c61edbe6657fbbd47eade", "sha256": "9b677669922be19445906b12e2ee9c831dd7c1d88080b0d868ce01fd80e72e96" }, "downloads": -1, "filename": "wikitcms-2.4.0.tar.gz", "has_sig": false, "md5_digest": "f8873339472c61edbe6657fbbd47eade", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76174, "upload_time": "2018-10-06T21:42:43", "url": "https://files.pythonhosted.org/packages/a8/02/3a84cb2d593a3bfd8fb7798566ca97a6750d03918403838ec11b2ebc3bd9/wikitcms-2.4.0.tar.gz" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "bdd93c3539e6b7e88dd691e62bb28766", "sha256": "fc7c0950fad677fa439a673e2dd938aa75fe52defaf0a3813720f47585cba7f7" }, "downloads": -1, "filename": "wikitcms-2.4.1.tar.gz", "has_sig": false, "md5_digest": "bdd93c3539e6b7e88dd691e62bb28766", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75533, "upload_time": "2018-12-01T01:03:40", "url": "https://files.pythonhosted.org/packages/8c/c2/0818431b38cc44bb1a9cde83f952b75cbd66e79be65c852a8d907fd45efe/wikitcms-2.4.1.tar.gz" } ], "2.4.2": [ { "comment_text": "", "digests": { "md5": "c40ded5cef55c092f9108e5ec627fd27", "sha256": "103581fc60f55776e2ab357adfc4063666815b2ec939b0f667c963f43d0d263d" }, "downloads": -1, "filename": "wikitcms-2.4.2.tar.gz", "has_sig": false, "md5_digest": "c40ded5cef55c092f9108e5ec627fd27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75591, "upload_time": "2018-12-01T01:40:48", "url": "https://files.pythonhosted.org/packages/16/68/de0b6a14101df79377b84c74190449d67f0dcafbbe02cb6f1917b1d1c997/wikitcms-2.4.2.tar.gz" } ], "2.4.3": [ { "comment_text": "", "digests": { "md5": "25012a6a479516cb45e329d02f9e483e", "sha256": "31f4821764bcf1df2e2aed7682b13a5dd5d4937b0ada93957e5dcc2aaf887acf" }, "downloads": -1, "filename": "wikitcms-2.4.3.tar.gz", "has_sig": false, "md5_digest": "25012a6a479516cb45e329d02f9e483e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76103, "upload_time": "2019-08-27T00:21:10", "url": "https://files.pythonhosted.org/packages/ac/b7/068676279b1614e441fdf8fbb29823f28f55327b41769c14e936b37d9f3b/wikitcms-2.4.3.tar.gz" } ], "2.4.4": [ { "comment_text": "", "digests": { "md5": "8be39e9905922cc252593ca3dadd7572", "sha256": "831b4284e5e5f1e2fb713c4dcb361c2368a43ab9277ff4f1c354b4ba6fd4caf1" }, "downloads": -1, "filename": "wikitcms-2.4.4.tar.gz", "has_sig": false, "md5_digest": "8be39e9905922cc252593ca3dadd7572", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76137, "upload_time": "2019-09-12T16:18:32", "url": "https://files.pythonhosted.org/packages/e7/4d/68fb60fb224c853b858c8ed27635e2f703fa01c2ed395dfbc27bf5009697/wikitcms-2.4.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8be39e9905922cc252593ca3dadd7572", "sha256": "831b4284e5e5f1e2fb713c4dcb361c2368a43ab9277ff4f1c354b4ba6fd4caf1" }, "downloads": -1, "filename": "wikitcms-2.4.4.tar.gz", "has_sig": false, "md5_digest": "8be39e9905922cc252593ca3dadd7572", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76137, "upload_time": "2019-09-12T16:18:32", "url": "https://files.pythonhosted.org/packages/e7/4d/68fb60fb224c853b858c8ed27635e2f703fa01c2ed395dfbc27bf5009697/wikitcms-2.4.4.tar.gz" } ] }