{
"info": {
"author": "Mikhail Korobov",
"author_email": "kmike84@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing"
],
"description": "==============\ndjango-webtest\n==============\n\n.. image:: https://img.shields.io/pypi/v/django-webtest.svg\n :target: https://pypi.python.org/pypi/django-webtest\n :alt: PyPI Version\n\n.. image:: https://img.shields.io/github/license/kmike/django-webtest.svg\n :target: https://github.com/django-webtest/django-webtest/blob/master/LICENSE.txt\n :alt: License\n\n.. image:: https://img.shields.io/travis/django-webtest/django-webtest/master.svg\n :target: http://travis-ci.org/django-webtest/django-webtest\n :alt: Build Status\n\ndjango-webtest is an app for instant integration of Ian Bicking's\nWebTest (http://docs.pylonsproject.org/projects/webtest/) with django's\ntesting framework.\n\nInstallation\n============\n\n::\n\n $ pip install django-webtest\n\nUsage\n=====\n\n::\n\n from django_webtest import WebTest\n\n class MyTestCase(WebTest):\n\n # optional: we want some initial data to be able to login\n fixtures = ['users', 'blog_posts']\n\n # optional: default extra_environ for this TestCase\n extra_environ = {'HTTP_ACCEPT_LANGUAGE': 'ru'}\n\n def testBlog(self):\n # pretend to be logged in as user `kmike` and go to the index page\n index = self.app.get('/', user='kmike')\n\n # All the webtest API is available. For example, we click\n # on a Blog link, check that it\n # works (result page doesn't raise exceptions and returns 200 http\n # code) and test if result page have 'My Article' text in\n # its body.\n assert 'My Article' in index.click('Blog')\n\ndjango-webtest provides a django.test.TestCase subclass\n(``django_webtest.WebTest``) that creates ``webtest.TestApp`` around\ndjango wsgi interface and makes it available in tests as ``self.app``.\n\nIt also features an optional ``user`` argument for ``self.app.get``,\n``self.app.post``, etc. to help making authorized requests. This argument\nshould be a django.contrib.auth.models.User instance or a string with user's\n``username`` for the user who is supposed to be logged in. To log out again,\ncall ``self.app.reset``, clearing all cookies. To make a bunch of calls\nwith the same user, call ``app.set_user(user)`` before your requests; if\nyou want to disable that user, call ``app.get(..., user=None)`` for one\nrequest or ``app.set_user(None)`` to unset the user for all following calls.\n\nFor 500 errors original traceback is shown instead of usual html result\nfrom handler500.\n\nYou also get the ``response.templates`` and ``response.context`` goodness that\nis usually only available if you use django's native test client. These\nattributes contain a list of templates that were used to render the response\nand the context used to render these templates. All of django's native asserts (\n``assertFormError``, ``assertTemplateUsed``, ``assertTemplateNotUsed``,\n``assertContains``, ``assertNotContains``, ``assertRedirects``) are\nalso supported for WebTest responses.\n\nThe session dictionary is available via ``self.app.session``, and has the\nsame content than django's native test client.\n\nUnlike django's native test client CSRF checks are not suppressed\nby default so missing CSRF tokens will cause test fails (and that's good).\n\nIf forms are submitted via WebTest forms API then all form fields (including\nCSRF token) are submitted automagically::\n\n class AuthTest(WebTest):\n fixtures = ['users.json']\n\n def test_login(self)\n form = self.app.get(reverse('auth_login')).form\n form['username'] = 'foo'\n form['password'] = 'bar'\n response = form.submit().follow()\n self.assertEqual(response.context['user'].username, 'foo')\n\nHowever if forms are submitted via raw POST requests using ``app.post`` then\ncsrf tokens become hard to construct. CSRF checks can be disabled by setting\n``csrf_checks`` attribute to False in this case::\n\n class MyTestCase(WebTest):\n csrf_checks = False\n\n def test_post(self)\n self.app.post('/')\n\nWhen a subclass of django's ``TransactionTestCase`` is desired,\nuse ``django_webtest.TransactionWebTest``.\n\nAll of these features can be easily set up manually (thanks to WebTest\narchitecture) and they are even not neccessary for using WebTest with django but\nit is nice to have some sort of integration instantly.\n\nSee http://docs.pylonsproject.org/projects/webtest/ for API help. Webtest can\nfollow links, submit forms, parse html, xml and json responses with different\nparsing libraries, upload files and more.\n\nIntegration with django-rest-framework\n======================================\n\nIf your project uses django-rest-framework__, the setting\n``REST_FRAMEWORK['AUTHENTICATION_CLASSES']`` will be patched\nautomatically to include a class that links the rest-framework\nauthentication system with ``app.get(user=user)``.\n\n.. __: https://www.django-rest-framework.org/\n\nUsage with pytest\n=================\n\nYou need to install `pytest-django `_::\n\n $ pip install pytest-django\n\nThen you can use ``django-webtest``'s fixtures::\n\n def test_1(django_app):\n resp = django_app.get('/')\n\n def test_2(django_app_factory):\n app = django_app_factory(csrf_checks=False, extra_environ={})\n resp = app.get('/')\n\nWhy?\n====\n\nWhile django.test.client.Client is fine for its purposes, it is not\nwell-suited for functional or integration testing. From django's test client\ndocstring:\n\n This is not intended as a replacement for Twill/Selenium or\n the like - it is here to allow testing against the\n contexts and templates produced by a view, rather than the\n HTML rendered to the end-user.\n\nWebTest plays on the same field as twill. WebTest has a nice API,\nis fast, small, talks to the django application via WSGI instead of HTTP\nand is an easy way to write functional/integration/acceptance tests.\ndjango-webtest is able to provide access to the names of rendered templates\nand template context just like native django TestClient.\n\nContributing\n============\n\nDevelopment happens at github: https://github.com/django-webtest/django-webtest\nIssue tracker: https://github.com/django-webtest/django-webtest/issues\n\nFeel free to submit ideas, bugs or pull requests.\n\nRunning tests\n-------------\n\nMake sure `tox`_ is installed and run\n\n::\n\n $ tox\n\nfrom the source checkout.\n\n.. _tox: http://tox.testrun.org\n\n\n\n\nCHANGES\n=======\n\n1.9.7 (2019-07-05)\n------------------\n\n- allow overriding HTTP_HOST with DjangoTestApp.__init__. Fixed #102\n\n\n1.9.6 (2019-06-07)\n------------------\n\n- rest_framework auth class. Fixed #98 #100\n\n\n1.9.5 (2019-05-31)\n------------------\n\n- Fix compatibility with django 3. See #96\n\n- Add integration with django-rest-framework auth\n\n- Add missing args to DjangoTestApp. Fixed #86\n\n1.9.4 (2018-10-27)\n------------------\n\n- py34 and Django 1.8 are no longer tested (but may works)\n\n- allow to use positionnal args; fixed #89\n\n- remove deprecated pytest.yield_fixture functions. use pytest.fixture instead;\n fixed #88\n\n- Don't add duplicate WebtestUserMiddleware to the list of middlewares in\n WebTestMixin. fixed #87\n\n- restore MIDDLEWARE_CLASSES support; fixed #84\n\n1.9.3 (2018-05-03)\n------------------\n\n- Passing `user=None` to get/post/etc. methods will clear a user\n previously set with `set_user` instead of doing nothing.\n\n- Avoid sharing settings between tests in pytest plugin\n\n- Fix middleware settings name used\n\n\n1.9.2 (2017-05-17)\n------------------\n\n- silence warnings about is_authenticated on 1.11\n\n- include correct hostname (testserver) when using set_cookie\n\n\n1.9.1 (2017-03-09)\n------------------\n\n- Fix package description (multiline are no longer allowed by pypi)\n\n\n1.9.0 (2017-03-09)\n------------------\n\n- Backward incompatibility: positionnal arguments are no longer supported.\n You'll need to replace them by keywords arguments.\n\n- Added support for Django 1.11\n\n- Dropped support for Django <= 1.7\n\n- Dropped support for Python 2.6\n\n- Changed value of `HTTP_HOST` header from `localhost` to `testserver`, to\n match behaviour of Django test client.\n\n- Fixed `DjangoTestApp.options`\n\n- Added `DjangoTestApp.head`\n\n- Added pytest fixtures\n\n\n1.8.0 (2016-09-14)\n------------------\n\n- Fixed issue #40 - combining ``app.get`` ``auto_follow=True`` with other\n keyword args.\n\n- Add compatibility to the MIDDLEWARE setting introduced in django 1.10\n\n- Drop support for django 1.2\n\n1.7.9 (2016-04-19)\n------------------\n\n- Add set_user() to allow to set a user globally for the app\n\n- Allow 'click' to be given a user param\n\n- Mention testapp.reset() in readme\n\n- Allow to use ``json_`` methods\n\n1.7.8 (2015-04-21)\n------------------\n\n- setup.py is switched to setuptools; WebTest is now installed automatically\n (thanks Eric Araujo);\n- importlib from stdlib is used when available, for django 1.9 compatibility\n (thanks Helen Sherwood-Taylor);\n- django-webtest's own tests are fixed to work in django 1.6+;\n- https://bitbucket.org/kmike/django-webtest repository is no longer supported.\n\n1.7.7 (2014-03-25)\n------------------\n\n- Fix installation for Python 3.x on systems with C locales.\n\n1.7.6 (2014-01-20)\n------------------\n\n- DjangoTestApp methods pass all custom keyword arguments to webtest.TestApp;\n this allows to use ``xhr=True`` feature (thanks Max Kharandziuk).\n- Travis CI testing fixes (thanks Darian Moody).\n\n1.7.5 (2013-07-17)\n------------------\n\n- OPTIONS method is fixed;\n- added workaround for DELETE method warnings\n (see https://github.com/Pylons/webtest/issues/50).\n\n1.7.4 (2013-07-14)\n------------------\n\n- Really add ``TransactionWebTest`` base class (thanks Julien Aubert).\n\n1.7.3 (2013-07-07)\n------------------\n\n- Added support for PATCH and OPTIONS HTTP methods (thanks Will Bradley).\n\n1.7.2 (2013-06-27)\n------------------\n\n- ``TransactionWebTest`` base class is added (thanks Iurii Kriachko).\n\n1.7.1 (2013-06-11)\n------------------\n\n- Added support for non-ascii usernames.\n\n1.7 (2013-05-23)\n----------------\n\n- Added support for django 1.6 (thanks Carl Meyer).\n\n1.6.1 (2013-03-31)\n------------------\n\n- Added support for django 1.5+ custom user models (thanks Gautier Hayoun).\n\n1.6 (2013-03-07)\n----------------\n\n- Added ability to pass a custom response_class and app_class to WebTest\n (thanks Bruno Reni\u00e9);\n- Added case-insensitive header access in DjangoWebtestResponse (thanks\n Bruno Reni\u00e9).\n\n1.5.7 (2013-02-27)\n------------------\n\n- WebTest 2.0 support.\n\n1.5.6 (2013-01-21)\n------------------\n\n- django 1.5 support: transaction handling is fixed (thanks Marco Braak).\n\n1.5.5 (2013-01-14)\n------------------\n\n- Fixed django 1.5 support: DjangoWebtestResponse.streaming attribute\n is added (thanks David Winterbottom).\n\n1.5.4 (2012-09-13)\n------------------\n\n- fix django 1.5 issues with AdminMediaHandler (thanks Tai Lee);\n- tox.ini is updated to use latest django versions and the\n official trunk with python3 support;\n- django 1.5 SimpleCookie issues are fixed.\n\n1.5.3 (2012-04-25)\n------------------\n\n- self.assertRedirects is fixed for authenticated requests.\n\n1.5.2 (2012-04-01)\n------------------\n\n- if AuthenticationMiddleware is not in a middleware list,\n WebtestUserMiddleware is put to the end of middlewares in order to\n provide better backward compatibility with 1.4.x in case of custom\n auth middlewares.\n\n1.5.1 (2012-03-22)\n------------------\n\n- Fixed handling of forms with method=\"get\". Thanks Jeroen Vloothuis.\n\n1.5 (2012-02-24)\n----------------\n\n- WebtestUserMiddleware is inserted after AuthenticationMiddleware, not to\n the end of middleware list (thanks bigkevmcd);\n- don't list python 2.5 as supported because WebOb dropped 2.5 support;\n- python 3 support;\n- test running using tox.\n\n1.4.4 (2012-02-08)\n------------------\n\n- 'user' parameter for ``self.app.put`` and ``self.app.delete`` methods (thanks\n Ruslan Popov).\n\n1.4.3 (2011-09-27)\n------------------\n\n- The django session dictionary is available via ``self.app.session``.\n\n1.4.2 (2011-08-26)\n------------------\n\n- ``REMOTE_ADDR`` is now ``'127.0.0.1'`` by default. This is how\n standard django's test client behave.\n\n Please note that this can slow tests down and cause other side effects\n if django-debug-toolbar 0.9.x is installed+configured and\n ``INTERNAL_IPS`` contain ``'127.0.0.1'`` because debug toolbar will\n become turned on during tests. The workaround is to remove\n django-debug-toolbar middleware during tests in your test settings::\n\n DEBUG_MIDDLEWARE = 'debug_toolbar.middleware.DebugToolbarMiddleware'\n if DEBUG_MIDDLEWARE in MIDDLEWARE_CLASSES:\n MIDDLEWARE_CLASSES.remove(DEBUG_MIDDLEWARE)\n\n\n1.4.1 (2011-06-29)\n------------------\n\n- ``self.renew_app()`` method for resetting the 'browser' inside tests.\n\n1.4 (2011-06-23)\n----------------\n\n- Better auth implementation;\n- support for assertRedirects, assertContains and assertNotContains.\n\n1.3 (2010-12-31)\n----------------\n\n- Django 1.3 compatibility: test responses are now having 'templates' attribute;\n- Django 1.3 compatibility: the way exceptions are handled is changed;\n- auto_follow parameter for app.get method (redirect chains will be\n auto-followed with auto_follow=True).\n\n1.2.1 (2010-08-24)\n------------------\n\n- REMOTE_USER authorization can be disabled.\n\n1.2 (2010-08-21)\n----------------\n\n- ``response.template`` and ``response.context`` goodness (thanks Gregor M\u00fcllegger);\n- tests (thanks Gregor M\u00fcllegger);\n- csrf checks are now optional (thanks Gregor M\u00fcllegger).\n\n1.1.1 (2010-07-16)\n------------------\n\n- User instance can be passed to `get` and `post` methods instead\n of user's username.\n\n1.1 (2010-06-15)\n----------------\n\n- Original traceback instead of html 500 error page;\n- per-TestCase extra_environ (thanks Gael Pasgrimaud);\n- fixed a bug with app.post parameters (thanks anonymous).\n\n\n1.0 (2010-04-20)\n----------------\nInitial release (thanks Ian Bicking for WebTest).",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/django-webtest/django-webtest",
"keywords": "",
"license": "MIT license",
"maintainer": "",
"maintainer_email": "",
"name": "django-webtest",
"package_url": "https://pypi.org/project/django-webtest/",
"platform": "",
"project_url": "https://pypi.org/project/django-webtest/",
"project_urls": {
"Homepage": "https://github.com/django-webtest/django-webtest"
},
"release_url": "https://pypi.org/project/django-webtest/1.9.7/",
"requires_dist": null,
"requires_python": "",
"summary": "Instant integration of Ian Bicking's WebTest (http://docs.pylonsproject.org/projects/webtest/) with django's testing framework.",
"version": "1.9.7"
},
"last_serial": 5492108,
"releases": {
"1.0": [
{
"comment_text": "",
"digests": {
"md5": "81b5518ec051117407ec38fba8997149",
"sha256": "d544fbaf26c52877a36e01a139309ef04a5654d467e64da8fc81c9312f1f9888"
},
"downloads": -1,
"filename": "django-webtest-1.0.tar.gz",
"has_sig": false,
"md5_digest": "81b5518ec051117407ec38fba8997149",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4309,
"upload_time": "2010-04-20T00:40:37",
"url": "https://files.pythonhosted.org/packages/1f/7e/3b4202e12bf4b2ee09f515f6b0f6c9bbe484840197c8e4f3ddba12bfccbb/django-webtest-1.0.tar.gz"
}
],
"1.0.1": [
{
"comment_text": "",
"digests": {
"md5": "92141266d7fb329412c4b41574a3cdc1",
"sha256": "b92323097df255250349d009ab583c4fbd4611c43e826a588db66e6a0160a422"
},
"downloads": -1,
"filename": "django-webtest-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "92141266d7fb329412c4b41574a3cdc1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4301,
"upload_time": "2010-04-20T00:42:40",
"url": "https://files.pythonhosted.org/packages/29/27/857e11d765ea7e1ca781feb59f46f3e2b569a5121aadb773bb4a44f8dea5/django-webtest-1.0.1.tar.gz"
}
],
"1.0.2": [
{
"comment_text": "",
"digests": {
"md5": "59b6c94940473176ffd514ff8b496b8c",
"sha256": "3034230010802d87a7e0f7f4e71cef99f27875d4b938f252b1265fb84fae1927"
},
"downloads": -1,
"filename": "django-webtest-1.0.2.tar.gz",
"has_sig": false,
"md5_digest": "59b6c94940473176ffd514ff8b496b8c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4269,
"upload_time": "2010-04-20T22:13:05",
"url": "https://files.pythonhosted.org/packages/1a/0e/835e5c186c04852510c7922047a79cd38d6c79a5af86cc393b01b2b3b9e6/django-webtest-1.0.2.tar.gz"
}
],
"1.0.3": [
{
"comment_text": "",
"digests": {
"md5": "3dedc94cd34f5978ca9c4c97f0dcde89",
"sha256": "83d1c51cd9e414028de64c0ab45742d8e850ca8ed8226e0e18eaa69d6c67d36b"
},
"downloads": -1,
"filename": "django-webtest-1.0.3.tar.gz",
"has_sig": false,
"md5_digest": "3dedc94cd34f5978ca9c4c97f0dcde89",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4345,
"upload_time": "2010-05-08T10:49:19",
"url": "https://files.pythonhosted.org/packages/ad/7b/32f8c766634a5e3253a9fa3c6e5050588ca8df45cf2179fcabd7edbb337c/django-webtest-1.0.3.tar.gz"
}
],
"1.0.4": [
{
"comment_text": "",
"digests": {
"md5": "f08721422f77edb35a466813437af968",
"sha256": "648906937472c97d4f96d4adcdb6c84fb198017510e7060b38bfc35f09d6a086"
},
"downloads": -1,
"filename": "django-webtest-1.0.4.tar.gz",
"has_sig": false,
"md5_digest": "f08721422f77edb35a466813437af968",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4432,
"upload_time": "2010-05-26T17:41:47",
"url": "https://files.pythonhosted.org/packages/0b/52/5cf101b353cd2e065beefa6c7fb5d69c514ff869a17738c8d5c531c9046d/django-webtest-1.0.4.tar.gz"
}
],
"1.1.0": [
{
"comment_text": "",
"digests": {
"md5": "0b26d3e373bd40d462875bbaf525ab43",
"sha256": "dad7bba4e4ae187bd3f8c2275912a158f67d4a7702f2e9292eed387df74e400c"
},
"downloads": -1,
"filename": "django-webtest-1.1.0.tar.gz",
"has_sig": false,
"md5_digest": "0b26d3e373bd40d462875bbaf525ab43",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4578,
"upload_time": "2010-06-15T02:34:54",
"url": "https://files.pythonhosted.org/packages/9a/ac/1195d13eb2033f493f4f6dfa274b5b39dca716f7b336bd04bf3c82e726ce/django-webtest-1.1.0.tar.gz"
}
],
"1.1.1": [
{
"comment_text": "",
"digests": {
"md5": "e634b06938fc1bd3051686716190eb0a",
"sha256": "8e16f5d9eef51048d7f547bfe078fb5dba71d39be992c70c268bef7ceb4139ab"
},
"downloads": -1,
"filename": "django-webtest-1.1.1.tar.gz",
"has_sig": false,
"md5_digest": "e634b06938fc1bd3051686716190eb0a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4662,
"upload_time": "2010-07-16T12:32:06",
"url": "https://files.pythonhosted.org/packages/30/3a/3a6682a98839e39365cbab0ea4e484e80e966d009d088882042de58ef8f1/django-webtest-1.1.1.tar.gz"
}
],
"1.2": [
{
"comment_text": "",
"digests": {
"md5": "2a5b8882f2bc902f7356cc04039c0ab2",
"sha256": "8f26aa55dfafb829e45e39ace92636f703c3979f830a038640f6d9e8f5ef3d00"
},
"downloads": -1,
"filename": "django-webtest-1.2.tar.gz",
"has_sig": false,
"md5_digest": "2a5b8882f2bc902f7356cc04039c0ab2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5958,
"upload_time": "2010-08-21T00:57:25",
"url": "https://files.pythonhosted.org/packages/25/47/4f7cb4961d4ab7f5dfeea70ae5101c0bc18c72e488c1f8e6ec63f7e904ae/django-webtest-1.2.tar.gz"
}
],
"1.2.1": [
{
"comment_text": "",
"digests": {
"md5": "76712d2ab7a40c2359e0b4d9ccdd7209",
"sha256": "54e48cc79401ca7a3978f49b8cc09d3f7d2a406d785791da9be49ae23fbc3ec5"
},
"downloads": -1,
"filename": "django-webtest-1.2.1.tar.gz",
"has_sig": false,
"md5_digest": "76712d2ab7a40c2359e0b4d9ccdd7209",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6005,
"upload_time": "2010-08-24T01:32:22",
"url": "https://files.pythonhosted.org/packages/60/38/5e6983e2cfc16593ed4673b84606ca600896ee15d7665ae5b7b0c67ff39b/django-webtest-1.2.1.tar.gz"
}
],
"1.2.2": [
{
"comment_text": "",
"digests": {
"md5": "f29e9a69ed7b41df08108949b7e8cbed",
"sha256": "808471ac4071fe44eca240b922f8c928d3db4165d8da56b64a3b8f1e0568feee"
},
"downloads": -1,
"filename": "django-webtest-1.2.2.tar.gz",
"has_sig": false,
"md5_digest": "f29e9a69ed7b41df08108949b7e8cbed",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6186,
"upload_time": "2010-08-30T15:01:57",
"url": "https://files.pythonhosted.org/packages/9d/e6/f64728c580b92ba49df6e52d8dcbb9c7670291bad2b0c019a9bf143b957a/django-webtest-1.2.2.tar.gz"
}
],
"1.3": [
{
"comment_text": "",
"digests": {
"md5": "6bdfb23d47ca96d9e65d4da384a038d0",
"sha256": "944ab2cc77839944a476bf9cdb94831ee1127898457c64318cf632055f31a218"
},
"downloads": -1,
"filename": "django-webtest-1.3.tar.gz",
"has_sig": false,
"md5_digest": "6bdfb23d47ca96d9e65d4da384a038d0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6563,
"upload_time": "2010-12-30T21:35:05",
"url": "https://files.pythonhosted.org/packages/16/b2/7f78eeb8c63cc13cd9ee0b6c70dea8bba024ad5bdbaef2166958966b993e/django-webtest-1.3.tar.gz"
}
],
"1.4": [
{
"comment_text": "",
"digests": {
"md5": "d838fe9def09f5ccbce69960377aa888",
"sha256": "70eb48e4b10490d3934190ff6704ad1236bd4443979ad62c2ab57f5491270483"
},
"downloads": -1,
"filename": "django-webtest-1.4.tar.gz",
"has_sig": false,
"md5_digest": "d838fe9def09f5ccbce69960377aa888",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7700,
"upload_time": "2011-06-22T21:38:21",
"url": "https://files.pythonhosted.org/packages/e8/7b/e4c98c8afb6c621253873bf4c62781f5a8aa51ca091f4b60c679fac7a9ce/django-webtest-1.4.tar.gz"
}
],
"1.4.1": [
{
"comment_text": "",
"digests": {
"md5": "cc752cf9e6503c71c58b784007219bdb",
"sha256": "306ec77183289d7536f7651f985eaa786fce5be3a9cb26c05c44053272e17f0b"
},
"downloads": -1,
"filename": "django-webtest-1.4.1.tar.gz",
"has_sig": false,
"md5_digest": "cc752cf9e6503c71c58b784007219bdb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7842,
"upload_time": "2011-06-28T22:10:15",
"url": "https://files.pythonhosted.org/packages/a6/4f/7707f3bddd50d802f7890fcc3dd797b7827bf5b6c9170c8ad8ab434894fb/django-webtest-1.4.1.tar.gz"
}
],
"1.4.2": [
{
"comment_text": "",
"digests": {
"md5": "e7d1e4f3f3a21026b56731dea46700b0",
"sha256": "d0236cd3e88a0d081932742dc55534e916400bfc61dc5c6b84d0968758cd870e"
},
"downloads": -1,
"filename": "django-webtest-1.4.2.tar.gz",
"has_sig": false,
"md5_digest": "e7d1e4f3f3a21026b56731dea46700b0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8208,
"upload_time": "2011-08-26T10:48:00",
"url": "https://files.pythonhosted.org/packages/8f/8c/b4a95027e0404de935da06557db2a6447d2bc0235ad0928311ed4ad764ef/django-webtest-1.4.2.tar.gz"
}
],
"1.4.3": [
{
"comment_text": "",
"digests": {
"md5": "bf0a0ba56b554940f5f1d210274072a3",
"sha256": "1307ef8f3b14818e963851eceefe6a68202995651338fc020424bd49d5eee1fe"
},
"downloads": -1,
"filename": "django-webtest-1.4.3.tar.gz",
"has_sig": false,
"md5_digest": "bf0a0ba56b554940f5f1d210274072a3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8425,
"upload_time": "2011-09-26T22:02:48",
"url": "https://files.pythonhosted.org/packages/cb/e2/f858228617e9d772ef492cc12da8db9d857d100e116da612f490bd607512/django-webtest-1.4.3.tar.gz"
}
],
"1.4.4": [
{
"comment_text": "",
"digests": {
"md5": "fe4d1b6d6aefe2a698e0a941323d219c",
"sha256": "e178b47b105e9e8570f82cac145f2bb9c5e1eb508b1c8da775ae4f9479dc65d3"
},
"downloads": -1,
"filename": "django-webtest-1.4.4.tar.gz",
"has_sig": false,
"md5_digest": "fe4d1b6d6aefe2a698e0a941323d219c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8510,
"upload_time": "2012-02-07T23:25:44",
"url": "https://files.pythonhosted.org/packages/74/8f/befa50c84387ead0d6cc076cf9bbf398b9b41b6ad00b8359543e59cb31e4/django-webtest-1.4.4.tar.gz"
}
],
"1.5": [
{
"comment_text": "",
"digests": {
"md5": "5cfdbd8eeba616bfe4067291c7fecfea",
"sha256": "266a1ac1aa15f88a89e271c6f4c6218000c77f77d48b704577801c6e63f47e17"
},
"downloads": -1,
"filename": "django-webtest-1.5.tar.gz",
"has_sig": false,
"md5_digest": "5cfdbd8eeba616bfe4067291c7fecfea",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8856,
"upload_time": "2012-02-24T18:05:12",
"url": "https://files.pythonhosted.org/packages/c4/e5/735c1e94750d689177132c43e6067eff0e183a432375efeb0d5a68d59c60/django-webtest-1.5.tar.gz"
}
],
"1.5.1": [
{
"comment_text": "",
"digests": {
"md5": "61e5d0c73ef2933f7d73e392890c07b3",
"sha256": "55aa290c274e2eb5b0efdd1e8ac349a69e64dc10a656b38c78946ea59a7798ea"
},
"downloads": -1,
"filename": "django-webtest-1.5.1.tar.gz",
"has_sig": false,
"md5_digest": "61e5d0c73ef2933f7d73e392890c07b3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8940,
"upload_time": "2012-03-21T21:43:42",
"url": "https://files.pythonhosted.org/packages/28/01/699d4150eca956832ae6e9f49e9c4c583d7ea3e4c9f8e523bc45cb0db39a/django-webtest-1.5.1.tar.gz"
}
],
"1.5.2": [
{
"comment_text": "",
"digests": {
"md5": "964767d7a11b860a5b3be97a91b406ae",
"sha256": "79b917300cd6e21ef891724826b373fa55dfd250682a7eca20a0cf20593d0e06"
},
"downloads": -1,
"filename": "django-webtest-1.5.2.tar.gz",
"has_sig": false,
"md5_digest": "964767d7a11b860a5b3be97a91b406ae",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9186,
"upload_time": "2012-04-01T00:32:04",
"url": "https://files.pythonhosted.org/packages/8e/9e/0e56abdbdc56bb8d64af013e95f0c0489dcecc2232cb374bf736ad7d3bab/django-webtest-1.5.2.tar.gz"
}
],
"1.5.3": [
{
"comment_text": "",
"digests": {
"md5": "e28cce81ddcdba67899a9441444140c7",
"sha256": "5e4e7361a2e8c2c3905a78e585fbe5cd0b04574f9174a53359d189ea2af7bd83"
},
"downloads": -1,
"filename": "django-webtest-1.5.3.tar.gz",
"has_sig": false,
"md5_digest": "e28cce81ddcdba67899a9441444140c7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9257,
"upload_time": "2012-04-25T17:03:19",
"url": "https://files.pythonhosted.org/packages/ee/f7/d1c75fe8a036aec2e524d47253f1edd5ac5b754351510ad9ce1e62e00cc8/django-webtest-1.5.3.tar.gz"
}
],
"1.5.4": [
{
"comment_text": "",
"digests": {
"md5": "663b360df5e889fa19e4d722b6a4ea69",
"sha256": "776dfdff3c28e30f0a1434a57e0558dd2b5161b5838ddebc50e39000e58b9f50"
},
"downloads": -1,
"filename": "django-webtest-1.5.4.tar.gz",
"has_sig": false,
"md5_digest": "663b360df5e889fa19e4d722b6a4ea69",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9656,
"upload_time": "2012-09-12T18:15:41",
"url": "https://files.pythonhosted.org/packages/14/69/0596f571384dce50d403dec0f316774f4892991dc782ebaa0ae892b2328f/django-webtest-1.5.4.tar.gz"
}
],
"1.5.5": [
{
"comment_text": "",
"digests": {
"md5": "9ca4271ce77302b3d4f64f4556097020",
"sha256": "60ea708c96c98c2cf0cd783eef727b63447a5ffe518ca27e23e8bb2e1603d5d7"
},
"downloads": -1,
"filename": "django-webtest-1.5.5.tar.gz",
"has_sig": false,
"md5_digest": "9ca4271ce77302b3d4f64f4556097020",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9726,
"upload_time": "2013-01-14T11:49:58",
"url": "https://files.pythonhosted.org/packages/ae/fb/a0af6c5a46349305019f10ce87077aeb90b968afbbd3efc0f1e8d12bf271/django-webtest-1.5.5.tar.gz"
}
],
"1.5.6": [
{
"comment_text": "",
"digests": {
"md5": "ba21ea9ae8bfb1c9b6ab07f64152c86d",
"sha256": "900bdc7426d479a64332eac0863ce1311ccb77257733495c3deffe000f4c4b6e"
},
"downloads": -1,
"filename": "django-webtest-1.5.6.tar.gz",
"has_sig": false,
"md5_digest": "ba21ea9ae8bfb1c9b6ab07f64152c86d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9540,
"upload_time": "2013-01-20T19:55:50",
"url": "https://files.pythonhosted.org/packages/0b/67/54a99c789be0e27c302aced309cde79168e3697b2eb01b0e08e7deb191a7/django-webtest-1.5.6.tar.gz"
}
],
"1.5.7": [
{
"comment_text": "",
"digests": {
"md5": "9962892ce25ed8f236005211ef180fa1",
"sha256": "e512acf10278dc80190395a1ee21f099932ab38b56e255d36fb8d899fb3fed20"
},
"downloads": -1,
"filename": "django-webtest-1.5.7.tar.gz",
"has_sig": false,
"md5_digest": "9962892ce25ed8f236005211ef180fa1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9704,
"upload_time": "2013-02-27T08:52:03",
"url": "https://files.pythonhosted.org/packages/35/35/9e1300dfd8224dfe886958ee28e81742405e8596df15f5fcc4b1a535231e/django-webtest-1.5.7.tar.gz"
}
],
"1.6": [
{
"comment_text": "",
"digests": {
"md5": "87803696ab7e303674250c0faa00fe13",
"sha256": "b646d9b437933493fbc23b534c5e41113f9f57e4f4fa8214e3bbe5c88dd05b91"
},
"downloads": -1,
"filename": "django-webtest-1.6.tar.gz",
"has_sig": false,
"md5_digest": "87803696ab7e303674250c0faa00fe13",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9850,
"upload_time": "2013-03-07T09:42:05",
"url": "https://files.pythonhosted.org/packages/d9/3f/86161c16e607d2b875e00793d88f20e5b686d82b29622308fc7c50b1ddbb/django-webtest-1.6.tar.gz"
}
],
"1.6.1": [
{
"comment_text": "",
"digests": {
"md5": "de0b81d7dacb4eb91214f2e6ef9e6a8f",
"sha256": "862430d69b0043bb068aa342cee6eb0cae0c498d670c6ff9ce2bfc2fa2763265"
},
"downloads": -1,
"filename": "django-webtest-1.6.1.tar.gz",
"has_sig": false,
"md5_digest": "de0b81d7dacb4eb91214f2e6ef9e6a8f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10014,
"upload_time": "2013-03-31T14:23:41",
"url": "https://files.pythonhosted.org/packages/bc/a4/b4330f6318697e7a7d996f71a40159e5e39410af252ed10bce59e51a7736/django-webtest-1.6.1.tar.gz"
}
],
"1.7": [
{
"comment_text": "",
"digests": {
"md5": "028f1de721e35d6598ff5386cf22d705",
"sha256": "6877e7a0842ed91824acfb5ab3a181b6bdfa5f933ed91f7c51ba9a6f28260827"
},
"downloads": -1,
"filename": "django-webtest-1.7.tar.gz",
"has_sig": false,
"md5_digest": "028f1de721e35d6598ff5386cf22d705",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10608,
"upload_time": "2013-05-23T08:28:31",
"url": "https://files.pythonhosted.org/packages/62/00/b584efde3c6c42b804b77126e9f25d9b119fc9dfb7e7f381e50ad6985d67/django-webtest-1.7.tar.gz"
}
],
"1.7.1": [
{
"comment_text": "",
"digests": {
"md5": "a227cb81e77a28bbc8f6b52d1f0b4af0",
"sha256": "c4c17da61bff61cd23c1ee864f4735aa3ad5289c0f7e12192bb24300f417eb37"
},
"downloads": -1,
"filename": "django-webtest-1.7.1.tar.gz",
"has_sig": false,
"md5_digest": "a227cb81e77a28bbc8f6b52d1f0b4af0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11177,
"upload_time": "2013-06-11T00:52:15",
"url": "https://files.pythonhosted.org/packages/e7/d2/5214ed64ad19b56071bff0ade3beff59a3e52840decda7c061617f1cbba1/django-webtest-1.7.1.tar.gz"
}
],
"1.7.2": [
{
"comment_text": "",
"digests": {
"md5": "d539ccbcbed99c81fea718e83c0ea071",
"sha256": "d4a04b93c25fafb82d3831f91e6b10728ef6631247ccdcfb62210891419e0510"
},
"downloads": -1,
"filename": "django-webtest-1.7.2.tar.gz",
"has_sig": false,
"md5_digest": "d539ccbcbed99c81fea718e83c0ea071",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11373,
"upload_time": "2013-06-26T21:28:39",
"url": "https://files.pythonhosted.org/packages/82/12/3fd051ee567dd167934a2e076b229f9fe43e8be0e088e5536b639af8d51b/django-webtest-1.7.2.tar.gz"
}
],
"1.7.3": [
{
"comment_text": "",
"digests": {
"md5": "1e06008c488d9e5d7f2d1d9610595419",
"sha256": "e518e41312c713dc9180eff54ea76c87396169f6ee8c74e9361b16f177e9ecb0"
},
"downloads": -1,
"filename": "django-webtest-1.7.3.tar.gz",
"has_sig": false,
"md5_digest": "1e06008c488d9e5d7f2d1d9610595419",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11491,
"upload_time": "2013-07-07T04:10:35",
"url": "https://files.pythonhosted.org/packages/1d/15/3aeb034f98cbe7d04cd16c46d0c1008ba578a0e3cb8e9ff8165c595e137c/django-webtest-1.7.3.tar.gz"
}
],
"1.7.4": [
{
"comment_text": "",
"digests": {
"md5": "84698cd1592b073262f7aaf031398ba2",
"sha256": "81295d55a9bb463f4161060e1ec382e5093d904ee2b76beb88877529f52ddc83"
},
"downloads": -1,
"filename": "django-webtest-1.7.4.tar.gz",
"has_sig": false,
"md5_digest": "84698cd1592b073262f7aaf031398ba2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11559,
"upload_time": "2013-07-14T15:35:21",
"url": "https://files.pythonhosted.org/packages/6a/3e/9b6004a0054325e3b688c25abd083a8f7881f0a8c773cccaf73a3af32df3/django-webtest-1.7.4.tar.gz"
}
],
"1.7.5": [
{
"comment_text": "",
"digests": {
"md5": "400108faaaafe65c8af00e7d55fff276",
"sha256": "0f0042d8ba9d8e1eb1e0446ac56a3ae4dc23dc040fb5e6db371c5c349b3cb56e"
},
"downloads": -1,
"filename": "django-webtest-1.7.5.tar.gz",
"has_sig": false,
"md5_digest": "400108faaaafe65c8af00e7d55fff276",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11708,
"upload_time": "2013-07-16T20:59:51",
"url": "https://files.pythonhosted.org/packages/88/b8/7b0f2c0a379d0dcdcd647ef67ea51f8d514c3560be4ef9996cc1bf3b137a/django-webtest-1.7.5.tar.gz"
}
],
"1.7.6": [
{
"comment_text": "",
"digests": {
"md5": "ceb96755df31c44236f12e0053e5c225",
"sha256": "dcc21f07d95597ac93ee01450be013edc4044c71a24fc8a0960dc68e28d7d512"
},
"downloads": -1,
"filename": "django-webtest-1.7.6.tar.gz",
"has_sig": false,
"md5_digest": "ceb96755df31c44236f12e0053e5c225",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11938,
"upload_time": "2014-01-20T12:23:43",
"url": "https://files.pythonhosted.org/packages/da/95/a14e7c1a444b05be88987dcb3d4ae39ab0a5f8a7c032637e1866edbf830e/django-webtest-1.7.6.tar.gz"
}
],
"1.7.7": [
{
"comment_text": "",
"digests": {
"md5": "39797dc78f9f5a367d09130b8c25c051",
"sha256": "0d6cca52b41e6718c0032b5e4749f4d634d922a2bb7cd901709b3777750efa20"
},
"downloads": -1,
"filename": "django-webtest-1.7.7.tar.gz",
"has_sig": false,
"md5_digest": "39797dc78f9f5a367d09130b8c25c051",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12095,
"upload_time": "2014-03-25T21:34:33",
"url": "https://files.pythonhosted.org/packages/84/a0/90d555d320d49105fffaa984a4ad8e5ef9f0525205abdd95ba0ec6816082/django-webtest-1.7.7.tar.gz"
}
],
"1.7.8": [
{
"comment_text": "",
"digests": {
"md5": "15182fc7612c6311e937744c5bece47f",
"sha256": "712cf421ae629ffd0c4849530a5b940a42b7f9332e2d7c93d975adc02fc4985e"
},
"downloads": -1,
"filename": "django_webtest-1.7.8-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "15182fc7612c6311e937744c5bece47f",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 16023,
"upload_time": "2015-04-21T08:22:22",
"url": "https://files.pythonhosted.org/packages/5b/40/abc58ea404d3e5cfc221645bf67d1af99e8f8c0786d92b4d211db8d57d80/django_webtest-1.7.8-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "9eeb4896106736ec1b735e7073465a1a",
"sha256": "11c5bb9896502d6b9e2f840abb912efd7bde5084e097ec533af3ea64686ed5c2"
},
"downloads": -1,
"filename": "django-webtest-1.7.8.tar.gz",
"has_sig": false,
"md5_digest": "9eeb4896106736ec1b735e7073465a1a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12663,
"upload_time": "2015-04-21T08:22:09",
"url": "https://files.pythonhosted.org/packages/13/33/007921cb26ebed7fc11f14c620c1e5144f8be28243c655e7873839d28689/django-webtest-1.7.8.tar.gz"
}
],
"1.7.9": [
{
"comment_text": "",
"digests": {
"md5": "a96d579e6fc59b1b6a24072b219e883a",
"sha256": "7f493e32b0971214f915d0f73a8174e942084f35e121edc1c44fab617e0dcfcf"
},
"downloads": -1,
"filename": "django_webtest-1.7.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a96d579e6fc59b1b6a24072b219e883a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 16566,
"upload_time": "2016-04-19T13:10:50",
"url": "https://files.pythonhosted.org/packages/4a/39/dd4218e972e2375d3e3bc4f7e5ef903ba553a7383c49ff8f68e443be85bc/django_webtest-1.7.9-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3b6a441dc900f07e5fd9b12c9d2bdd0a",
"sha256": "e498a257388a75e3456700c4e64d85d8b40be7077878f4f026f429ae0252248e"
},
"downloads": -1,
"filename": "django-webtest-1.7.9.tar.gz",
"has_sig": false,
"md5_digest": "3b6a441dc900f07e5fd9b12c9d2bdd0a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 20213,
"upload_time": "2016-04-19T13:11:23",
"url": "https://files.pythonhosted.org/packages/89/86/cb189f62f0a8b3fc5a7b9fb589715290369c94772a8475fd6bc0fd386a0e/django-webtest-1.7.9.tar.gz"
}
],
"1.8.0": [
{
"comment_text": "",
"digests": {
"md5": "8178330e0ea509ad10e81fdcfd42cb44",
"sha256": "8a1f37919bbcae48b7531627c6cb09f3f397eb6924f12465006c441b2021f987"
},
"downloads": -1,
"filename": "django_webtest-1.8.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8178330e0ea509ad10e81fdcfd42cb44",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 16891,
"upload_time": "2016-09-14T17:57:26",
"url": "https://files.pythonhosted.org/packages/3c/d0/eaf54ee21031a40e8176a7a1dbba9a0f6d002825bf523281d1002748ba71/django_webtest-1.8.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "433357d5e36158e95046771456f28105",
"sha256": "df20c58df56f8975f046b7d64d26644d1bce786fa66a1fa56df61ce329643052"
},
"downloads": -1,
"filename": "django-webtest-1.8.0.tar.gz",
"has_sig": false,
"md5_digest": "433357d5e36158e95046771456f28105",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 20790,
"upload_time": "2016-09-14T17:57:29",
"url": "https://files.pythonhosted.org/packages/57/fc/d5e6f2cd2ba6274190b4861fa00c9a94ed99133beb1810c14408814ca13a/django-webtest-1.8.0.tar.gz"
}
],
"1.9.0": [
{
"comment_text": "",
"digests": {
"md5": "2ac188e6c691f1b0cb40fa802b0690fd",
"sha256": "322f6da367d2ead158f8e056f076c890683b8d4b7acc62a07a562dd2efb78368"
},
"downloads": -1,
"filename": "django_webtest-1.9.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2ac188e6c691f1b0cb40fa802b0690fd",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 18609,
"upload_time": "2017-03-09T18:17:00",
"url": "https://files.pythonhosted.org/packages/80/36/a570a0ee160f78cb12b7b5d42ef699590df762f9b217f67134c105dccf1c/django_webtest-1.9.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "11011f89dc8a08f789bb05b0ff3b3fb5",
"sha256": "fd1c9ece400fd664273d8fe1d5d362e0e32d5846d5664da8467ca47a31522c29"
},
"downloads": -1,
"filename": "django-webtest-1.9.0.tar.gz",
"has_sig": false,
"md5_digest": "11011f89dc8a08f789bb05b0ff3b3fb5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 24730,
"upload_time": "2017-03-09T18:17:02",
"url": "https://files.pythonhosted.org/packages/5d/e9/85d236de190da4da796b3041ad8ed455419c12c728c341b31248644eaa57/django-webtest-1.9.0.tar.gz"
}
],
"1.9.1": [
{
"comment_text": "",
"digests": {
"md5": "48beef3265c0aa55df555c3b6f82adeb",
"sha256": "1069253f59b487f76fe1bee199e9d74293fc393185d87f16c3f561cc269b5489"
},
"downloads": -1,
"filename": "django_webtest-1.9.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "48beef3265c0aa55df555c3b6f82adeb",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 18340,
"upload_time": "2017-03-09T18:41:33",
"url": "https://files.pythonhosted.org/packages/a0/d6/cb0b1aa4a4bebfb2d3cf74ed91101fb30435245d73bca10069a2ed1786d0/django_webtest-1.9.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "f868627a048b3aa5d102f6fd4be541d9",
"sha256": "1fcec7fdaab8c092f4f37eb12fb7122e75da69203d6f714ded651b21347ec194"
},
"downloads": -1,
"filename": "django-webtest-1.9.1.tar.gz",
"has_sig": false,
"md5_digest": "f868627a048b3aa5d102f6fd4be541d9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 24886,
"upload_time": "2017-03-09T18:41:36",
"url": "https://files.pythonhosted.org/packages/28/86/b8b2b936d75b997c9bdbe2c7d361b59af8e6899d23cdb9c2d07c788e3dc6/django-webtest-1.9.1.tar.gz"
}
],
"1.9.2": [
{
"comment_text": "",
"digests": {
"md5": "f7307b08b666f991b1cae6e528f73b9b",
"sha256": "28f41acbd1b9eef4cfc2d312b12f6fe93c3ffce6de925c378abae7778e0b3eff"
},
"downloads": -1,
"filename": "django_webtest-1.9.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f7307b08b666f991b1cae6e528f73b9b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 18632,
"upload_time": "2017-05-17T08:52:12",
"url": "https://files.pythonhosted.org/packages/ec/0a/a995c9a4b90946de27087373f0bcd805fd4920cea176875b5e9281c7c70c/django_webtest-1.9.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "35c870042082c0935fd872aa4289fec6",
"sha256": "11c32547966917281fb487203a85b28c313670c1874a3d4d99a3632a123a33c4"
},
"downloads": -1,
"filename": "django-webtest-1.9.2.tar.gz",
"has_sig": false,
"md5_digest": "35c870042082c0935fd872aa4289fec6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25246,
"upload_time": "2017-05-17T08:52:14",
"url": "https://files.pythonhosted.org/packages/53/cc/8c8bbf273ada1f30f5fb090a98aea6ce5b1fa272c8fd1063aa62470481a9/django-webtest-1.9.2.tar.gz"
}
],
"1.9.3": [
{
"comment_text": "",
"digests": {
"md5": "bff1e8dcd53c826c3cea6e8cf4c76f7e",
"sha256": "f6a3eb8525c0b8de60484f4d41f3d7a704017b9e010639d206f42a7349cb6904"
},
"downloads": -1,
"filename": "django_webtest-1.9.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "bff1e8dcd53c826c3cea6e8cf4c76f7e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 19406,
"upload_time": "2018-05-03T08:00:47",
"url": "https://files.pythonhosted.org/packages/f3/32/1d9183b9b09a3668c67f166dcf26324d188d7b920d158d8356674fd57924/django_webtest-1.9.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "8890959f6934dbe6b50aab69f8a865a6",
"sha256": "63492bbcabb961311876da9a49cfc282e1668d8d1cf63a5700fc65ca2d1f7c8a"
},
"downloads": -1,
"filename": "django-webtest-1.9.3.tar.gz",
"has_sig": false,
"md5_digest": "8890959f6934dbe6b50aab69f8a865a6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25577,
"upload_time": "2018-05-03T08:00:45",
"url": "https://files.pythonhosted.org/packages/ad/af/1c67b2c9c011f126889f1543febf520032433f1e82e1ef958e1e2f5d8085/django-webtest-1.9.3.tar.gz"
}
],
"1.9.4": [
{
"comment_text": "",
"digests": {
"md5": "3bb28f27305e272051fa3f6c7b2d4c40",
"sha256": "7b683d87cd9be13599af44b81bd44f97b49978b4e69cf4b92059c393f64307c1"
},
"downloads": -1,
"filename": "django_webtest-1.9.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3bb28f27305e272051fa3f6c7b2d4c40",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 13537,
"upload_time": "2018-10-27T08:58:14",
"url": "https://files.pythonhosted.org/packages/68/66/4f9663ae4b87c5ec7825e187c7fa64ae6dc9be9e518033b2602861e664b3/django_webtest-1.9.4-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "13131a84051afbeb4c2d9a0673216c01",
"sha256": "f3cd35d06ec01610e1a5ec8917679ad9a53f815d85d1e41e385746f1e823869d"
},
"downloads": -1,
"filename": "django-webtest-1.9.4.tar.gz",
"has_sig": false,
"md5_digest": "13131a84051afbeb4c2d9a0673216c01",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26239,
"upload_time": "2018-10-27T08:58:12",
"url": "https://files.pythonhosted.org/packages/76/08/0b7d5dc786759753f4edcb6ab548458f5e697419ff27b44b71c08cdbbcaa/django-webtest-1.9.4.tar.gz"
}
],
"1.9.5": [
{
"comment_text": "",
"digests": {
"md5": "d6be0492890c67000834300b09de11a2",
"sha256": "30c8ee6236f85e4de013a0dfe1d7dc5e8b687a50809e4fae8b871a5911eb401b"
},
"downloads": -1,
"filename": "django_webtest-1.9.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "d6be0492890c67000834300b09de11a2",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 15628,
"upload_time": "2019-05-31T11:38:00",
"url": "https://files.pythonhosted.org/packages/db/18/f68885230dd508eb990f887de182e995e29ff9e0540e0e5df5ddb9693acc/django_webtest-1.9.5-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "bc14ba9ed14367d5b6e9620ba3ebaf4e",
"sha256": "080940bde9d17fc426279136baa2f0d7086b99685ee81cdf9a0906bc3226b0a5"
},
"downloads": -1,
"filename": "django-webtest-1.9.5.tar.gz",
"has_sig": false,
"md5_digest": "bc14ba9ed14367d5b6e9620ba3ebaf4e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26887,
"upload_time": "2019-05-31T11:37:58",
"url": "https://files.pythonhosted.org/packages/5b/57/886ff417fc00bd4ddd694cd9bd9487edea6b4e2f8574f912551dffa504cd/django-webtest-1.9.5.tar.gz"
}
],
"1.9.6": [
{
"comment_text": "",
"digests": {
"md5": "0f5e5b3589399f67275b7f4492e03d0c",
"sha256": "2be7b7cb1bc3e99a573283385e91a685831a3e4c637f89580a8c669989b5e755"
},
"downloads": -1,
"filename": "django_webtest-1.9.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0f5e5b3589399f67275b7f4492e03d0c",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 15732,
"upload_time": "2019-06-07T09:29:33",
"url": "https://files.pythonhosted.org/packages/6c/a6/ff79e0443ce372e09364affda794cca94f47d4523cbef00688763f5a2c3d/django_webtest-1.9.6-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "b1c90b43da1d8b48a797430e1112650e",
"sha256": "afa0d0af2d010d8d28cd9e95c8882dbb360ae6a112b31942845900b67de0d2a4"
},
"downloads": -1,
"filename": "django-webtest-1.9.6.tar.gz",
"has_sig": false,
"md5_digest": "b1c90b43da1d8b48a797430e1112650e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26999,
"upload_time": "2019-06-07T09:29:31",
"url": "https://files.pythonhosted.org/packages/7f/6a/b7232b5b291cb1889ad0369027be58a0d1a56cd2cb5a8181b81c6ed289c9/django-webtest-1.9.6.tar.gz"
}
],
"1.9.7": [
{
"comment_text": "",
"digests": {
"md5": "c2e55cfc2b83072072312cd39153fbfd",
"sha256": "b9b4b94670c0ce533efc456d02dd55a0d0a7a8f7912eb30728dca2d59d7948b4"
},
"downloads": -1,
"filename": "django_webtest-1.9.7-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c2e55cfc2b83072072312cd39153fbfd",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 15786,
"upload_time": "2019-07-05T15:51:45",
"url": "https://files.pythonhosted.org/packages/6a/20/dd54b2446cadcfce65b4ccfa4d4179cdd7bf074140465462491ca8076e80/django_webtest-1.9.7-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "5e44e52ebb3b976ff80a0c63de85a127",
"sha256": "c5a1e486a3d8d3623aa615b6db2f27de848aa7079303a84721e9a685f839796c"
},
"downloads": -1,
"filename": "django-webtest-1.9.7.tar.gz",
"has_sig": false,
"md5_digest": "5e44e52ebb3b976ff80a0c63de85a127",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27079,
"upload_time": "2019-07-05T15:51:42",
"url": "https://files.pythonhosted.org/packages/22/60/9e4c636fd32cdf17f9ca982f85bbdd2443f45216db19a0e88739f1a9394f/django-webtest-1.9.7.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "c2e55cfc2b83072072312cd39153fbfd",
"sha256": "b9b4b94670c0ce533efc456d02dd55a0d0a7a8f7912eb30728dca2d59d7948b4"
},
"downloads": -1,
"filename": "django_webtest-1.9.7-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c2e55cfc2b83072072312cd39153fbfd",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 15786,
"upload_time": "2019-07-05T15:51:45",
"url": "https://files.pythonhosted.org/packages/6a/20/dd54b2446cadcfce65b4ccfa4d4179cdd7bf074140465462491ca8076e80/django_webtest-1.9.7-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "5e44e52ebb3b976ff80a0c63de85a127",
"sha256": "c5a1e486a3d8d3623aa615b6db2f27de848aa7079303a84721e9a685f839796c"
},
"downloads": -1,
"filename": "django-webtest-1.9.7.tar.gz",
"has_sig": false,
"md5_digest": "5e44e52ebb3b976ff80a0c63de85a127",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27079,
"upload_time": "2019-07-05T15:51:42",
"url": "https://files.pythonhosted.org/packages/22/60/9e4c636fd32cdf17f9ca982f85bbdd2443f45216db19a0e88739f1a9394f/django-webtest-1.9.7.tar.gz"
}
]
}