{ "info": { "author": "YunoJuno", "author_email": "code@yunojuno.com", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 1.11", "Framework :: Django :: 2.0", "Framework :: Django :: 2.1", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.6", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content" ], "description": ".. image:: https://badge.fury.io/py/django-request-token.svg\n :target: https://badge.fury.io/py/django-request-token\n\n.. image:: https://travis-ci.org/yunojuno/django-request-token.svg\n :target: https://travis-ci.org/yunojuno/django-request-token\n\nDjango Request Token\n--------------------\n\nDjango app that uses JWT to manage one-time and expiring tokens to protect URLs.\n\nThis app currently requires the use of PostgreSQL.\n\nCompatibility\n=============\n\nThis library is now Python3 and Django1.11 and above only.\n\nBackground\n==========\n\nThis project was borne out of our experiences at YunoJuno with 'expiring links' -\nwhich is a common use case of providing users with a URL that performs a single\naction, and may bypass standard authentication. A well-known use of of this is\nthe ubiquitous 'unsubscribe' link you find at the bottom of newsletters. You click\non the link and it immediately unsubscribes you, irrespective of whether you are\nalready authenticated or not.\n\nIf you google \"temporary url\", \"one-time link\" or something similar you will find\nlots of StackOverflow articles on supporting this in Django - it's pretty obvious,\nyou have a dedicated token url, and you store the tokens in a model - when they\nare used you expire the token, and it can't be used again. This works well, but\nit falls down in a number of areas:\n\n* Hard to support multiple endpoints (views)\n\nIf you want to support the same functionality (expiring links) for more than\none view in your project, you either need to have multiple models and token\nhandlers, or you need to store the specific view function and args\nin the model; neither of these is ideal.\n\n* Hard to debug\n\nIf you use have a single token url view that proxies view functions, you need\nto store the function name, args and it then becomes hard to support - when\nsomeone claims that they clicked on example.com/t/, you can't tell what\nthat would resolve to without looking it up in the database - which doesn't\nwork for customer support.\n\n* Hard to support multiple scenarios\n\nSome links expire, others have usage quotas - some have both. Links may be\nfor use by a single user, or multiple users.\n\nThis project is intended to provide an easy-to-support mechanism for 'tokenising'\nURLs without having to proxy view functions - you can build well-formed Django\nURLs and views, and then add request token support afterwards.\n\nUse Cases\n=========\n\nThis project supports three core use cases, each of which is modelled using\nthe ``login_mode`` attribute of a request token:\n\n1. Public link with payload\n2. Single authenticated request\n3. Auto-login\n\n**Public Link** (``RequestToken.LOGIN_MODE_NONE``)\n\nIn this mode (the default for a new token), there is no authentication, and no\nassigned user. The token is used as a mechanism for attaching a payload\nto the link. An example of this might be a custom registration or affiliate link,\nthat renders the standard template with additional information extracted from\nthe token - e.g. the name of the affiliate, or the person who invited you to\nregister.\n\n.. code:: python\n\n # a token that can be used to access a public url, without authenticating\n # as a user, but carrying a payload (affiliate_id).\n token = RequestToken.objects.create_token(\n scope=\"foo\",\n login_mode=RequestToken.LOGIN_MODE_NONE,\n data={\n 'affiliate_id': 1\n }\n )\n\n ...\n\n @use_request_token(scope=\"foo\")\n function view_func(request):\n # extract the affiliate id from an token _if_ one is supplied\n affiliate_id = (\n request.token.data['affiliate_id']\n if hasattr(request, 'token')\n else None\n )\n\n\n**Single Request** (``RequestToken.LOGIN_MODE_REQUEST``)\n\nIn Request mode, the request.user property is overridden by the user specified\nin the token, but only for a single request. This is useful for responding to\na single action (e.g. RSVP, unsubscribe). If the user then navigates onto another\npage on the site, they will not be authenticated. If the user is already\nauthenticated, but as a different user to the one in the token, then they will\nreceive a 403 response.\n\n.. code:: python\n\n # this token will identify the request.user as a given user, but only for\n # a single request - not the entire session.\n token = RequestToken.objects.create_token(\n scope=\"foo\",\n login_mode=RequestToken.LOGIN_MODE_REQUEST,\n user=User.objects.get(username=\"hugo\")\n )\n\n ...\n\n @use_request_token(scope=\"foo\")\n function view_func(request):\n assert request.user == User.objects.get(username=\"hugo\")\n\n**Auto-login** (``RequestToken.LOGIN_MODE_SESSION``)\n\nThis is the nuclear option, and must be treated with extreme care. Using a\nSession token will automatically log the user in for an entire session, giving\nthe user who clicks on the link full access the token user's account. This is\nuseful for automatic logins. A good example of this is the email login process\non medium.com, which takes an email address (no password) and sends out a login\nlink.\n\nSession tokens must be single-use, and have a fixed expiry of one minute.\n\n.. code:: python\n\n # this token will log in as the given user for the entire session -\n # NB use with caution.\n token = RequestToken.objects.create_token(\n scope=\"foo\",\n login_mode=RequestToken.LOGIN_MODE_SESSION,\n user=User.objects.get(username=\"hugo\")\n )\n\nImplementation\n==============\n\nThe project contains middleware and a view function decorator that together\nvalidate request tokens added to site URLs.\n\n**request_token.models.RequestToken** - stores the token details\n\nStep 1 is to create a ``RequestToken`` - this has various attributes that can\nbe used to modify its behaviour, and mandatory property - ``scope``. This is a\ntext value - it can be anything you like - it is used by the function decorator\n(described below) to confirm that the token given matches the function being\ncalled - i.e. the ``token.scope`` must match the function decorator scope kwarg:\n\n.. code:: python\n\n token = RequestToken(scope=\"foo\")\n\n # this will raise a 403 without even calling the function\n @use_request_token(scope=\"bar\")\n def incorrect_scope(request):\n pass\n\n # this will call the function as expected\n @use_request_token(scope=\"foo\")\n def correct_scope(request):\n pass\n\nThe token itself - the value that must be appended to links as a querystring\nargument - is a JWT - and comes from the ``RequestToken.jwt()`` method. For example,\nif you were sending out an email, you might render the email as an HTML template\nlike this:\n\n.. code:: html\n\n {% if token %}\n click here\n {% else %}\n click here\n {% endif %}\n\nIf you haven't come across JWT before you can find out more on the `jwt.io `_ website. The token produced will include the following JWT claims (available as the property ``RequestToken.claims``:\n\n* ``max``: maximum times the token can be used\n* ``sub``: the scope\n* ``mod``: the login mode\n* ``jti``: the token id\n* ``aud``: (optional) the user the token represents\n* ``exp``: (optional) the expiration time of the token\n* ``iat``: (optional) the time the token was issued\n* ``ndf``: (optional) the not-before-time of the token\n\n**request_token.middleware.RequestTokenMiddleware** - decodes and verifies tokens\n\nThe ``RequestTokenMiddleware`` will look for a querystring token value (the argument name defaults to 'rt' and can overridden using the ``JWT_QUERYSTRING_ARG`` setting), and if it finds one it will verify the token (using the JWT decode verification). If the token is verified, it will fetch the token object from the database and perform additional validation against the token attributes. If the token checks out it is added to the incoming request as a ``token`` attribute. This way you can add arbitrary data (stored on the token) to incoming requests.\n\nIf the token has a user specified, then the ``request.user`` is updated to\nreflect this. The middleware must run after the Django auth middleware, and\nbefore any custom middleware that inspects / monkey-patches the ``request.user``.\n\nIf the token cannot be verified it returns a 403.\n\n**request_token.decorators.use_request_token** - applies token permissions to views\n\nA function decorator that takes one mandatory kwargs (``scope``) and one optional\nkwargs (``required``). The ``scope`` is used to match tokens to view functions -\nit's just a straight text match - the value can be anything you like, but if the\ntoken scope is 'foo', then the corresponding view function decorator scope must\nmatch. The ``required`` kwarg is used to indicate whether the view **must** have\na token in order to be used, or not. This defaults to False - if a token **is**\nprovided, then it will be validated, if not, the view function is called as is.\n\nIf the scopes do not match then a 403 is returned.\n\nIf required is True and no token is provided the a 403 is returned.\n\nInstallation\n============\n\nDownload / install the app using pip:\n\n.. code:: shell\n\n pip install django-request-token\n\nAdd the app ``request_token`` to your ``INSTALLED_APPS`` Django setting:\n\n.. code:: python\n\n # settings.py\n INSTALLED_APPS = (\n 'django.contrib.admin',\n 'django.contrib.auth',\n 'django.contrib.contenttypes',\n 'django.contrib.sessions',\n 'django.contrib.messages',\n 'django.contrib.staticfiles',\n 'request_token',\n ...\n )\n\nAdd the middleware to your settings, **after** the standard authentication middleware,\nand before any custom middleware that uses the ``request.user``.\n\n.. code:: python\n\n MIDDLEWARE_CLASSES = [\n # default django middleware\n 'django.contrib.sessions.middleware.SessionMiddleware',\n 'django.middleware.common.CommonMiddleware',\n 'django.middleware.csrf.CsrfViewMiddleware',\n 'django.contrib.auth.middleware.AuthenticationMiddleware',\n 'django.contrib.messages.middleware.MessageMiddleware',\n 'request_token.middleware.RequestTokenMiddleware',\n ]\n\nYou can now add ``RequestToken`` objects, either via the shell (or within your\napp) or through the admin interface. Once you have added a ``RequestToken`` you\ncan add the token JWT to your URLs (using the ``jwt()`` method):\n\n.. code:: python\n\n >>> token = RequestToken.objects.create_token(scope=\"foo\")\n >>> url = \"https://example.com/foo?rt=\" + token.jwt()\n\nYou now have a request token enabled URL. You can use this token to protect a\nview function using the view decorator:\n\n.. code:: python\n\n @use_request_token(scope=\"foo\")\n function foo(request):\n pass\n\nNB The 'scope' argument to the decorator is used to bind the function to the\nincoming token - if someone tries to use a valid token on another URL, this\nwill return a 403.\n\n**NB this currently supports only view functions - not class-based views.**\n\nSettings\n========\n\nSettings are read in from the environment or Django settings:\n\n.. code:: python\n\n os.getenv('SETTING_NAME') or django.conf.settings.get('SETTING_NAME', default)\n\n* ``REQUEST_TOKEN_QUERYSTRING``\n\nThe querystring argument name used to extract the token from incoming\nrequests, defaults to **rt**.\n\n* ``REQUEST_TOKEN_EXPIRY``\n\nSession tokens have a default expiry interval, specified in minutes.\nThe primary use case (above) dictates that the expiry should be no longer\nthan it takes to receive and open an email, defaults to **10** (minutes).\n\n* ``REQUEST_TOKEN_403_TEMPLATE``\n\nSpecifying the 403-template so that for prettyfying the 403-response,\nin production with a setting like:\n\n.. code:: python\n\n FOUR03_TEMPLATE = os.path.join(BASE_DIR,'...','403.html')\n\n* ``REQUEST_TOKEN_LOG_TOKEN_ERRORS``\n\nIf an ``InvalidTokenError`` is raised by the decorator or middleware, the error\nwill be logged as a ``RequestTokenErrorLog`` object. This makes debugging\neasier, which is important in production as often the first you will know about\na token problem is an angry customer who says \"my link doesn't work\". Being\nable to diagnose issues from the admin site is useful, however if the volume\nor errors is a problem this can be disabled by setting this value to anything\nother than 'True' or '1'.\n\n\nLogging\n=======\n\nDebugging middleware and decorators can be complex, so the project is verbose\nin its logging (by design). If you feel it's providing too much logging, you\ncan adjust it by setting the standard Django logging for ``request_token``.\n\nYou can turn off formal logging in the database of token errors by using the\nsetting ``REQUEST_TOKEN_LOG_TOKEN_ERRORS``.\n\nTests\n=====\n\nThere is a set of ``tox`` tests.\n\nLicense\n=======\n\nMIT\n\nContributing\n============\n\nThis is by no means complete, however, it's good enough to be of value, hence releasing it.\nIf you would like to contribute to the project, usual Github rules apply:\n\n1. Fork the repo to your own account\n2. Submit a pull request\n3. Add tests for any new code\n4. Follow coding style of existing project\n\nAcknowledgements\n================\n\n@jpadilla for `PyJWT `_\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/yunojuno/django-request-token", "keywords": "", "license": "MIT", "maintainer": "YunoJuno", "maintainer_email": "code@yunojuno.com", "name": "django-request-token", "package_url": "https://pypi.org/project/django-request-token/", "platform": "", "project_url": "https://pypi.org/project/django-request-token/", "project_urls": { "Homepage": "https://github.com/yunojuno/django-request-token" }, "release_url": "https://pypi.org/project/django-request-token/0.9.2/", "requires_dist": [ "Django (>=1.11)", "PyJWT (>=1.4)", "sqlparse (>=0.2)", "psycopg2-binary (>=2.7)" ], "requires_python": "", "summary": "JWT-backed Django app for managing querystring tokens.", "version": "0.9.2" }, "last_serial": 4754310, "releases": { "0.1.0": [ { "comment_text": "built for Darwin-15.2.0", "digests": { "md5": "808c80ee52a14f5aaab770fc983fcda9", "sha256": "73126521aa1795bdc5e4d1e2f3e34cc4983fe4658b8eb5456fbba1fad1218af7" }, "downloads": -1, "filename": "django-request-token-0.1.0.macosx-10.10-x86_64.tar.gz", "has_sig": false, "md5_digest": "808c80ee52a14f5aaab770fc983fcda9", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 60708, "upload_time": "2016-01-09T23:52:58", "url": "https://files.pythonhosted.org/packages/04/4e/6f8cfa7fc004e0a4320a2deb9eb3fb656c0c476e3e19690b06205997f48d/django-request-token-0.1.0.macosx-10.10-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "a796165db5312957e677b168cabe0fb1", "sha256": "58bafd0118b55eb65971695f81d4241985ee05b02f6ccc63b1ad88ec6cd9c91d" }, "downloads": -1, "filename": "django_request_token-0.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "a796165db5312957e677b168cabe0fb1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 47635, "upload_time": "2016-01-09T23:53:07", "url": "https://files.pythonhosted.org/packages/0c/f0/123bf44a8fd06b06cb1b75b1da339e7a74783bde5eaa8dea0637aba6a89a/django_request_token-0.1.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "043c21c713202383a4b00da1f4c3cb99", "sha256": "c2e5e6398e537b782853a1463428ce88ffae2dc8b7764ab7d4f7a08b1e8f643f" }, "downloads": -1, "filename": "django-request-token-0.1.0.tar.gz", "has_sig": false, "md5_digest": "043c21c713202383a4b00da1f4c3cb99", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17479, "upload_time": "2016-01-09T23:52:52", "url": "https://files.pythonhosted.org/packages/fa/79/5f34c9a291b2cd12a02d130e2527133c4defbedc3b15db52ae800b4e65d1/django-request-token-0.1.0.tar.gz" } ], "0.1.0-dev": [], "0.2.0": [ { "comment_text": "built for Darwin-16.0.0", "digests": { "md5": "326e8315104848d75a2a0282e70f12e7", "sha256": "1ca0a55ba5a42f0768c6cad695d11289497756f95a5057e0d967551cc8cbc7dc" }, "downloads": -1, "filename": "django-request-token-0.2.0.macosx-10.12-intel.tar.gz", "has_sig": false, "md5_digest": "326e8315104848d75a2a0282e70f12e7", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 35054, "upload_time": "2016-10-21T07:45:44", "url": "https://files.pythonhosted.org/packages/17/ef/e57e75dbb3fe206ab5772c381f8faa8ba3ecf08c28cfc3a84d080af013c6/django-request-token-0.2.0.macosx-10.12-intel.tar.gz" }, { "comment_text": "", "digests": { "md5": "a182e6f623bfd87c83a0c53c1a6fb3ac", "sha256": "b249768c16e16376b1d55c28bbfe233b2c97eacc5f1c6ae09c4482675e5d3360" }, "downloads": -1, "filename": "django_request_token-0.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "a182e6f623bfd87c83a0c53c1a6fb3ac", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 31478, "upload_time": "2016-10-21T07:45:47", "url": "https://files.pythonhosted.org/packages/80/4a/d6999f99d10c77dcc295e8d773cfd31a4a767ef4aefd5ec20e0a073ae508/django_request_token-0.2.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "29f89e39ec7512184d305ab7437d27d8", "sha256": "eea287c2646790c94ed46e205ab5a8f0d664854b2082ae937d8b58d5955b0494" }, "downloads": -1, "filename": "django-request-token-0.2.0.tar.gz", "has_sig": false, "md5_digest": "29f89e39ec7512184d305ab7437d27d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18220, "upload_time": "2016-10-21T07:45:42", "url": "https://files.pythonhosted.org/packages/29/08/48b0e886fe75629052a2bc6f1227a1592a93a9ea03e22b1ecbc906dc3538/django-request-token-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "built for Darwin-16.0.0", "digests": { "md5": "64927bcebd892ba20feffa008a2c8033", "sha256": "bd7e5d3da461fdd548535677518f31858f73dbe0a2cdbfb4a7dfbfdfe9be58ab" }, "downloads": -1, "filename": "django-request-token-0.2.1.macosx-10.12-intel.tar.gz", "has_sig": false, "md5_digest": "64927bcebd892ba20feffa008a2c8033", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 35305, "upload_time": "2016-10-21T11:14:52", "url": "https://files.pythonhosted.org/packages/ce/7c/188613112c6fd7a3b5c1201ef0cc9c4893cd5aa3d7d9a3b065576a9dda34/django-request-token-0.2.1.macosx-10.12-intel.tar.gz" }, { "comment_text": "", "digests": { "md5": "65ec62e91692150f31039c78007d6785", "sha256": "5fbabc5f35f7e520cd55c7585025d5c33e528e9307bc5f17fae1255b6ab6c744" }, "downloads": -1, "filename": "django_request_token-0.2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "65ec62e91692150f31039c78007d6785", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 31821, "upload_time": "2016-10-21T11:14:55", "url": "https://files.pythonhosted.org/packages/c9/d9/5e33fd0e9be8d5ed18ffd60f9778d08640092dfce0a5feda622154ae8e6e/django_request_token-0.2.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4e0f8b3e602645839ae3fe04f556d543", "sha256": "3929427b77bd2b9a7bb5eb354d2633195b65e72e69b9fec89ba384ed6045f453" }, "downloads": -1, "filename": "django-request-token-0.2.1.tar.gz", "has_sig": false, "md5_digest": "4e0f8b3e602645839ae3fe04f556d543", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18368, "upload_time": "2016-10-21T11:14:49", "url": "https://files.pythonhosted.org/packages/cc/ef/98d48e2dd597cf056e028092dbe8d8436b41b8e224200540175c80592465/django-request-token-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "e6fa0d5e961491155be475d53882b453", "sha256": "cbef84ef6db314fe19543752802ec549dc311d5dd74a534bc4bf886a25df9672" }, "downloads": -1, "filename": "django-request-token-0.2.2.macosx-10.12-intel.tar.gz", "has_sig": false, "md5_digest": "e6fa0d5e961491155be475d53882b453", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40301, "upload_time": "2016-11-04T15:01:44", "url": "https://files.pythonhosted.org/packages/dc/5e/159f677f735536871e572190886c0bfd14f69cf45985308e4c0b014a72d6/django-request-token-0.2.2.macosx-10.12-intel.tar.gz" }, { "comment_text": "", "digests": { "md5": "2dbf7986ae9056995e86a34f8594aaaf", "sha256": "14b729a7615658756d9249377b2616b60fef0c6f2ba04eb374f1fd559bb7d1f6" }, "downloads": -1, "filename": "django_request_token-0.2.2-py2-none-any.whl", "has_sig": false, "md5_digest": "2dbf7986ae9056995e86a34f8594aaaf", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 35289, "upload_time": "2017-03-06T12:38:15", "url": "https://files.pythonhosted.org/packages/f5/2a/4e2a807e9231571d2d5b7e91add54b03e3f90c993acdff583efa5e3fafb4/django_request_token-0.2.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3b7279fcfebe7eec3115c3c816ee149d", "sha256": "42ff891041d025177a807d97e488c1a64fe05dd5cc861ecb8e0a08465b7d4974" }, "downloads": -1, "filename": "django-request-token-0.2.2.tar.gz", "has_sig": false, "md5_digest": "3b7279fcfebe7eec3115c3c816ee149d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20412, "upload_time": "2016-11-04T15:01:51", "url": "https://files.pythonhosted.org/packages/7e/79/78d9546397316e4d7047232d66273f7ae57581139b154c8ddf47c1452ad6/django-request-token-0.2.2.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "c526b0b99d39667a2f176dd8084834fc", "sha256": "55ce7def191b68a02e4445fa7bf12691e1f8b204d715b29d94b3b20005b985e4" }, "downloads": -1, "filename": "django-request-token-0.3.0.macosx-10.12-intel.tar.gz", "has_sig": false, "md5_digest": "c526b0b99d39667a2f176dd8084834fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41692, "upload_time": "2016-12-21T16:11:33", "url": "https://files.pythonhosted.org/packages/fb/ca/3ea291804dd2633d9b9acf1b1d626979ee8f64bee1a27f75d5c6271c8d15/django-request-token-0.3.0.macosx-10.12-intel.tar.gz" }, { "comment_text": "", "digests": { "md5": "930612cca802d9b54eee00e4e22b0907", "sha256": "82954254c1f2a46172070013f45f107a47c5de112cb31c09be0f4f056ad02847" }, "downloads": -1, "filename": "django_request_token-0.3.0-py2-none-any.whl", "has_sig": false, "md5_digest": "930612cca802d9b54eee00e4e22b0907", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 53885, "upload_time": "2016-12-22T13:16:26", "url": "https://files.pythonhosted.org/packages/f9/2e/9f0071922d9d5ac567be3891bd493eee0ab78c0a51e1b9dd7b81f41b2670/django_request_token-0.3.0-py2-none-any.whl" } ], "0.3.1": [ { "comment_text": "built for Darwin-16.3.0", "digests": { "md5": "0c8f501b9db3103c27e1e25d33d1eafa", "sha256": "73c8bad8961cdc2ee15e89769df963705e471c4a232c287a24f8241e438f7c31" }, "downloads": -1, "filename": "django-request-token-0.3.1.macosx-10.12-x86_64.tar.gz", "has_sig": false, "md5_digest": "0c8f501b9db3103c27e1e25d33d1eafa", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 69315, "upload_time": "2016-12-22T17:48:22", "url": "https://files.pythonhosted.org/packages/b1/53/31af8c8a1ab6a3e8fefe228c911d7bb6e744cce0e6819e712ca1eb4d5a94/django-request-token-0.3.1.macosx-10.12-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "872a18fef3e50e755947715dcbf2294f", "sha256": "0ed2f533278eb6f70e14ca2f8d232d9602baca7082042eb1842add15346d1e67" }, "downloads": -1, "filename": "django_request_token-0.3.1-py2-none-any.whl", "has_sig": false, "md5_digest": "872a18fef3e50e755947715dcbf2294f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 54251, "upload_time": "2016-12-22T17:48:25", "url": "https://files.pythonhosted.org/packages/f1/1c/3dcc4607be43fb953c4eeb34abdd75df7c8c1ddab661c77304df0a818e0d/django_request_token-0.3.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8ca76e230879781ff32f2f344c99bcec", "sha256": "8cf49b8c94132cffbf190467aa052e0caee65a2daddc3e8f73a7ee6fd56abf6e" }, "downloads": -1, "filename": "django-request-token-0.3.1.tar.gz", "has_sig": false, "md5_digest": "8ca76e230879781ff32f2f344c99bcec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21518, "upload_time": "2016-12-22T17:48:20", "url": "https://files.pythonhosted.org/packages/ed/f9/15374d9132e48e6257d334cc6128536a7637c98918c6b9b6590ef33d2fb7/django-request-token-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "built for Darwin-16.3.0", "digests": { "md5": "7b9d0d501ccc67c12927c0e3fba37735", "sha256": "3e75665c853b134a030343cabd6b642e528d5deee80f3ae67d6abe1e121c002c" }, "downloads": -1, "filename": "django-request-token-0.3.2.macosx-10.12-x86_64.tar.gz", "has_sig": false, "md5_digest": "7b9d0d501ccc67c12927c0e3fba37735", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 70064, "upload_time": "2016-12-23T12:05:05", "url": "https://files.pythonhosted.org/packages/4e/56/9f5efdfc9e705449431ba746c3be4859cd39a0a86945cc6f98a0cb7d37f0/django-request-token-0.3.2.macosx-10.12-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "ba72441bc6c7504ff5c662131c422322", "sha256": "293a0afb20d8e19fc8ad4553ce2a750b9fe010c0599c8cbe5553d75a435fbf83" }, "downloads": -1, "filename": "django_request_token-0.3.2-py2-none-any.whl", "has_sig": false, "md5_digest": "ba72441bc6c7504ff5c662131c422322", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 54611, "upload_time": "2016-12-23T12:05:08", "url": "https://files.pythonhosted.org/packages/5d/5b/e7e5643170720fbf66a11bdbb96b230fa4406d019dcbdf966ce8357088c4/django_request_token-0.3.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ac38db82c475cb959a8370c43ff43a1c", "sha256": "f73c789a7d46300ed7c016059b7bc945c5d5d31366dff3607392d281062fe80b" }, "downloads": -1, "filename": "django-request-token-0.3.2.tar.gz", "has_sig": false, "md5_digest": "ac38db82c475cb959a8370c43ff43a1c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21910, "upload_time": "2016-12-23T12:05:03", "url": "https://files.pythonhosted.org/packages/e2/19/935164f0adf5e9559c8e21904d94c5770fb0a8d49c34d113444dad0de239/django-request-token-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "893507c05a76e79487df5552a4fe1dca", "sha256": "5f296b68c27d77d3f3ae50490135eedf1ed8984715754c8baf36da0561c3c093" }, "downloads": -1, "filename": "django-request-token-0.3.3.tar.gz", "has_sig": false, "md5_digest": "893507c05a76e79487df5552a4fe1dca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21830, "upload_time": "2017-01-16T17:34:46", "url": "https://files.pythonhosted.org/packages/dd/dc/592485db06ba76647321462c4489863570da8e524209cd565d3291070218/django-request-token-0.3.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "77c1f0d25fddb60e662291165ae7a459", "sha256": "68d1c6a0dd7a75b48c5a1d3f09ea8e49660af844fda4351dc3aa15467b653f3f" }, "downloads": -1, "filename": "django_request_token-0.4-py2-none-any.whl", "has_sig": false, "md5_digest": "77c1f0d25fddb60e662291165ae7a459", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 37088, "upload_time": "2017-03-06T12:38:16", "url": "https://files.pythonhosted.org/packages/03/20/aefce01c900784ac3c189f0371727237b4fb9cac6dd3c07c481e82b4091f/django_request_token-0.4-py2-none-any.whl" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "a9770a820bb07afb9820a7ed22c870bc", "sha256": "5daf4706038039fd0cdf57938c809a56c08ef58e1ef059371e43331c6e6f3d7d" }, "downloads": -1, "filename": "django_request_token-0.5-py2-none-any.whl", "has_sig": false, "md5_digest": "a9770a820bb07afb9820a7ed22c870bc", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 37718, "upload_time": "2017-03-27T14:59:22", "url": "https://files.pythonhosted.org/packages/1b/e9/0614d99ba884ced065c60500e9de6b540bb78d679156c902e2f45ec7e550/django_request_token-0.5-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a9a2fbb00a9203332aa9181baf2988f9", "sha256": "bd94eadc03b4aad4b3a5fbecef32f51a37c5a63a6330bb70380f159741a8b1bd" }, "downloads": -1, "filename": "django-request-token-0.5.tar.gz", "has_sig": false, "md5_digest": "a9a2fbb00a9203332aa9181baf2988f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22065, "upload_time": "2017-03-27T14:59:19", "url": "https://files.pythonhosted.org/packages/c9/9f/ffcfe833dd221dd238e96354e01200c1730dadd6ba86f8b817b512741aed/django-request-token-0.5.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "52411c3677a0a99d3aa72f6d112de1a3", "sha256": "b6b923c61ecc1af029395798e46f6d794d162ec1d3f42d3e8490e2f169fe89ec" }, "downloads": -1, "filename": "django_request_token-0.5.1-py2-none-any.whl", "has_sig": false, "md5_digest": "52411c3677a0a99d3aa72f6d112de1a3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 37762, "upload_time": "2017-03-27T16:51:47", "url": "https://files.pythonhosted.org/packages/9f/9c/af1acd355dba15bae8f019bc2a2e3246ffda5f662430ac3b257f8ca34ddf/django_request_token-0.5.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "26fc1cadead2f38f2a2e67ef786f691c", "sha256": "648a3a63014ad42e2fadf2d4b21c3da81b5f649bc1456f0ac10457006874d386" }, "downloads": -1, "filename": "django-request-token-0.5.1.tar.gz", "has_sig": false, "md5_digest": "26fc1cadead2f38f2a2e67ef786f691c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22127, "upload_time": "2017-03-27T16:51:45", "url": "https://files.pythonhosted.org/packages/13/d4/a3c2c57bc873d6c3e6dd07ddbfc49c69c29058d43ef900ad649672ed2586/django-request-token-0.5.1.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "e8243c25e1b59badb5064479223f01fc", "sha256": "ff40d30fe847b6fe6b2190826aea7c8db2857acf3a2d8a28e7ea716e1ca4f309" }, "downloads": -1, "filename": "django_request_token-0.6-py2-none-any.whl", "has_sig": false, "md5_digest": "e8243c25e1b59badb5064479223f01fc", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 37868, "upload_time": "2017-05-02T17:05:43", "url": "https://files.pythonhosted.org/packages/93/bf/fb416fba327a3ac7c7ce74121cbcb40726a801c8b7c129010d2e7278184c/django_request_token-0.6-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c76f24dc8250e37f5b77ba94b6ec9594", "sha256": "f46dac5538f67b3c0ea610860df3b016dbafdf0db774ac32d93dcebb672076db" }, "downloads": -1, "filename": "django-request-token-0.6.tar.gz", "has_sig": false, "md5_digest": "c76f24dc8250e37f5b77ba94b6ec9594", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21985, "upload_time": "2017-05-02T17:05:41", "url": "https://files.pythonhosted.org/packages/b7/c3/91b37da0ae857bd7d250bdfd12d672db6c2d19683b613fca924f19f4e176/django-request-token-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "614772afdc60a2180b341838691ee837", "sha256": "dabd5b6af7a406d18595e2cdc45d21d94af0bec78d70ff60b89123367b12eb33" }, "downloads": -1, "filename": "django_request_token-0.7-py2-none-any.whl", "has_sig": false, "md5_digest": "614772afdc60a2180b341838691ee837", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 40571, "upload_time": "2017-05-30T11:43:18", "url": "https://files.pythonhosted.org/packages/48/49/c0874fcd0233c915b297a02e6e84c4cd3e469b460558a61bda4a9a1b7b47/django_request_token-0.7-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e68c5486871d0f87d9758bec482aa1c6", "sha256": "0346a5f366a1cd0da36bce92a62105b96259f5d4eb7ca1aa31069252c7b55475" }, "downloads": -1, "filename": "django-request-token-0.7.tar.gz", "has_sig": false, "md5_digest": "e68c5486871d0f87d9758bec482aa1c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23282, "upload_time": "2017-05-30T11:43:16", "url": "https://files.pythonhosted.org/packages/cb/7c/8facc52616d4de407c52d50d9a88356514dba112d5f03ca0f73c37e47b49/django-request-token-0.7.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "f08ff1db90d535f84bb1f44aa77d9e51", "sha256": "081915b51386ae4e1b2ea9731035ac5922cfd37ce3289dfa071ca3b9ea07b574" }, "downloads": -1, "filename": "django_request_token-0.7.1-py2-none-any.whl", "has_sig": false, "md5_digest": "f08ff1db90d535f84bb1f44aa77d9e51", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 40672, "upload_time": "2017-05-30T15:35:24", "url": "https://files.pythonhosted.org/packages/c0/e1/05cbafae00f3aa607727976c3b39398dfbf273fc96b3250c53563100ffe5/django_request_token-0.7.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2b66f42ed2cdcec986899f02df1cc663", "sha256": "3d75a81654027344700c1ddf65c252c4a70192a64373f1cc58e96b7ced84d4e7" }, "downloads": -1, "filename": "django-request-token-0.7.1.tar.gz", "has_sig": false, "md5_digest": "2b66f42ed2cdcec986899f02df1cc663", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23311, "upload_time": "2017-05-30T15:35:22", "url": "https://files.pythonhosted.org/packages/75/ad/1caf55e5643c151eec782848944ee1f2c57da37f095f5d4e8e6a9dbb5ec5/django-request-token-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "0000e4d3d1dae05c7a5b4a828bef7b93", "sha256": "c90aea77cc74aae55f1684325cd958e82ae1eb3add84b09aef636005fba137de" }, "downloads": -1, "filename": "django_request_token-0.7.2-py2-none-any.whl", "has_sig": false, "md5_digest": "0000e4d3d1dae05c7a5b4a828bef7b93", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 40640, "upload_time": "2017-05-30T15:56:53", "url": "https://files.pythonhosted.org/packages/85/df/f4052cc79e1a77c7cc8d724fc861cb58adab61589eec6cee06ca0aff757b/django_request_token-0.7.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "30a6aea1547677c87edbffc3db709c37", "sha256": "ab5b68bf5713147e4a54492a743e3b52a39556e4a893be5059f022df98afe20b" }, "downloads": -1, "filename": "django-request-token-0.7.2.tar.gz", "has_sig": false, "md5_digest": "30a6aea1547677c87edbffc3db709c37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23293, "upload_time": "2017-05-30T15:56:51", "url": "https://files.pythonhosted.org/packages/b3/f9/becd917e292d5946a7999b54d8a948927769b47780272140bb2fa0023aaf/django-request-token-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "f61053474244b78f3048fc5ab7924784", "sha256": "d34f392554cf1c4cb6a5236ee2a5d047f8b7dc7cfc8eea1a74665edf8a2ac7ea" }, "downloads": -1, "filename": "django_request_token-0.7.3-py2-none-any.whl", "has_sig": false, "md5_digest": "f61053474244b78f3048fc5ab7924784", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 40751, "upload_time": "2017-05-31T11:21:50", "url": "https://files.pythonhosted.org/packages/e7/12/c232023bdce77c288cd3c064fd9a9d83de9fcd81a7829e6e222968c5fe1b/django_request_token-0.7.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ab38b876854a65b43715d2307437f313", "sha256": "62045eeaf758a16a2f7c05d71d8fd55c9ca35e522cead97bdadf09784fb42b95" }, "downloads": -1, "filename": "django-request-token-0.7.3.tar.gz", "has_sig": false, "md5_digest": "ab38b876854a65b43715d2307437f313", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23435, "upload_time": "2017-05-31T11:21:47", "url": "https://files.pythonhosted.org/packages/0e/4c/0dba19768a7a33da67fe24bacbc917eb2df72bedbfcde0a292b0ef9f237c/django-request-token-0.7.3.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "9b0c3738d26af78c001bc407707b81e4", "sha256": "a150798f425d5c1742477d48a610212c46a4f282a7fe5882e7b3ea57488f4072" }, "downloads": -1, "filename": "django-request-token-0.7.4.tar.gz", "has_sig": false, "md5_digest": "9b0c3738d26af78c001bc407707b81e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23417, "upload_time": "2017-06-02T11:20:23", "url": "https://files.pythonhosted.org/packages/c3/3b/fa72fd23a058ec531f715b960647e8720d8ba3237de3849c3d7008e05120/django-request-token-0.7.4.tar.gz" } ], "0.7.5": [ { "comment_text": "", "digests": { "md5": "70847fe05eeb1bfcade2819b3fc48704", "sha256": "a6cd77294bbcc2d3fb0384a743c5e3f1ffe7f5a0aa965d259e9e2a8a215b6fbe" }, "downloads": -1, "filename": "django_request_token-0.7.5-py2-none-any.whl", "has_sig": false, "md5_digest": "70847fe05eeb1bfcade2819b3fc48704", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 41362, "upload_time": "2017-07-05T15:53:33", "url": "https://files.pythonhosted.org/packages/fe/06/3aabf322720c87e91c6eeeffb5a2479661d1a439306789385a62489f822e/django_request_token-0.7.5-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c720a950d8ebd4c46c417738aad7e365", "sha256": "54fc0c66cece9021a4c545bbba276c0f49333565ec7c104b0707c370f9d79d88" }, "downloads": -1, "filename": "django-request-token-0.7.5.tar.gz", "has_sig": false, "md5_digest": "c720a950d8ebd4c46c417738aad7e365", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23771, "upload_time": "2017-07-05T15:53:31", "url": "https://files.pythonhosted.org/packages/20/ee/7b2c27fe387eeae06811dbce618f4788f4993d8091d1fcd0d8a96433dd34/django-request-token-0.7.5.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "bddd02dfcf81db9cab23753c53f942eb", "sha256": "d3fff720affa9b64ed5f4928918f5f93614d42de3f5dedfc64d3eb3fe59b7ada" }, "downloads": -1, "filename": "django_request_token-0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "bddd02dfcf81db9cab23753c53f942eb", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 35240, "upload_time": "2018-05-10T09:51:24", "url": "https://files.pythonhosted.org/packages/31/57/9f870b3b919eacf7266d637384f052668114b06b18986106138bf141fd0e/django_request_token-0.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d2e66933f70ff484a6b21c183f83f80d", "sha256": "fcf039765513df127cb55c63d7e1d6430a27cbebd16e694aa48165c8c0b0818d" }, "downloads": -1, "filename": "django-request-token-0.8.tar.gz", "has_sig": false, "md5_digest": "d2e66933f70ff484a6b21c183f83f80d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23840, "upload_time": "2018-05-10T09:51:22", "url": "https://files.pythonhosted.org/packages/8a/f6/7653cbe17fd6a1fdbdaf3b170810f5707ecbe7100f5ad86d2cf513cad53d/django-request-token-0.8.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "479109e66b1078d3d2f08f71fa19077c", "sha256": "84acd03a45dae6c57d35fb370f1f93387be85c3e1fe096292671c97abbf05ed0" }, "downloads": -1, "filename": "django_request_token-0.8.1-py3-none-any.whl", "has_sig": false, "md5_digest": "479109e66b1078d3d2f08f71fa19077c", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 35234, "upload_time": "2018-07-02T09:58:39", "url": "https://files.pythonhosted.org/packages/0e/4e/6d1804bc53cd5531e99e294882e3b6cb86a2c28a54fadfa7d1575ac0d162/django_request_token-0.8.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ecdc0d1e8343cf01553efb8953bb93e6", "sha256": "fe881bdb5d2eeb6e7ae4cc84bd01ba31d397f3fd5b4b7e3ba314564b09afbf7b" }, "downloads": -1, "filename": "django-request-token-0.8.1.tar.gz", "has_sig": false, "md5_digest": "ecdc0d1e8343cf01553efb8953bb93e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23828, "upload_time": "2018-07-02T09:58:37", "url": "https://files.pythonhosted.org/packages/5f/76/6e34dfac7a290dc6fd77f5dcb4a302d9821c3d7bf3e477671f5f3acda8b9/django-request-token-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "1f72f5a3f938cc07a1215b0e3677fbc1", "sha256": "2d0931f373d24d291af7dac4f47c98d4047d621afea2a77879f02ec0fdaf3d3c" }, "downloads": -1, "filename": "django_request_token-0.8.2-py3-none-any.whl", "has_sig": false, "md5_digest": "1f72f5a3f938cc07a1215b0e3677fbc1", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 35245, "upload_time": "2018-07-02T17:08:47", "url": "https://files.pythonhosted.org/packages/66/59/0d4f83c5407bd7cb16f332a714277e2508843077d3c50cb8da7576599ada/django_request_token-0.8.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eddab2dc68291a632c17a414da305f37", "sha256": "bd1fda38edd33bf0dd513854020cf157939197ebdaa6b9246d9a3f004c59b0e3" }, "downloads": -1, "filename": "django-request-token-0.8.2.tar.gz", "has_sig": false, "md5_digest": "eddab2dc68291a632c17a414da305f37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23858, "upload_time": "2018-07-02T17:08:45", "url": "https://files.pythonhosted.org/packages/be/14/da58555a78e65ddbe4c1d60ccd09c7ff3face404404e9b53485c2b02b2d1/django-request-token-0.8.2.tar.gz" } ], "0.8.2rc0": [ { "comment_text": "", "digests": { "md5": "b7d553edbcbf2ce268573ca13e06f7d2", "sha256": "67bec2288c5982dce75abf6e7d9193e20cfc174372d711cb2bf802f65784c50d" }, "downloads": -1, "filename": "django_request_token-0.8.2rc0-py3-none-any.whl", "has_sig": false, "md5_digest": "b7d553edbcbf2ce268573ca13e06f7d2", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 35272, "upload_time": "2018-07-02T16:51:32", "url": "https://files.pythonhosted.org/packages/90/af/23616dbff714539b039a36b49040bebaec042c15f65d4317f524eebe3f37/django_request_token-0.8.2rc0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a026c9fbed76938cadad0a06ecdcde9b", "sha256": "0457f22724da1d6fdc19119da32d75778ccbf78c4a2ab9a782e9d3dbeab909d4" }, "downloads": -1, "filename": "django-request-token-0.8.2rc0.tar.gz", "has_sig": false, "md5_digest": "a026c9fbed76938cadad0a06ecdcde9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23862, "upload_time": "2018-07-02T16:51:30", "url": "https://files.pythonhosted.org/packages/05/7f/4327250bea9e74eb969785d2ea806066b95ecf633e1556da4a9da377bd09/django-request-token-0.8.2rc0.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "1cf2562e04dc06b2b3eac0b4e92dec23", "sha256": "a1ff40174bc9023ecb89aa858dfd862284cd8756699f4472c98b54c89befc6de" }, "downloads": -1, "filename": "django_request_token-0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "1cf2562e04dc06b2b3eac0b4e92dec23", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 37442, "upload_time": "2018-11-01T11:43:37", "url": "https://files.pythonhosted.org/packages/02/46/f858d05dce7ee6c17ce63b80317b096264df292d1ec35d09de96b39c0184/django_request_token-0.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "508c3a2c5945959d79de1d5eef7ccff7", "sha256": "53ca99c61626bcf238a9bc3336aca27af86b75019428e732e4dc158f3c59cf5a" }, "downloads": -1, "filename": "django-request-token-0.9.tar.gz", "has_sig": false, "md5_digest": "508c3a2c5945959d79de1d5eef7ccff7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28204, "upload_time": "2018-11-01T11:43:35", "url": "https://files.pythonhosted.org/packages/2d/eb/7cf3e691ccb96344773a0ad9a4ad74141925f235e9ef8cdb26374f46549e/django-request-token-0.9.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "66f9c745a1591b91fcc4c1f38407e733", "sha256": "501c4d375303c3aa63c7b500a4fcc8967b0ec8b990c111c5483d874e609a4a31" }, "downloads": -1, "filename": "django_request_token-0.9.2-py2-none-any.whl", "has_sig": false, "md5_digest": "66f9c745a1591b91fcc4c1f38407e733", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 49091, "upload_time": "2019-01-29T10:43:15", "url": "https://files.pythonhosted.org/packages/5e/d5/95b209fbbf991249ff3bc96ebd7cbb9daec06a7f19e9effb428321819646/django_request_token-0.9.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4d4c7a534a796aec29e5ad57c22bbf38", "sha256": "021c038eda3187fe8f5ef24dc47070ae27bb1ab6f99a72c5deb423941266ff25" }, "downloads": -1, "filename": "django-request-token-0.9.2.tar.gz", "has_sig": false, "md5_digest": "4d4c7a534a796aec29e5ad57c22bbf38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22666, "upload_time": "2019-01-29T10:43:17", "url": "https://files.pythonhosted.org/packages/44/43/8401297005a93cea046345663127c99c8f5cbadae73c5f41350eed6661ce/django-request-token-0.9.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "66f9c745a1591b91fcc4c1f38407e733", "sha256": "501c4d375303c3aa63c7b500a4fcc8967b0ec8b990c111c5483d874e609a4a31" }, "downloads": -1, "filename": "django_request_token-0.9.2-py2-none-any.whl", "has_sig": false, "md5_digest": "66f9c745a1591b91fcc4c1f38407e733", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 49091, "upload_time": "2019-01-29T10:43:15", "url": "https://files.pythonhosted.org/packages/5e/d5/95b209fbbf991249ff3bc96ebd7cbb9daec06a7f19e9effb428321819646/django_request_token-0.9.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4d4c7a534a796aec29e5ad57c22bbf38", "sha256": "021c038eda3187fe8f5ef24dc47070ae27bb1ab6f99a72c5deb423941266ff25" }, "downloads": -1, "filename": "django-request-token-0.9.2.tar.gz", "has_sig": false, "md5_digest": "4d4c7a534a796aec29e5ad57c22bbf38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22666, "upload_time": "2019-01-29T10:43:17", "url": "https://files.pythonhosted.org/packages/44/43/8401297005a93cea046345663127c99c8f5cbadae73c5f41350eed6661ce/django-request-token-0.9.2.tar.gz" } ] }