{ "info": { "author": "Hugo Rodger-Brown", "author_email": "hugo@yunojuno.com", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 1.11", "Framework :: Django :: 2.0", "Framework :: Django :: 2.1", "Framework :: Django :: 2.2", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content" ], "description": ".. image:: https://badge.fury.io/py/django-nps.svg\n :target: https://badge.fury.io/py/django-nps\n\n.. image:: https://travis-ci.org/yunojuno/django-nps.svg?branch=master\n :target: https://travis-ci.org/yunojuno/django-nps\n\n**This package now support Python3 and Django 1.11 and above only. For previous versions please refer to the Python2 branch.**\n\nDjango NPS\n==========\n\n**Django app supporting Net Promoter Score (NPS) surveys**\n\nBackground - Net Promoter Score\n-------------------------------\n\nThe NPS is a measure of customer loyalty that is captured by asking your\ncustomers a singe question:\n\n::\n\n How likely is it that you would recommend our [company|product|service] to a friend or colleague?\"\n\nThe answer to this question is a number from 0-10 (inclusive). These scores\nare then broken out into three distinct groups: 'detractors' (0-6), 'neutral'\n(7-8) and 'promoters' (9-10). The NPS is then the difference between the\nnumber of promoters and detractors (as a percentage of the whole population).\n\nFor example, if you ask 100 people, and you get the following results:\n\n.. code::\n\n detractors: 20%\n neutrals: 10%\n promoters: 70%\n\nThen your NPS is 70 - 20 = 50. *(NPS is expressed as a number, not a %)*\n\nNPS was orginally developed at the strategy consultants Bain & Company by Fred Reichheld in 2003.\nThey retain the registered trademark for NPS, and you can read all about the history of it on\ntheir site \"`Net Promoter System `_\".\n\nUsage\n-----\n\nThis app is used to store the individual scores, and calculate the NPS based\non these. It does not contain any templates for displaying the question itself,\nneither does it put any restriction around how often you ask the question, or\nto whom. It is up to the app developer to determine how this should work -\neach score is timestamped and linked to a Django User object, so you can\neasily work out the time elapsed since the last time they were asked.\n\nFor example, if you want to ensure that you only survey users every X days,\nyou can add a context property to the template using the ``display_to_user``\nmethod:\n\n.. code:: python\n\n >>> # only show the survey every 90 days\n >>> UserScore.objects.days_since_user_score(request.user) > 90\n True\n\nIf you then show the survey - the output of which is a single value (the score)\ntogether with an optional reason (\"what is the main reason for your score\"), is\nthen posted to the ``post_score`` endpoint, which registers the user score.\n\nThe NPS value itself can be calculated on any queryset of ``UserScore`` objects -\nwhich allows you to track the score based on any attribute of the score itself\nor the underlying user. For instance, if you have custom user profiles, you\nmay wish to segement your NPS by characteristics of those profiles.\n\n.. code:: python\n\n >>> # December's NPS\n >>> UserScore.objects.filter(timestamp__month=12).net_promoter_score()\n 50\n\nThe ``post_score`` endpoint returns a ``JsonResponse`` which contains a ``'success': True|False``\nvalue together with the `UserScore` details:\n\n.. code:: python\n\n {\n \"success\": True,\n \"score\": {\"id\": 1, \"user\": 1, \"score\": 0, \"group\": \"detractor\"}\n }\n\nIf the score was rejected, the errors are returned in place of the score (errors\nare a list of lists, as returned from the Django `Form.errors` property:\n\n.. code:: python\n\n {\n \"success\": False,\n \"errors\": [[\"score\", \"Score must be between 0-10\"]]\n }\n\nThe app contains a piece of middleware, ``NPSMiddleware``, which will add an\nattribute to the ``HttpRequest`` object called ``show_nps``. If you add the\nmiddleware to your settings:\n\n.. code:: python\n\n # settings.py\n MIDDLEWARE_CLASSES = (\n # standard django middleware\n 'django.middleware.common.CommonMiddleware',\n 'django.contrib.sessions.middleware.SessionMiddleware',\n 'django.contrib.auth.middleware.AuthenticationMiddleware',\n ...\n 'net_promoter_score.NPSMiddleware',\n )\n\nYou can then use this value in your templates:\n\n.. code:: html\n\n \n {% if request.show_nps %}\n
HTML goes here
\n {% endif %}\n\nSettings\n--------\n\n**NPS_DISPLAY_INTERVAL**\n\nThe number of days between surveys, integer, defaults to 30. This value is\nused by the default ``show_nps`` function to determine whether someone should\nbe shown the survey.\n\n**NPS_DISPLAY_FUNCTION**\n\nA function that takes an ``HttpRequest`` object as its only argument, and\nwhich returns True if you want to show the survey. This function is used\nby the ``net_promoter_score.show_nps`` function. It defaults to return True\nif the request user has either never seen the survey, or hasn't seen it\nfor more days than the ``NPS_DISPLAY_INTERVAL``.\n\nThis function should be overridden if you want fine-grained control over\nthe process - it's the main hook into the app.\n\nTests\n-----\n\nThere is a full suite of tests for the app, which are best run through `tox`. If\nyou wish to run the tests outside of tox, you should install the requirements first:\n\n.. code:: shell\n\n $ pip install -r requirements.txt\n $ python manage.py test\n\nLicence\n-------\n\nMIT\n\nContributing\n------------\n\nUsual rules apply:\n\n1. Fork to your own account\n2. Create a branch, fix the issue / add the feature\n3. Submit PR\n\nPlease take care to follow the coding style - and PEP8.\n\nAcknowledgements\n----------------\n\nCredit is due to **epantry** for the `original project `_ from which this was forked.\n\nThanks also to the kind people at **Eldarion** (`website `_) for releasing the PyPI package name.\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-nps", "keywords": "", "license": "MIT", "maintainer": "Hugo Rodger-Brown", "maintainer_email": "hugo@yunojuno.com", "name": "django-nps", "package_url": "https://pypi.org/project/django-nps/", "platform": "", "project_url": "https://pypi.org/project/django-nps/", "project_urls": { "Homepage": "https://github.com/yunojuno/django-nps" }, "release_url": "https://pypi.org/project/django-nps/0.6/", "requires_dist": [ "Django (>=1.11)" ], "requires_python": "", "summary": "Django app supporting Net Promoter Score (NPS) surveys.", "version": "0.6" }, "last_serial": 5659094, "releases": { "0.1.0": [ { "comment_text": "built for Darwin-15.0.0", "digests": { "md5": "8bb1e20801865aaf131de7178c9a7197", "sha256": "796e0e881709d40055b634bb1f80781fd3f053dbac8aa91de589c665b779f536" }, "downloads": -1, "filename": "django-nps-0.1.0.macosx-10.11-intel.tar.gz", "has_sig": false, "md5_digest": "8bb1e20801865aaf131de7178c9a7197", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 15898, "upload_time": "2015-12-08T17:42:45", "url": "https://files.pythonhosted.org/packages/31/f2/cd8b4415e09be495b5c7c2b071c6373c8d514f5c0c87be96f6ce5046c0c2/django-nps-0.1.0.macosx-10.11-intel.tar.gz" }, { "comment_text": "", "digests": { "md5": "a822ed24d55ec2ab9830bd6933f08859", "sha256": "9ecb0e24c19752c014ea63a94179c87b318627dd96b99f523ac9d2ddb4e764c6" }, "downloads": -1, "filename": "django_nps-0.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "a822ed24d55ec2ab9830bd6933f08859", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15946, "upload_time": "2015-12-08T17:42:51", "url": "https://files.pythonhosted.org/packages/7a/6a/55c3f374043e3d3c29a33cb4189e44feacbc36fab5c1d2b26caba14c2e90/django_nps-0.1.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "399f383801be8b46119e27f44045fa65", "sha256": "b2b98703947113dcbb2b16736b28b44018cd580a85423c684da48af56abd4b4f" }, "downloads": -1, "filename": "django-nps-0.1.0.tar.gz", "has_sig": false, "md5_digest": "399f383801be8b46119e27f44045fa65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11639, "upload_time": "2015-12-08T17:42:40", "url": "https://files.pythonhosted.org/packages/b5/4a/349908ca0f79c01d58c67c5c75a77b89fe34ad7e5c24c25314cd279d5221/django-nps-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "built for Darwin-15.0.0", "digests": { "md5": "336056ab7a578d0d339861d0a0d993be", "sha256": "1122b71cd91f17c640e47d517e948cf5955f569ccb7bfeeaf305c9b9912aa7a7" }, "downloads": -1, "filename": "django-nps-0.1.1.macosx-10.11-intel.tar.gz", "has_sig": false, "md5_digest": "336056ab7a578d0d339861d0a0d993be", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 15922, "upload_time": "2015-12-08T17:49:11", "url": "https://files.pythonhosted.org/packages/57/3b/c833e62452a99d31145fc6dc8268abdc203debe68656807c1825b4a49f13/django-nps-0.1.1.macosx-10.11-intel.tar.gz" }, { "comment_text": "", "digests": { "md5": "b6c7d620c93fac91f55e069d0532fb96", "sha256": "f796ca073b2a9e8a0b049ed9b7d50dd7a6f4704c04270674779a179f2317d580" }, "downloads": -1, "filename": "django_nps-0.1.1-py2-none-any.whl", "has_sig": false, "md5_digest": "b6c7d620c93fac91f55e069d0532fb96", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 16002, "upload_time": "2015-12-08T17:49:20", "url": "https://files.pythonhosted.org/packages/ec/9f/886494d4ac522539761a28ce49004420113d369457aa723eccad86ba3803/django_nps-0.1.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f95937d528d19ea2faae1550a3f4b45d", "sha256": "acd9af3fb3b71712ee08e88e0789c98fef2687816d6ab94b2f63a2d8913a8351" }, "downloads": -1, "filename": "django-nps-0.1.1.tar.gz", "has_sig": false, "md5_digest": "f95937d528d19ea2faae1550a3f4b45d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11688, "upload_time": "2015-12-08T17:48:53", "url": "https://files.pythonhosted.org/packages/85/45/7515f1f5db80e44af2a9fedefa98d8e5b6a3e87ee7a7b520b2db7ca71a83/django-nps-0.1.1.tar.gz" } ], "0.2.0": [ { "comment_text": "built for Darwin-15.2.0", "digests": { "md5": "09fdaead06a96f0b1cda10f8f6d8e936", "sha256": "fbdd999ecdbfcf2a9e1225a8fd006e54757f8e02f78f8a8bce80befe918dfcbd" }, "downloads": -1, "filename": "django-nps-0.2.0.macosx-10.11-intel.tar.gz", "has_sig": false, "md5_digest": "09fdaead06a96f0b1cda10f8f6d8e936", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 18908, "upload_time": "2015-12-16T12:24:11", "url": "https://files.pythonhosted.org/packages/54/fd/bd92fc03f7dbf040e56e2f36f57c45b912843f40511353dbfbe0b9e76ff4/django-nps-0.2.0.macosx-10.11-intel.tar.gz" }, { "comment_text": "", "digests": { "md5": "03c462e9a06f479b88d49033dcd751e8", "sha256": "ed3a491775f16eeb6c99314d7df863d2fbf3672f00bb122c6fcba04b625a38fc" }, "downloads": -1, "filename": "django_nps-0.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "03c462e9a06f479b88d49033dcd751e8", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 19563, "upload_time": "2015-12-16T12:24:19", "url": "https://files.pythonhosted.org/packages/e0/74/1423cdac8614c0b1c42b1693dde84aba3769931b622b6d028f3c43600638/django_nps-0.2.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b976e00d02a0b2ecf3acef7387817f20", "sha256": "4862ea9196919bff244efd154e4739c2783b6f3af496efb6040420800c3d5207" }, "downloads": -1, "filename": "django-nps-0.2.0.tar.gz", "has_sig": false, "md5_digest": "b976e00d02a0b2ecf3acef7387817f20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13627, "upload_time": "2015-12-16T12:23:57", "url": "https://files.pythonhosted.org/packages/b1/f6/1dc40dc1203551543ebb2bdbf0a6a6bd388f4f9af287278d2ec7be1ceb44/django-nps-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "built for Darwin-15.2.0", "digests": { "md5": "8588bbebdb51adbf55ae6df6231d37d7", "sha256": "be3107954b286fcf86fad4a3020239e1f109fc06642ec13a7bea38543a7480e5" }, "downloads": -1, "filename": "django-nps-0.2.1.macosx-10.11-intel.tar.gz", "has_sig": false, "md5_digest": "8588bbebdb51adbf55ae6df6231d37d7", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 18922, "upload_time": "2015-12-17T07:52:11", "url": "https://files.pythonhosted.org/packages/a4/d2/f1fe0dec15724e310bb1201afd8eb1ad7095a6ab42678ee75fbc87b0b6dc/django-nps-0.2.1.macosx-10.11-intel.tar.gz" }, { "comment_text": "", "digests": { "md5": "e2463f2c236d10c2bc7ec8352fc9fd59", "sha256": "067f0dae62fbdcee4f5d13dc42cc61d829d9a94238fcbed76b00e27915999b13" }, "downloads": -1, "filename": "django_nps-0.2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "e2463f2c236d10c2bc7ec8352fc9fd59", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 19568, "upload_time": "2015-12-17T07:52:16", "url": "https://files.pythonhosted.org/packages/b5/bd/cc38ce7dd160a81639611ca3d93f097f92f6c75713a5d61761d8e438a59d/django_nps-0.2.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "71657aea742628eeb3fa0121135ff429", "sha256": "9653c3300c9ad3b19827d13864be5adb3b18838bd0a00783360669914b42bd0a" }, "downloads": -1, "filename": "django-nps-0.2.1.tar.gz", "has_sig": false, "md5_digest": "71657aea742628eeb3fa0121135ff429", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13633, "upload_time": "2015-12-17T07:52:04", "url": "https://files.pythonhosted.org/packages/1c/fe/75603a994e7767e3af31f5ff94d673b7f5e88da99744c7ce7313d9de69a0/django-nps-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "29ae91f47847ad0a7286154a50459818", "sha256": "9a8cc87b084b796e58157583d98560da14fb5dcddf7d9f7757f90344ce6549fa" }, "downloads": -1, "filename": "django-nps-0.2.2.tar.gz", "has_sig": false, "md5_digest": "29ae91f47847ad0a7286154a50459818", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13680, "upload_time": "2015-12-17T08:00:09", "url": "https://files.pythonhosted.org/packages/af/f6/a1c8423b7c672fa403b69718e961583ea193c19aab5293be096722bb391e/django-nps-0.2.2.tar.gz" } ], "0.2.2a0": [ { "comment_text": "built for Darwin-15.2.0", "digests": { "md5": "5dc03550c5eaa1f47ecafac81c1829a2", "sha256": "fe1982217e17aa35b0379ffc74dbfcb83175b8e8af076e359ab2114dad0aa996" }, "downloads": -1, "filename": "django-nps-0.2.2a0.macosx-10.11-intel.tar.gz", "has_sig": false, "md5_digest": "5dc03550c5eaa1f47ecafac81c1829a2", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 19007, "upload_time": "2015-12-17T08:04:20", "url": "https://files.pythonhosted.org/packages/cd/f1/341461d46372f29d8a38365804032bb4ec215e83b56273b096be5cb2d392/django-nps-0.2.2a0.macosx-10.11-intel.tar.gz" }, { "comment_text": "", "digests": { "md5": "17ea7769e28e06ae9cdeec4013343422", "sha256": "43ee89c0b612758fc4892d74de05ee8fd72c8a189df173f0152b99bf3c249506" }, "downloads": -1, "filename": "django_nps-0.2.2a0-py2-none-any.whl", "has_sig": false, "md5_digest": "17ea7769e28e06ae9cdeec4013343422", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 19665, "upload_time": "2015-12-17T08:04:35", "url": "https://files.pythonhosted.org/packages/5e/e6/333137c6ff7775c2b8169db752c0a32a745e5f70990d8bb5a12a0bc2e8bf/django_nps-0.2.2a0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d882fabba60e514f40c2a7861e46757c", "sha256": "2193c46bd93716e0cb55f4b10eadae336e5f2eccedfcd5d74da32ad4ee3255f8" }, "downloads": -1, "filename": "django-nps-0.2.2a0.tar.gz", "has_sig": false, "md5_digest": "d882fabba60e514f40c2a7861e46757c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13684, "upload_time": "2015-12-17T08:03:45", "url": "https://files.pythonhosted.org/packages/a4/bb/405fe2c1f96fa49fd5e8863fa5ec57416c1e6c220074a2902d2c6c844be8/django-nps-0.2.2a0.tar.gz" } ], "0.2.3": [ { "comment_text": "built for Darwin-15.2.0", "digests": { "md5": "b6239f072d1844e5fa20ca37e2a8c28b", "sha256": "1864cddaa2ebad89d8ba81538bb71e17664b59ddb1c322eaabbd47632adea46f" }, "downloads": -1, "filename": "django-nps-0.2.3.macosx-10.11-intel.tar.gz", "has_sig": false, "md5_digest": "b6239f072d1844e5fa20ca37e2a8c28b", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 19171, "upload_time": "2015-12-17T08:19:13", "url": "https://files.pythonhosted.org/packages/81/4d/13e30bcb338c1826e217d51c5b997d8d553f1f9d32d5edd48dbec775bd78/django-nps-0.2.3.macosx-10.11-intel.tar.gz" }, { "comment_text": "", "digests": { "md5": "6d02cf5119de602b2df66c39f5fe9972", "sha256": "64cb2d938c5d66e2f933ff2c1ea467a21c537c05f155185433712a9b294f0f3d" }, "downloads": -1, "filename": "django_nps-0.2.3-py2-none-any.whl", "has_sig": false, "md5_digest": "6d02cf5119de602b2df66c39f5fe9972", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 19777, "upload_time": "2015-12-17T08:19:21", "url": "https://files.pythonhosted.org/packages/19/5f/c07a8c2542158981f2984c90e50a9fc58d762e7b3225c956930c33fe5646/django_nps-0.2.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "738b2c0ee2cdaebdd40309a9116773c4", "sha256": "8cb2b609b78634d2ae35c9712b3d13844becc52938b0de82dbad5fd070d3963f" }, "downloads": -1, "filename": "django-nps-0.2.3.tar.gz", "has_sig": false, "md5_digest": "738b2c0ee2cdaebdd40309a9116773c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13719, "upload_time": "2015-12-17T08:19:01", "url": "https://files.pythonhosted.org/packages/fd/cc/521e122218fd19b19e3b9c42811a91e41c48c5f221233ac8987973c6c290/django-nps-0.2.3.tar.gz" } ], "0.2.4.dev0": [ { "comment_text": "built for Darwin-15.3.0", "digests": { "md5": "00feae6ca5a33e8689f47d1dc819aa8b", "sha256": "3d4537ecdd691239ea48201fa48e1e148214281302f0fc63e43b16319784977e" }, "downloads": -1, "filename": "django-nps-0.2.4.dev0.macosx-10.11-intel.tar.gz", "has_sig": false, "md5_digest": "00feae6ca5a33e8689f47d1dc819aa8b", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 19341, "upload_time": "2016-02-22T15:06:01", "url": "https://files.pythonhosted.org/packages/f1/5d/33eea1bab4defe574a21ee41254b2762522f7f9cc6fa28245dafef4db823/django-nps-0.2.4.dev0.macosx-10.11-intel.tar.gz" }, { "comment_text": "", "digests": { "md5": "6132ee1127aa15d7144cb56d8b9795fc", "sha256": "e6e56dc1724749955d2fd43e26e8ddf624386a6ebb882b318c26e5e5d961789f" }, "downloads": -1, "filename": "django_nps-0.2.4.dev0-py2-none-any.whl", "has_sig": false, "md5_digest": "6132ee1127aa15d7144cb56d8b9795fc", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 19970, "upload_time": "2016-02-22T15:06:14", "url": "https://files.pythonhosted.org/packages/a2/f3/dda6601d1678c04629c908ceef3be648eedebc9db334a9ba2de53cba7e11/django_nps-0.2.4.dev0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a4f0170bc3741eb0db4baf6a95924a42", "sha256": "12bca10ffe079c8a8b59536c3c56df3ae774cbd2494fe7629cbbd234b31caa2f" }, "downloads": -1, "filename": "django-nps-0.2.4.dev0.tar.gz", "has_sig": false, "md5_digest": "a4f0170bc3741eb0db4baf6a95924a42", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13869, "upload_time": "2016-02-22T15:05:45", "url": "https://files.pythonhosted.org/packages/d0/a1/3ad3445932c395b547b55e381ad0ca5358f69a52f7b52386d62e8fb1070b/django-nps-0.2.4.dev0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "1bf08eea02e42d29bbc98eb08df70394", "sha256": "4eb6d3fbe9687e373838cf2459fe697b133e4aea3cdabc40321475f07b8cdfa4" }, "downloads": -1, "filename": "django-nps-0.3.0.tar.gz", "has_sig": false, "md5_digest": "1bf08eea02e42d29bbc98eb08df70394", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13849, "upload_time": "2016-08-04T22:15:47", "url": "https://files.pythonhosted.org/packages/4e/1e/321e09bafba8fc605beb2026683df14b5beb34760d1d71ca4363790d9dff/django-nps-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "built for Darwin-16.1.0", "digests": { "md5": "5dd5300bc4eab8678fa8700da970667f", "sha256": "faa930d4241a5e1d212f32fa21142834a220a1b55c96f94ff6fd0f92f5f6b96a" }, "downloads": -1, "filename": "django-nps-0.3.1.macosx-10.12-intel.tar.gz", "has_sig": false, "md5_digest": "5dd5300bc4eab8678fa8700da970667f", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 20804, "upload_time": "2016-12-06T09:33:26", "url": "https://files.pythonhosted.org/packages/d6/9b/459d9c19306c6246d3d6ec79fd3c57ec46e6911fa0361974029381ba6214/django-nps-0.3.1.macosx-10.12-intel.tar.gz" }, { "comment_text": "", "digests": { "md5": "f53d9b0c0397f44d20bfc612bafe6f8f", "sha256": "97c1f9add63e7ea0aa97acacb077f107380a334c6723f858a7393162cecdcb8f" }, "downloads": -1, "filename": "django_nps-0.3.1-py2-none-any.whl", "has_sig": false, "md5_digest": "f53d9b0c0397f44d20bfc612bafe6f8f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 20617, "upload_time": "2016-12-06T09:33:28", "url": "https://files.pythonhosted.org/packages/ea/af/56e310d8146fb0896143391e96386f829fe2f2b23a9170ce5bbb5caf6ccf/django_nps-0.3.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "df4ab356811eb4e6ac3d2f3cc8b4fbe5", "sha256": "bf3a80df7946bca3fe79391f8fca1f1ab11a96fc4a7a713718a9b7422f3ded65" }, "downloads": -1, "filename": "django-nps-0.3.1.tar.gz", "has_sig": false, "md5_digest": "df4ab356811eb4e6ac3d2f3cc8b4fbe5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14163, "upload_time": "2016-12-06T09:33:24", "url": "https://files.pythonhosted.org/packages/52/48/8d7a7170173f69f659abe867f34c83e3689cacf0dcdc32a3febde90edd3f/django-nps-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "519856fe84e46144fce3022bb5e7d925", "sha256": "407e60d3e1904af6dc1358a246b90766193cc4409f1c309a8a7754cc34d660e7" }, "downloads": -1, "filename": "django-nps-0.3.2.tar.gz", "has_sig": false, "md5_digest": "519856fe84e46144fce3022bb5e7d925", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14148, "upload_time": "2017-01-16T17:13:29", "url": "https://files.pythonhosted.org/packages/d8/23/25bcde5f170c681ca2d195a18ab9add6ae8f973209a078ab424824267d08/django-nps-0.3.2.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "6c11f5a204aa1200ab1dc845914ff231", "sha256": "3f934537bf73e49e23b0f8358f679a60d2b82f310d88c208aeb046b9b106efe2" }, "downloads": -1, "filename": "django_nps-0.4.1-py2-none-any.whl", "has_sig": false, "md5_digest": "6c11f5a204aa1200ab1dc845914ff231", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 21099, "upload_time": "2017-04-08T17:43:20", "url": "https://files.pythonhosted.org/packages/34/19/d8b8ff773677b79ac191939b775a726f94e50eb45ae79fa923f779bcf68a/django_nps-0.4.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d80fd5253442061df52692e512a1cc33", "sha256": "45518b1d62f1bf187d10115e6cddf2575cc77da42fe33fe62907211483067a8c" }, "downloads": -1, "filename": "django-nps-0.4.1.tar.gz", "has_sig": false, "md5_digest": "d80fd5253442061df52692e512a1cc33", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14431, "upload_time": "2017-04-08T17:43:22", "url": "https://files.pythonhosted.org/packages/b2/00/802733de03ea94f1a14b6dfe2990b7e463d7ae6befa13b68f6dda5b3c039/django-nps-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "5759d1e15382f8af29a87804e0773f6d", "sha256": "81d8b6a0334d6261bf6af1d9bddfe9c3c1073e86eac6a84dd2310a3ea90b2969" }, "downloads": -1, "filename": "django_nps-0.4.2-py2-none-any.whl", "has_sig": false, "md5_digest": "5759d1e15382f8af29a87804e0773f6d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 21690, "upload_time": "2017-07-05T18:16:13", "url": "https://files.pythonhosted.org/packages/a8/f5/8bbb3b1537d24ac211aeed34a6a1ada90a54d1f964ac9f412077a3252454/django_nps-0.4.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a3369b0ed447013137083262a9541396", "sha256": "f380ca482cdadfce5108239ebd2686fc0708f349e5c111195f7a44aaa70b891f" }, "downloads": -1, "filename": "django-nps-0.4.2.tar.gz", "has_sig": false, "md5_digest": "a3369b0ed447013137083262a9541396", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14791, "upload_time": "2017-07-05T18:16:11", "url": "https://files.pythonhosted.org/packages/1e/bd/4ff46481fb9e978948d7e1eeef3ef2471437d36c54f0018e21f8d2909f42/django-nps-0.4.2.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "5c38fba21c80f320785845ff416a107e", "sha256": "2b7c1895fb6e5b05adef3b8436436b711e43ade54cc941c1a605fe6ca2e2df93" }, "downloads": -1, "filename": "django_nps-0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "5c38fba21c80f320785845ff416a107e", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17364, "upload_time": "2018-05-11T09:18:52", "url": "https://files.pythonhosted.org/packages/0e/a3/c828bfe8f19b9cc8ce7c85ee90873ef3c2613230e62bb3f7736055045c20/django_nps-0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e029c3037705beafcbba799bd5a3a09d", "sha256": "c9b3f6ba5ad381d334ca01796815dc991014e3f29e13b62dfa49b4ee0acf0053" }, "downloads": -1, "filename": "django-nps-0.5.tar.gz", "has_sig": false, "md5_digest": "e029c3037705beafcbba799bd5a3a09d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14405, "upload_time": "2018-05-11T09:18:50", "url": "https://files.pythonhosted.org/packages/9a/ea/f33a0b3b07ef18fe7287e9c5e90494ad031538dd20311b624f1721ada5fe/django-nps-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "c2746c4e3060b48a924bed43834b5f86", "sha256": "50b43142675c5a2802062277f0524a18ece0cfe89bb203e6440958e218afcc4d" }, "downloads": -1, "filename": "django_nps-0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "c2746c4e3060b48a924bed43834b5f86", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18736, "upload_time": "2019-08-10T09:16:51", "url": "https://files.pythonhosted.org/packages/26/90/c5252dd287d68905c24ecb1651889b030820acfb57b7f020c75db72d5957/django_nps-0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9c2636a41248eea8136fc2e0702145df", "sha256": "a94b74a9eb8703d64e4a4aa2952343dfca7abf4fbe374afe536bbddc86dd7db9" }, "downloads": -1, "filename": "django-nps-0.6.tar.gz", "has_sig": false, "md5_digest": "9c2636a41248eea8136fc2e0702145df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12341, "upload_time": "2019-08-10T09:16:53", "url": "https://files.pythonhosted.org/packages/00/e4/a71ee63d35747297227cd3c1ba7bb5a8d17c0922b18b121f59a3a9c5ecfc/django-nps-0.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c2746c4e3060b48a924bed43834b5f86", "sha256": "50b43142675c5a2802062277f0524a18ece0cfe89bb203e6440958e218afcc4d" }, "downloads": -1, "filename": "django_nps-0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "c2746c4e3060b48a924bed43834b5f86", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18736, "upload_time": "2019-08-10T09:16:51", "url": "https://files.pythonhosted.org/packages/26/90/c5252dd287d68905c24ecb1651889b030820acfb57b7f020c75db72d5957/django_nps-0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9c2636a41248eea8136fc2e0702145df", "sha256": "a94b74a9eb8703d64e4a4aa2952343dfca7abf4fbe374afe536bbddc86dd7db9" }, "downloads": -1, "filename": "django-nps-0.6.tar.gz", "has_sig": false, "md5_digest": "9c2636a41248eea8136fc2e0702145df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12341, "upload_time": "2019-08-10T09:16:53", "url": "https://files.pythonhosted.org/packages/00/e4/a71ee63d35747297227cd3c1ba7bb5a8d17c0922b18b121f59a3a9c5ecfc/django-nps-0.6.tar.gz" } ] }