{ "info": { "author": "Leandro Arndt", "author_email": "contato@caritasinveritate.teo.br", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Internet :: WWW/HTTP :: Site Management", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "djangospam\r\n==========\r\n\r\nDjango antispam module aimed at Django with an invisible fake comment/contact form,\r\ncookie based middleware and Akismet verification.\r\n\r\nSee http://pythonhosted.org/djangospam for complete documentation. Djangospam\r\nis compatible with both Python 2 and 3.\r\n\r\nSee https://github.com/leandroarndt/djangospam for development versions.\r\n\r\nQuick start\r\n-----------\r\n\r\nThese are the basic steps for using djangospam. You can get more info on\r\nthe cited modules and at `djangospam.settings`.\r\n\r\nFake form with cookie middleware\r\n++++++++++++++++++++++++++++++++\r\n\r\n*New in version 0.3.0*\r\n\r\nThe cookie middleware uses cookies to identify known spam bots. Simple\r\ncrawlers usually don't accept cookies, but spam bots may accept, since\r\na website may require this to receive comments. In order to use the\r\ncookie middleware, add `djangospam.cookie.middleware.SpamCookieMiddleware`\r\nto `MIDDLEWARE_CLASSES` at your settings file (usually `settings.py`).\r\nIn your template, insert **before** the true form::\r\n\r\n {% include 'djangospam/cookieform.html' %}\r\n\r\nYou must also add `(r\"^somewhere/\", include(\"djangospam.cookie.urls\")`\r\nto your url patterns (usually in your root urls.conf; `somewhere`\r\nmay be any path, except the one used for true posts).\r\nI suggest using the following paths::\r\n\r\n (r'^comments/', include('djangospam.cookie.urls')),\r\n (r'^spam/', include('django_comments.urls')),\r\n\r\nFake form without middleware\r\n++++++++++++++++++++++++++++\r\n\r\nYou may also use the fake form without the cookie middleware. This will\r\n*not* block access from known spam bots. In order to do this,\r\ninclude `djangospam` in your installed modules (at `settings.py`) and\r\ninsert the following code in your template, **before** the true form::\r\n\r\n {% include 'djangospam/form.html' %}\r\n\r\nYou may also define a `spam_uri` context variable with the\r\nfake formulary destination URI. If no URI is defined, the form will be posted\r\nat the same address of the page in which the form has been placed\r\n(it will be used a\r\n`
...
`\r\ncode). The destination address must accept POST requests and should not change\r\nthe database.\r\n\r\nYou may customize the fake formulary by copying it's template to\r\n`template/djangospam` at your application's directory and editing it.\r\n\r\nCookie-based moderator\r\n++++++++++++++++++++++\r\n\r\n*New in version 0.4.0*\r\n\r\n`djangospam.cookie.moderator` defines a cookie-based comment moderator\r\nthat should be attached to\r\nyour commented model. This moderator tests comment post requests for\r\nthe djangospam cookie and discards those which don't have it.\r\nSee `djangospam.cookie.middleware` for more info on the cookie system.\r\nCode that uses this comment moderator **must** use that middleware.\r\n\r\nYour models file should be like this::\r\n\r\n from djangospam.cookie import moderator as cookie\r\n\r\n class MyModel(...):\r\n ...\r\n\r\n try:\r\n cookie.register(MyModel)\r\n except cookie.AlreadyModerated:\r\n pass\r\n\r\nAkismet\r\n+++++++\r\n\r\n*New in version 0.2.0*\r\n\r\n`djangospam.akismet.moderator` defines an Akismet-based comment moderator.\r\nBesides including `djangospam` in your installed modules (at `settings.py`),\r\nyou should insert the following code to your models file::\r\n\r\n from djangospam.akismet import moderator as akismet\r\n\r\n class MyModel(...):\r\n ...\r\n\r\n try:\r\n akismet.register(MyModel)\r\n except akismet.AlreadyModerated:\r\n pass\r\n\r\n**Warning:**\r\n Since version 0.4.0, the Akismet moderator has been turned a separate\r\n subpackage. Code using it must be rewritten as follows::\r\n\r\n from djangospam import akismet\r\n\r\n must be changed to::\r\n\r\n from djangospam.akismet import moderator as akismet\r\n\r\n Using from `djangospam import akismet` is now deprecated and won't be\r\n available from 1.0.0 on.\r\n\r\nYou also **must** define the variables below at `settings.py`:\r\n\r\nAKISMET_BLOG\r\n Your home page URL, including http://\r\nAKISMET_KEY\r\n Your application key at akismet.com\r\nAKISMET_USERAGENT\r\n Your application name\r\nAKISMET_USERAGENT_VERSION\r\n Your application version\r\n\r\nResults\r\n=======\r\n\r\nSince version 0.4.3, the cookie-based middleware (with fake forms and\r\nthe cookie-based comment moderator) has achieved 100% efficiency at former\r\nhttp://www.correioprogressista.com.br/, which used to have more than 200\r\nspam comments each day. Even so, I recommend using Akismet or another\r\nspam analysis tool.\r\n\r\nSince version 0.3.0 (first with cookie middleware) up to 8th april 2013,\r\nthe cookie middleware identified 5166 spammers and blocked 1917 requests\r\nfrom known spammers at the same website::\r\n\r\n $ grep -c \"BLOCK RESPONSE\" spam.log \r\n 5166\r\n $ grep -c \"SPAM REQUEST\" spam.log \r\n 1917\r\n\r\nChange log\r\n==========\r\n\r\n* 1.1:\r\n * 1.1.4 (*2016-10-04*):\r\n * Adapted to Django 1.10.\r\n * 1.1.3 (*2015-02-10*):\r\n * Fixed cookie moderator issue killing comments which should pass.\r\n * 1.1.2 (*2015-02-07*):\r\n * Tries to import django_comments before django.comments.moderator.\r\n * 1.1.1 (*2015-02-05*):\r\n * Fixed Windows compatibility issue on logger.\r\n * 1.1.0 (*2015-02-05*):\r\n * Added support for django_comments (former django.contrib.comments)\r\n* 1.0:\r\n * 1.0.1 (*2015-01-10*):\r\n * Added support for Django 1.4 and later.\r\n * 1.0.0 (*2013-04-01*):\r\n * Changed version number and labeled as \"stable\".\r\n* 0.4:\r\n * 0.4.3 (*2013-03-23*):\r\n * Fake forms made invisible via javascript.\r\n * 0.4.2 (*2013-03-22*):\r\n * Akismet settings made optional for non-Akismet users.\r\n * 0.4.1 (*2013-03-21*):\r\n * Bugfix at djangospam.akismet.\r\n * 0.4.0 (*2013-03-20*):\r\n * Added cookie-based comment moderator.\r\n * Transformed Akismet module into a separate subpackage.\r\n **Warning:**\r\n Code that used Akismet module needs to be rewritten. See\r\n `djangospam.akismet` for the current code. Old code should\r\n work until 1.0.0.\r\n * Improved logger.\r\n* 0.3:\r\n * 0.3.4 (*2013-03-18*):\r\n * Improved forms and URL.\r\n * 0.3.3 (*2013-03-17*):\r\n * Worked around pip bug.\r\n * 0.3.2 (*2013-03-17*):\r\n * Fixed new setup bug (setup.py) - NOT A BUG, see v. 0.3.3.\r\n * 0.3.1 (*2013-03-17*):\r\n * Fixed setup bug (in Manifest.in)\r\n * 0.3.0 (*2013-03-17*):\r\n * Implemented cookie middleware\r\n* 0.2:\r\n * 0.2.2 (*2013-03-16*):\r\n * Fixed bug at akismet module.\r\n * 0.2.1 (*2013-03-13*):\r\n * Made compatible with both Python 2 and 3.\r\n * 0.2.0 (*2013-03-10*):\r\n * Implemented Akismet verification.\r\n* 0.1:\r\n * 0.1.1-0.1.6 (*2013-03-10*):\r\n * Bugfixes.\r\n * 0.1.0 (*2013-03-09*):\r\n * First version.", "description_content_type": null, "docs_url": "https://pythonhosted.org/djangospam/", "download_url": "https://github.com/leandroarndt/djangospam/archive/v1.1.4.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/leandroarndt/djangospam", "keywords": "django,spam,akismet,middleware", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "djangospam", "package_url": "https://pypi.org/project/djangospam/", "platform": "OS independent", "project_url": "https://pypi.org/project/djangospam/", "project_urls": { "Download": "https://github.com/leandroarndt/djangospam/archive/v1.1.4.tar.gz", "Homepage": "https://github.com/leandroarndt/djangospam" }, "release_url": "https://pypi.org/project/djangospam/1.1.4/", "requires_dist": null, "requires_python": "", "summary": "Django antispam module with invisible fake comment/contact form, cookie based middleware and Akismet verification.", "version": "1.1.4" }, "last_serial": 2408674, "releases": { "0.1.6": [ { "comment_text": "", "digests": { "md5": "d36bbde7f5a4537f4d0644da73859043", "sha256": "779034c50f793ac31be41694a34944fbd8cab3a8858feb347bea2b0a2f54155f" }, "downloads": -1, "filename": "djangospam-0.1.6.tar.gz", "has_sig": false, "md5_digest": "d36bbde7f5a4537f4d0644da73859043", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2618, "upload_time": "2013-03-10T01:48:50", "url": "https://files.pythonhosted.org/packages/56/5e/99a28c07e566b94ac44a0a0da3c61bc99492278be9d190c025113f302ec4/djangospam-0.1.6.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "bee89209a4a5f52c8d1d8852c1d5a20f", "sha256": "9ea0d094400cb7bbafeb3a563d2d2fd8ea08d5ed3df00b590b7ef9bce3e25f41" }, "downloads": -1, "filename": "djangospam-0.2.0.tar.gz", "has_sig": false, "md5_digest": "bee89209a4a5f52c8d1d8852c1d5a20f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3897, "upload_time": "2013-03-10T21:53:56", "url": "https://files.pythonhosted.org/packages/b1/0e/10d6f0b1d11dc390508ba67b777696aa39e630873a327d29acf4eba31097/djangospam-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "642603c7dfa5b89ea101cd239a67b2c9", "sha256": "4888cd34b2bbc780088b2cdd17eda5efec2725d7fd90ec25a316b7f4903bdaa4" }, "downloads": -1, "filename": "djangospam-0.2.1.tar.gz", "has_sig": false, "md5_digest": "642603c7dfa5b89ea101cd239a67b2c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4079, "upload_time": "2013-03-13T14:54:16", "url": "https://files.pythonhosted.org/packages/09/f0/4ec8bf16e58e0434a3f8a22dda03a7d71c72353ac0b98bdd9ee02ba035dd/djangospam-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "590da244b6fc659d778b4992984fc1e0", "sha256": "9a8c8f72e84239bcfad02aefede7357e6634ad5ece62bb891c78fb8055d9e56a" }, "downloads": -1, "filename": "djangospam-0.2.2.tar.gz", "has_sig": false, "md5_digest": "590da244b6fc659d778b4992984fc1e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4080, "upload_time": "2013-03-16T18:21:31", "url": "https://files.pythonhosted.org/packages/dd/b7/3747d6780f14b769a124dbc44fbc4037e2d4eab19388be56cc2a89727f7b/djangospam-0.2.2.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "fd9ad116ea4b8b7a4f5867d4a565cc5e", "sha256": "cee357d8185671832975579c904385804b9395dfc069b067af9816ac1b3679d3" }, "downloads": -1, "filename": "djangospam-0.3.0.tar.gz", "has_sig": false, "md5_digest": "fd9ad116ea4b8b7a4f5867d4a565cc5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5656, "upload_time": "2013-03-17T15:23:12", "url": "https://files.pythonhosted.org/packages/23/cf/75ae1247437d18083e0f69080682cf62af5b6a426ac1ddd8ee42f910f8f3/djangospam-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "ed331806bbc4beb9b552a7742fd16305", "sha256": "2214b419cb509f2b9fa135d8308b999433c5a2d8ad8da048a979f88760958ee7" }, "downloads": -1, "filename": "djangospam-0.3.1.tar.gz", "has_sig": false, "md5_digest": "ed331806bbc4beb9b552a7742fd16305", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7018, "upload_time": "2013-03-17T20:31:50", "url": "https://files.pythonhosted.org/packages/98/22/599c4d47dd78a85af7b4196e2642233dd56c7ee5304a4268d8567e16efa7/djangospam-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "46a2eae8abd79b6adc0e6b9be0b3244e", "sha256": "c1e42237689dbf24f71f41f043abcb792ce7d13f9a5fcb97d23060d05ca346d4" }, "downloads": -1, "filename": "djangospam-0.3.2.tar.gz", "has_sig": false, "md5_digest": "46a2eae8abd79b6adc0e6b9be0b3244e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7052, "upload_time": "2013-03-17T20:48:28", "url": "https://files.pythonhosted.org/packages/ed/f3/309808f1d3f0b4343d863e3df0f8849213551fe4c196ac40c56cb75bae22/djangospam-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "1419b37130c34e78a6a4e6bd6137f903", "sha256": "f460d9c08e1c4fc257a08e087e6d361175153bfac726681ef0947f119616e290" }, "downloads": -1, "filename": "djangospam-0.3.3.tar.gz", "has_sig": false, "md5_digest": "1419b37130c34e78a6a4e6bd6137f903", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7632, "upload_time": "2013-03-17T21:03:57", "url": "https://files.pythonhosted.org/packages/e2/7e/11c242654fa8b81fd98aff53bb12bf3d8e8e7dfffbcc68c9a3e212bc4212/djangospam-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "c38066bf35add15b4808252e50d05515", "sha256": "3da1212d436c7df74242c022788b1aa7db8914abfd0a8883bcd513f6ed32c7f2" }, "downloads": -1, "filename": "djangospam-0.3.4.tar.gz", "has_sig": false, "md5_digest": "c38066bf35add15b4808252e50d05515", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7825, "upload_time": "2013-03-19T02:09:13", "url": "https://files.pythonhosted.org/packages/05/2f/06d51e1f406fc19dc77fde6cc09237cb49ad8b0826886d004c33b94cf2e7/djangospam-0.3.4.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "d1a9c6f549f0cc174c3eb0c8552a0959", "sha256": "ef5c1a6c84f84868dc10074c68fb4ebe8ccd788b92b5d64665c0bf2aa15a7ace" }, "downloads": -1, "filename": "djangospam-0.4.0.tar.gz", "has_sig": false, "md5_digest": "d1a9c6f549f0cc174c3eb0c8552a0959", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10089, "upload_time": "2013-03-20T19:06:44", "url": "https://files.pythonhosted.org/packages/e3/70/f806aecb5b6132dd3e1ba074e958c702637e7b9e4c590209dcbf403d42ab/djangospam-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "d419e92a15246f8fa70e997a1513c326", "sha256": "3f2b785cfddffc0fa38c5fadb71be4280b7c24d3d9e3a2eaf00eda4941788a81" }, "downloads": -1, "filename": "djangospam-0.4.1.tar.gz", "has_sig": false, "md5_digest": "d419e92a15246f8fa70e997a1513c326", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10194, "upload_time": "2013-03-20T21:35:57", "url": "https://files.pythonhosted.org/packages/0d/17/4142e64c93848426ebfd6487529a054595078b8102ea946e3d2984ae632e/djangospam-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "5b0e1af1062394355aa601327786882a", "sha256": "6b6f24512e0766d26a8b59be25bcc3954d2f876d88200d513ab8b960339b2270" }, "downloads": -1, "filename": "djangospam-0.4.2.tar.gz", "has_sig": false, "md5_digest": "5b0e1af1062394355aa601327786882a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10273, "upload_time": "2013-03-22T22:27:52", "url": "https://files.pythonhosted.org/packages/e5/2f/3142a637bb9e3dc3c980adf4463cb63a98b050e3b930e8dc6c8fcb7d8bc6/djangospam-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "3af008cd4dcf7d3d007928bc67476f3c", "sha256": "e132336bf13fc4e6ba2a07a1f2d8f49294fa80451942ee4e633824bf4c86803e" }, "downloads": -1, "filename": "djangospam-0.4.3.tar.gz", "has_sig": false, "md5_digest": "3af008cd4dcf7d3d007928bc67476f3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10756, "upload_time": "2013-03-24T01:04:44", "url": "https://files.pythonhosted.org/packages/d2/cc/b376a25f2e9739c394d87cfe541301f1d4d8c6856956f276f1106308141d/djangospam-0.4.3.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "20024561f231d0d590cdf38cfeb95faa", "sha256": "77cf82b76537f71735e74ae7c1e458ebb94f092a2ba34eb899daf3c59f52f592" }, "downloads": -1, "filename": "djangospam-1.0.0.tar.gz", "has_sig": false, "md5_digest": "20024561f231d0d590cdf38cfeb95faa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10860, "upload_time": "2013-04-01T19:58:20", "url": "https://files.pythonhosted.org/packages/50/8b/804ceb0edb8eb1ae10503bcb807b544cdc8efdc6c27f8b10cb73997fdcc8/djangospam-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "d483e592c6682e1877ea25a8aaa03fc1", "sha256": "d7b64db78e98f43288244c56a28218f5532c06715ca5c32d7b4f3b10ac7913f6" }, "downloads": -1, "filename": "djangospam-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d483e592c6682e1877ea25a8aaa03fc1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19223, "upload_time": "2015-01-16T14:06:40", "url": "https://files.pythonhosted.org/packages/03/2e/47e0eb1aa9a0476cdaa554305f1b5f1009df8cc6cdb74935b130121949dc/djangospam-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b009a60b4cd6c52235c4107e3ca1dd14", "sha256": "b9dc1acb2c0d2c25eb2a76853a4aa82168158bfa4a0226bfa11ee98437b361f8" }, "downloads": -1, "filename": "djangospam-1.0.1.zip", "has_sig": false, "md5_digest": "b009a60b4cd6c52235c4107e3ca1dd14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25589, "upload_time": "2015-01-10T13:46:42", "url": "https://files.pythonhosted.org/packages/9d/83/b9cfa4497563d9849d6d4ae138b9bf67b43286b2120777cc5a67cd03ff3b/djangospam-1.0.1.zip" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "5fdec82d5e2da2096286a9a03971332e", "sha256": "f69bc929bc5993c2005d424584389147ce1ddadd67f89c7a0e81395cf1852243" }, "downloads": -1, "filename": "djangospam-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5fdec82d5e2da2096286a9a03971332e", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 19357, "upload_time": "2015-02-05T18:56:51", "url": "https://files.pythonhosted.org/packages/e2/9d/f36f12aec0282fa5f47cfc707099f9654da5a9bbaf2c547e928582c26833/djangospam-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "445e7d5d8295385569cfb7e55c600ead", "sha256": "3090c479ff7d19b70fbaad100aa8b66f8c8d69284b1f80dbd3be064c68b6d1f5" }, "downloads": -1, "filename": "djangospam-1.1.0.zip", "has_sig": false, "md5_digest": "445e7d5d8295385569cfb7e55c600ead", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25853, "upload_time": "2015-02-05T18:56:42", "url": "https://files.pythonhosted.org/packages/8a/5a/7f04a2f1ea2dc3f0adaa294d9b677a657f73efeb491f671ebbf67e3726c0/djangospam-1.1.0.zip" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "43bc86c19d91edd8f262c055e589933f", "sha256": "33ee226e4301617dd1443808c8395da5d396e5f1698053832ecf7be06afb1c53" }, "downloads": -1, "filename": "djangospam-1.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "43bc86c19d91edd8f262c055e589933f", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 19500, "upload_time": "2015-02-05T23:07:06", "url": "https://files.pythonhosted.org/packages/50/a0/6289eb74fe08fc0dd3d770a561a8d844cdba55c9a3e6f8145653f7823699/djangospam-1.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "477fb4a577a941409f21da10b0d1ded8", "sha256": "ee45afdc8af03886d54e59bfa9de9587bf2337bba97bb6d942953c8ba0689e20" }, "downloads": -1, "filename": "djangospam-1.1.1.zip", "has_sig": false, "md5_digest": "477fb4a577a941409f21da10b0d1ded8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26042, "upload_time": "2015-02-05T23:07:02", "url": "https://files.pythonhosted.org/packages/a2/1e/fb6bd68fa3e2ab6c1ea38c3d8ec18864b798cf6f841c3a202df3c86618fe/djangospam-1.1.1.zip" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "55e043826291fd8e91d749146bb77700", "sha256": "7f9a43633e3178c33091ffa24275dfe13933b232043d11a8b3e2a7a326704853" }, "downloads": -1, "filename": "djangospam-1.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "55e043826291fd8e91d749146bb77700", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 19570, "upload_time": "2015-02-08T01:50:22", "url": "https://files.pythonhosted.org/packages/89/81/cdcf14af7b394c0b6a254a9d387e59994ae479a4206ac990a4baec69c651/djangospam-1.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bcabbd15eb3418f752c1437e602f3b54", "sha256": "65152b0515b17f28a0d9c7401354ef8bd0a9f69e01d90adac42f9ccf3c717051" }, "downloads": -1, "filename": "djangospam-1.1.2.zip", "has_sig": false, "md5_digest": "bcabbd15eb3418f752c1437e602f3b54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26154, "upload_time": "2015-02-08T01:50:19", "url": "https://files.pythonhosted.org/packages/5b/bc/985606a533e31bc4f38d0300ff50382aae4149c9ca68d6d14dac691eb1e3/djangospam-1.1.2.zip" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "072c5f19b96ebce8dd3031a9f48b8aa5", "sha256": "ae48b5ca0b25085a3f579a225d5aa2f39339d465aa31fd5c88efbb274614b07f" }, "downloads": -1, "filename": "djangospam-1.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "072c5f19b96ebce8dd3031a9f48b8aa5", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 19661, "upload_time": "2015-02-10T17:34:48", "url": "https://files.pythonhosted.org/packages/61/0d/22a787aa5bfe761ba70a86e45964c35e70ffa86e4f457e2d6b6f8e3ca859/djangospam-1.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "668180c0cb4a5a5f9080e42ad2f25675", "sha256": "5be84497ebfa80307acf9f20b52cac13e6ac8efea9777c8d1b0d3a58ef1f5764" }, "downloads": -1, "filename": "djangospam-1.1.3.zip", "has_sig": false, "md5_digest": "668180c0cb4a5a5f9080e42ad2f25675", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26311, "upload_time": "2015-02-10T17:34:32", "url": "https://files.pythonhosted.org/packages/2b/26/db37b55f97550e24825ae10a7c8363b73ee00ee244226a66a6a4f4664d31/djangospam-1.1.3.zip" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "a502825441c853581e112353e0e590c7", "sha256": "1ccb7ff8cdce19553511b235c18ed19d9eabe6968b1cd192692087373b03df5d" }, "downloads": -1, "filename": "djangospam-1.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a502825441c853581e112353e0e590c7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19763, "upload_time": "2016-10-04T12:57:23", "url": "https://files.pythonhosted.org/packages/74/f8/a571e208412284e4bd722af83d4e94637ad7d57a65177221a8cdee0e3e9b/djangospam-1.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "52763c5207a1b84d41fa0ff72bca33c8", "sha256": "de0c6e4c9fc9b07cb2fab326002b647f37da57a60207bb0fb0b9e22d013d41cd" }, "downloads": -1, "filename": "djangospam-1.1.4.zip", "has_sig": false, "md5_digest": "52763c5207a1b84d41fa0ff72bca33c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26458, "upload_time": "2016-10-04T12:57:26", "url": "https://files.pythonhosted.org/packages/6b/e9/a1fee3cb83c422ddac9a6f89282e173f615378634c07bf5a189b4b130678/djangospam-1.1.4.zip" } ], "1.1.4a0": [ { "comment_text": "", "digests": { "md5": "10881ae2f42532db80bb2e2981b8e19c", "sha256": "fdb0fa0742bb7230df783f8c48c3563d86fd1e48db9f2d6d2153840aa323ce33" }, "downloads": -1, "filename": "djangospam-1.1.4a0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "10881ae2f42532db80bb2e2981b8e19c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19902, "upload_time": "2016-10-18T19:58:30", "url": "https://files.pythonhosted.org/packages/10/12/f16562e41702b33045cba9fab5a70db7fa8f03b1e525a1a7f9bd22ac6e7d/djangospam-1.1.4a0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b37020fb90eb72e8e5c8086fdcce2eec", "sha256": "84364c2796a17ebd99da542372930adc6ae3b0d1aa407fb0e851a2be8700ee01" }, "downloads": -1, "filename": "djangospam-1.1.4a0.zip", "has_sig": false, "md5_digest": "b37020fb90eb72e8e5c8086fdcce2eec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26732, "upload_time": "2016-10-18T19:58:34", "url": "https://files.pythonhosted.org/packages/9c/de/5870fd78df82196d6479ed318b6440cc37653bee28952d6d9d4966f88b72/djangospam-1.1.4a0.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a502825441c853581e112353e0e590c7", "sha256": "1ccb7ff8cdce19553511b235c18ed19d9eabe6968b1cd192692087373b03df5d" }, "downloads": -1, "filename": "djangospam-1.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a502825441c853581e112353e0e590c7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19763, "upload_time": "2016-10-04T12:57:23", "url": "https://files.pythonhosted.org/packages/74/f8/a571e208412284e4bd722af83d4e94637ad7d57a65177221a8cdee0e3e9b/djangospam-1.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "52763c5207a1b84d41fa0ff72bca33c8", "sha256": "de0c6e4c9fc9b07cb2fab326002b647f37da57a60207bb0fb0b9e22d013d41cd" }, "downloads": -1, "filename": "djangospam-1.1.4.zip", "has_sig": false, "md5_digest": "52763c5207a1b84d41fa0ff72bca33c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26458, "upload_time": "2016-10-04T12:57:26", "url": "https://files.pythonhosted.org/packages/6b/e9/a1fee3cb83c422ddac9a6f89282e173f615378634c07bf5a189b4b130678/djangospam-1.1.4.zip" } ] }