{ "info": { "author": "Jannis Leidel", "author_email": "jannis@leidel.info", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 1.11", "Framework :: Django :: 2.0", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development", "Topic :: Software Development :: Libraries :: Application Frameworks" ], "description": "=======================================\nRobots exclusion application for Django\n=======================================\n\n.. include:: ../README.rst\n\nContents:\n\n.. toctree::\n :maxdepth: 2\n\n history\n\n\nInstallation\n============\n\nUse your favorite Python installer to install it from PyPI::\n\n pip install django-robots\n\nOr get the source from the application site at::\n\n http://github.com/jazzband/django-robots/\n\nTo install the sitemap app, then follow these steps:\n\n1. Add ``'robots'`` to your INSTALLED_APPS_ setting.\n2. Make sure ``'django.template.loaders.app_directories.Loader'``\n is in your TEMPLATES setting. It's in there by default, so\n you'll only need to change this if you've changed that setting.\n3. Make sure you've installed the `sites framework`_.\n4. Run the ``migrate`` management command\n\n.. _INSTALLED_APPS: http://docs.djangoproject.com/en/dev/ref/settings/#installed-apps\n.. _TEMPLATES: https://docs.djangoproject.com/en/dev/ref/settings/#templates\n.. _sites framework: http://docs.djangoproject.com/en/dev/ref/contrib/sites/\n\nSitemaps\n--------\n\nBy default a ``Sitemap`` statement is automatically added to the resulting\nrobots.txt by reverse matching the URL of the installed `Sitemap contrib app`_.\nThis is especially useful if you allow every robot to access your whole site,\nsince it then gets URLs explicitly instead of searching every link.\n\nTo change the default behaviour to omit the inclusion of a sitemap link,\nchange the ``ROBOTS_USE_SITEMAP`` setting in your Django settings file to::\n\n ROBOTS_USE_SITEMAP = False\n\nIn case you want to use specific sitemap URLs instead of the one that is\nautomatically discovered, change the ``ROBOTS_SITEMAP_URLS`` setting to::\n\n ROBOTS_SITEMAP_URLS = [\n 'http://www.example.com/sitemap.xml',\n ]\n\nIf the sitemap is wrapped in a decorator, dotted path reverse to discover\nthe sitemap URL does not work.\nTo overcome this, provide a name to the sitemap instance in ``urls.py``::\n\n urlpatterns = [\n ...\n url(r'^sitemap.xml$', cache_page(60)(sitemap_view), {'sitemaps': [...]}, name='cached-sitemap'),\n ...\n ]\n\nand inform django-robots about the view name by adding the followin setting::\n\n ROBOTS_SITEMAP_VIEW_NAME = 'cached-sitemap'\n\n\n.. _Sitemap contrib app: http://docs.djangoproject.com/en/dev/ref/contrib/sitemaps/\n\nUse ``ROBOTS_SITEMAP_VIEW_NAME`` also if you use custom sitemap views (e.g.: wagtail custom sitemaps).\n\nInitialization\n==============\n\nTo activate robots.txt generation on your Django site, add this line to your\nURLconf_::\n\n url(r'^robots\\.txt', include('robots.urls')),\n\nThis tells Django to build a robots.txt when a robot accesses ``/robots.txt``.\nThen, please sync your database to create the necessary tables and create\n``Rule`` objects in the admin interface or via the shell.\n\n.. _URLconf: http://docs.djangoproject.com/en/dev/topics/http/urls/\n.. _sync your database: http://docs.djangoproject.com/en/dev/ref/django-admin/#syncdb\n\nRules\n=====\n\n``Rule`` - defines an abstract rule which is used to respond to crawling web\nrobots, using the `robots exclusion protocol`_, a.k.a. robots.txt.\n\nYou can link multiple URL pattern to allows or disallows the robot identified\nby its user agent to access the given URLs.\n\nThe crawl delay field is supported by some search engines and defines the\ndelay between successive crawler accesses in seconds. If the crawler rate is a\nproblem for your server, you can set the delay up to 5 or 10 or a comfortable\nvalue for your server, but it's suggested to start with small values (0.5-1),\nand increase as needed to an acceptable value for your server. Larger delay\nvalues add more delay between successive crawl accesses and decrease the\nmaximum crawl rate to your web server.\n\nThe `sites framework`_ is used to enable multiple robots.txt per Django instance.\nIf no rule exists it automatically allows every web robot access to every URL.\n\nPlease have a look at the `database of web robots`_ for a full list of\nexisting web robots user agent strings.\n\n.. _robots exclusion protocol: http://en.wikipedia.org/wiki/Robots_exclusion_standard\n.. _'sites' framework: http://www.djangoproject.com/documentation/sites/\n.. _database of web robots: http://www.robotstxt.org/db.html\n\nHost directive\n==============\nBy default a ``Host`` statement is automatically added to the resulting\nrobots.txt to avoid mirrors and select the main website properly.\n\nTo change the default behaviour to omit the inclusion of host directive,\nchange the ``ROBOTS_USE_HOST`` setting in your Django settings file to::\n\n ROBOTS_USE_HOST = False\n\nif you want to prefix the domain with the current request protocol\n(**http** or **https** as in ``Host: https://www.mysite.com``) add this setting::\n\n ROBOTS_USE_SCHEME_IN_HOST = True\n\nURLs\n====\n\n``Url`` - defines a case-sensitive and exact URL pattern which is used to\nallow or disallow the access for web robots. Case-sensitive.\n\nA missing trailing slash does also match files which start with the name of\nthe given pattern, e.g., ``'/admin'`` matches ``/admin.html`` too.\n\nSome major search engines allow an asterisk (``*``) as a wildcard to match any\nsequence of characters and a dollar sign (``$``) to match the end of the URL,\ne.g., ``'/*.jpg$'`` can be used to match all jpeg files.\n\nCaching\n=======\n\nYou can optionally cache the generation of the ``robots.txt``. Add or change\nthe ``ROBOTS_CACHE_TIMEOUT`` setting with a value in seconds in your Django\nsettings file::\n\n ROBOTS_CACHE_TIMEOUT = 60*60*24\n\nThis tells Django to cache the ``robots.txt`` for 24 hours (86400 seconds).\nThe default value is ``None`` (no caching).\n\nBugs and feature requests\n=========================\n\nAs always your mileage may vary, so please don't hesitate to send feature\nrequests and bug reports:\n\n https://github.com/jazzband/django-robots/issues\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/jazzband/django-robots/", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "django-robots", "package_url": "https://pypi.org/project/django-robots/", "platform": "", "project_url": "https://pypi.org/project/django-robots/", "project_urls": { "Homepage": "https://github.com/jazzband/django-robots/" }, "release_url": "https://pypi.org/project/django-robots/3.1.0/", "requires_dist": null, "requires_python": "", "summary": "Robots exclusion application for Django, complementing Sitemaps.", "version": "3.1.0" }, "last_serial": 4074163, "releases": { "0.5.1": [], "0.5.2": [ { "comment_text": "", "digests": { "md5": "f69eb6a3281eaf9abe4eefeaf3cd57f0", "sha256": "fdec7aef7809dcd00c424c12bf64a9ee16e8ef8ddbebc36d63c295a6420e48ea" }, "downloads": -1, "filename": "django-robots-0.5.2.tar.gz", "has_sig": false, "md5_digest": "f69eb6a3281eaf9abe4eefeaf3cd57f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11187, "upload_time": "2008-09-07T22:17:12", "url": "https://files.pythonhosted.org/packages/66/17/45e0752489277f21cf04138e5c04620e9f727f5a237b16ad9acc2c4f31bf/django-robots-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "e9466291ffd4501143b9aeda6d2667e1", "sha256": "e0922b65050851ba99c34479dbe8ab024dbffcda23f02b2afbac88ba30cd28a8" }, "downloads": -1, "filename": "django-robots-0.5.3.tar.gz", "has_sig": false, "md5_digest": "e9466291ffd4501143b9aeda6d2667e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11140, "upload_time": "2008-10-04T10:03:40", "url": "https://files.pythonhosted.org/packages/b8/d3/3436356b925da5d51651dfa61b906fc32df66fcd7e75c813902555cf5317/django-robots-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "287ab7c6b9402d336adc24f9f87749bf", "sha256": "a4240827371ad3a07689836a6cd27bdf4047db09f448ae4d9e46f2b3415754d4" }, "downloads": -1, "filename": "django-robots-0.5.4.tar.gz", "has_sig": true, "md5_digest": "287ab7c6b9402d336adc24f9f87749bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10568, "upload_time": "2009-01-20T10:11:09", "url": "https://files.pythonhosted.org/packages/07/59/701b1e77fba4501893119d85e3a9eedd364f3f6bf1725f721d3a2a70e645/django-robots-0.5.4.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "e6ca50238b312f416de7a9ec65ce5a21", "sha256": "511f5ee7cc99182c737e684e4920cdd1a82d9205865fd7dd4ffd59a5802d262e" }, "downloads": -1, "filename": "django-robots-0.6.0.tar.gz", "has_sig": true, "md5_digest": "e6ca50238b312f416de7a9ec65ce5a21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11134, "upload_time": "2009-03-01T01:52:16", "url": "https://files.pythonhosted.org/packages/0d/2b/5e7159ed2b20d8b35e5fcb142c2cf85807b61d8e5083f9e3a5b6c5c5a5dc/django-robots-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "df07dd300acae34956ba407269c46f33", "sha256": "3945b08299c6ba87524fc7348201da1f091a66b41f2c6aa0fcdad194197ef45f" }, "downloads": -1, "filename": "django-robots-0.6.1.tar.gz", "has_sig": true, "md5_digest": "df07dd300acae34956ba407269c46f33", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10194, "upload_time": "2009-05-28T16:29:37", "url": "https://files.pythonhosted.org/packages/9b/1f/32bf98bb3d1ba04935f0be5c147b9990631cc1d940c8b4583c028e5afe00/django-robots-0.6.1.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "a1a56150106313bdeabe17db10393d1f", "sha256": "6bfe327eb682e1825c73a2135cfff604bbfce437fac561f519c29aa843b70fbb" }, "downloads": -1, "filename": "django-robots-0.7.0.tar.gz", "has_sig": true, "md5_digest": "a1a56150106313bdeabe17db10393d1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14151, "upload_time": "2010-05-07T14:40:11", "url": "https://files.pythonhosted.org/packages/44/e2/df814834809610c07a8f7b00ac456b656e1b341374f0a8165da1fca44fcb/django-robots-0.7.0.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "0e4d9bed5d9070173e25df1f6d0dc867", "sha256": "7142f599b40d3d9ca6e89f7f0b108990358714acbe1d52c479b181eab9dddff5" }, "downloads": -1, "filename": "django-robots-0.8.0.tar.gz", "has_sig": true, "md5_digest": "0e4d9bed5d9070173e25df1f6d0dc867", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14466, "upload_time": "2010-06-26T14:54:32", "url": "https://files.pythonhosted.org/packages/3c/fd/08f88c7a1cd6b7dc769875a50667fdc94713e84a19c1213a31ad5fa76360/django-robots-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "fce5ea55c3803a0648b21080ab432e32", "sha256": "c98f69b04a6afab76e06a186ca38182e714936b1bdd915e42d11aaa8e3e258c4" }, "downloads": -1, "filename": "django-robots-0.8.1.tar.gz", "has_sig": true, "md5_digest": "fce5ea55c3803a0648b21080ab432e32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15035, "upload_time": "2011-12-07T14:22:51", "url": "https://files.pythonhosted.org/packages/3e/ce/d3c037502fb657fb968efc880cce591b80180b5f03acf1ceda567e6cc153/django-robots-0.8.1.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "8e57765188713ba99e424a10df303d04", "sha256": "fc454bb0b59de0e9990d82adf126488e331bbae0cea2a739be87adf9df3df607" }, "downloads": -1, "filename": "django-robots-0.9.tar.gz", "has_sig": true, "md5_digest": "8e57765188713ba99e424a10df303d04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22277, "upload_time": "2012-11-21T11:05:24", "url": "https://files.pythonhosted.org/packages/ae/18/647424f9ae104a8805e9976ba27475224324973c2057073942af473dfefc/django-robots-0.9.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "5b0e7ebf3a083eecfab8ea0d309b47c9", "sha256": "eb49b5a0636a606c15b68fceeb235af64c588a44c735d1ab5bbafc2bb3a57a86" }, "downloads": -1, "filename": "django-robots-0.9.1.tar.gz", "has_sig": true, "md5_digest": "5b0e7ebf3a083eecfab8ea0d309b47c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22363, "upload_time": "2012-11-23T11:50:59", "url": "https://files.pythonhosted.org/packages/40/88/1da1684a45a5a872f4e262996e47015c0d0916b880e1d741eb941fc66ce4/django-robots-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "17e18a6439c59cf6fd50f7f16c055bb3", "sha256": "db88d6d861e6c58bed349b1ff80ce766596a0aed3f8271f6add5f5b2473b9474" }, "downloads": -1, "filename": "django-robots-0.9.2.tar.gz", "has_sig": true, "md5_digest": "17e18a6439c59cf6fd50f7f16c055bb3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22429, "upload_time": "2013-03-24T20:05:31", "url": "https://files.pythonhosted.org/packages/5a/29/6cba0d4b1d88e4c84b7782fe41555983a82062de02e104e6a31033e5eebc/django-robots-0.9.2.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "c100070eb44d31ab94f215c0470f060f", "sha256": "0ccb2ef0f168c87464609fdea3256f3b8a5641c1eef28c5ad48482c86eb7e8be" }, "downloads": -1, "filename": "django-robots-1.0.tar.gz", "has_sig": true, "md5_digest": "c100070eb44d31ab94f215c0470f060f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27488, "upload_time": "2014-01-16T11:45:12", "url": "https://files.pythonhosted.org/packages/62/90/1af95f0bfdd04fa0e6b1e98b416009f3be3716f410ecc31e73ba5c1c2d3c/django-robots-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "ea7bcdc78ac6994f4aae3c70663240af", "sha256": "11b7ace22d6905513d13d70330c09d674c6883c2fe49af1e8cafec2e0529bfe4" }, "downloads": -1, "filename": "django_robots-1.1-py2-none-any.whl", "has_sig": true, "md5_digest": "ea7bcdc78ac6994f4aae3c70663240af", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 58741, "upload_time": "2015-05-12T11:13:30", "url": "https://files.pythonhosted.org/packages/61/b0/b293ed5f0e3489be039e31c5fdea262517147250585a125b9be989cb53df/django_robots-1.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "534d25defea122cf9eb262fde5a608d8", "sha256": "cdb541184ed2d50f2e885b755635c94825e1d48bbb78fd37405f31878300d49e" }, "downloads": -1, "filename": "django-robots-1.1.tar.gz", "has_sig": true, "md5_digest": "534d25defea122cf9eb262fde5a608d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28570, "upload_time": "2015-05-12T11:13:26", "url": "https://files.pythonhosted.org/packages/3f/86/06df61c727c77b0616a93bdeace1825b56b9bb938d8096a1d2a571be678c/django-robots-1.1.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "3d48997e6e6c90276e343388bf3218d5", "sha256": "7786cc4aec179232feb4fba9409f2cd874377014ea0372f889e463a767ac384b" }, "downloads": -1, "filename": "django_robots-2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3d48997e6e6c90276e343388bf3218d5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 67003, "upload_time": "2016-02-28T08:35:24", "url": "https://files.pythonhosted.org/packages/0e/17/2bf2cb42048037d4a1503e43255472efe294573ead70f337cab946b11e39/django_robots-2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "18cdb2bddac8b69e6b99bacc5d1b89d3", "sha256": "7757380507eeaf53453154f43c05d0ccd5b41576f3df8db9c353bc281bf0a457" }, "downloads": -1, "filename": "django-robots-2.0.tar.gz", "has_sig": false, "md5_digest": "18cdb2bddac8b69e6b99bacc5d1b89d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33894, "upload_time": "2016-02-28T08:35:30", "url": "https://files.pythonhosted.org/packages/05/c0/f9b52a9353c3e7ab668e07c56b365995dc832595e9b95f0321f3f2bd2792/django-robots-2.0.tar.gz" } ], "2.0rc1": [ { "comment_text": "", "digests": { "md5": "bd431a647b587279feb4a326544f59e4", "sha256": "0c8b7282a9b6830adef768d11d6dd8b76cd57f4b5caa8f8bd32f01c98d57b5b8" }, "downloads": -1, "filename": "django-robots-2.0rc1.tar.gz", "has_sig": false, "md5_digest": "bd431a647b587279feb4a326544f59e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33887, "upload_time": "2016-02-06T19:58:51", "url": "https://files.pythonhosted.org/packages/1b/4b/887c67d6ec4cf46692b87dabad15e42a78d71d35fe50e0cde7d0510fe181/django-robots-2.0rc1.tar.gz" } ], "2.0rc2": [ { "comment_text": "", "digests": { "md5": "0d3990dc8833ff1e8848c5eb8490f585", "sha256": "493c942e6967f59422682663a0837accf8ee3259933a7d075cda63aa7126480b" }, "downloads": -1, "filename": "django_robots-2.0rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0d3990dc8833ff1e8848c5eb8490f585", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 65540, "upload_time": "2016-02-06T20:38:51", "url": "https://files.pythonhosted.org/packages/3d/c1/3502a2bf6340731f2f48c3cf236fa43b67950265fb19239b57179310acb9/django_robots-2.0rc2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9152d5e8bddbe1aae76a0fae7cadcd1e", "sha256": "fe310a2d6d8524b98be9a2043f85ff0773dd8e75c1126010f6442408a4877b89" }, "downloads": -1, "filename": "django-robots-2.0rc2.tar.gz", "has_sig": false, "md5_digest": "9152d5e8bddbe1aae76a0fae7cadcd1e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32213, "upload_time": "2016-02-06T20:38:57", "url": "https://files.pythonhosted.org/packages/a6/51/5c2a4989d88e02df4266ecc4a2bc8bd933e8f21ebc85e03857b4442bd5a6/django-robots-2.0rc2.tar.gz" } ], "2.0rc3": [ { "comment_text": "", "digests": { "md5": "28bcc7985d80a1a8aeaa6c2703375ed6", "sha256": "904281af033e5fced3901f7ae0bb3389eb74f28027179087df4e796214eca3e7" }, "downloads": -1, "filename": "django_robots-2.0rc3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "28bcc7985d80a1a8aeaa6c2703375ed6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 65533, "upload_time": "2016-02-06T21:29:44", "url": "https://files.pythonhosted.org/packages/d9/ff/8aeb5c0b631787c1961fded1f1e0cefc5653f5c52cfe6399b99ede031bf8/django_robots-2.0rc3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b83534a8b57b84a3f4c7b57c6dada367", "sha256": "70eb702e54f727c1c11d3f992aacf7e95ee4a97ca7944f21b172f0f8585f11a8" }, "downloads": -1, "filename": "django-robots-2.0rc3.tar.gz", "has_sig": false, "md5_digest": "b83534a8b57b84a3f4c7b57c6dada367", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32299, "upload_time": "2016-02-06T21:29:49", "url": "https://files.pythonhosted.org/packages/97/64/11d89cacac2904e8fae289fc379fd82518830f106add8edb49ac4d98ff5c/django-robots-2.0rc3.tar.gz" } ], "2.0rc4": [ { "comment_text": "", "digests": { "md5": "283c5fc19940d4e56e00eb0a2264ece0", "sha256": "ba5259d4aef4609bc8df6a677fff35e3afe18bc8da85ee8792ae8ab933324611" }, "downloads": -1, "filename": "django_robots-2.0rc4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "283c5fc19940d4e56e00eb0a2264ece0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 67052, "upload_time": "2016-02-06T21:35:25", "url": "https://files.pythonhosted.org/packages/e3/6e/cbbdd8f128411de7085eb9fabfd2932a14c0bc88b8ed5fdf7cee716cf877/django_robots-2.0rc4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "197b58a0b59e7d41b325f6a28b3b75b0", "sha256": "f461715f9b37ff27c885d5b286d03ecaa337c8bc81cd5ff19a44f0c1059e217d" }, "downloads": -1, "filename": "django-robots-2.0rc4.tar.gz", "has_sig": false, "md5_digest": "197b58a0b59e7d41b325f6a28b3b75b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33890, "upload_time": "2016-02-06T21:35:32", "url": "https://files.pythonhosted.org/packages/1d/c1/87eecfa92a71109c1472f91ddfa22ce552e4cee2158d406d4747d5fbdec2/django-robots-2.0rc4.tar.gz" } ], "3.0": [ { "comment_text": "", "digests": { "md5": "dc01e800da0dc6c00f2e28e968ca963e", "sha256": "163b977d84b611f40b978f6719ddd7a3d9893e676d4ff6c14a87a4f7e9ef7c86" }, "downloads": -1, "filename": "django_robots-3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dc01e800da0dc6c00f2e28e968ca963e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 68373, "upload_time": "2017-03-04T10:27:18", "url": "https://files.pythonhosted.org/packages/da/a6/bf8d1746233991e4517a1af7eab3893781704297ee475357f7559b4674bc/django_robots-3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a75d9cf8c6eff63fa93cdb99dd5c64e6", "sha256": "91ab9c99c045bc25420c301676cb16668c3866ca763a77d1c740a74ca7e6b120" }, "downloads": -1, "filename": "django-robots-3.0.tar.gz", "has_sig": false, "md5_digest": "a75d9cf8c6eff63fa93cdb99dd5c64e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36411, "upload_time": "2017-03-04T10:27:21", "url": "https://files.pythonhosted.org/packages/83/93/6ab7e26c28b6ac2e0e0b0cb53ddfee1306306e9494bc2a38295fe2c1939f/django-robots-3.0.tar.gz" } ], "3.0rc1": [ { "comment_text": "", "digests": { "md5": "7dc957d18beb990007612f03e01de95d", "sha256": "f1fb37fbf5ca436823c5e16a90f31f3754ab9eb7210eea8c935cadc936e8e19d" }, "downloads": -1, "filename": "django_robots-3.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7dc957d18beb990007612f03e01de95d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 68376, "upload_time": "2017-02-26T18:33:55", "url": "https://files.pythonhosted.org/packages/c8/23/1ae207e880eebd2296cc3ee7ac5096d02fc6897b8afb99592ffcba8fffc6/django_robots-3.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "67071a71440df265ece7c7408f911161", "sha256": "a4507a9ecff9618f0243aa96a3a9cb31af2c4bef48bc03bc3a503b233048a502" }, "downloads": -1, "filename": "django-robots-3.0rc1.tar.gz", "has_sig": false, "md5_digest": "67071a71440df265ece7c7408f911161", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36354, "upload_time": "2017-02-26T18:33:57", "url": "https://files.pythonhosted.org/packages/03/2b/695495662030ea1026abc8982b89a106d11124468b05afa148d088312e14/django-robots-3.0rc1.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "49a9c30fbba6c8b0f6052a2391a0f3f1", "sha256": "ec70cf2d60f6c105cfbdbe2686cdea5f13897bb772c76e4002bee26e2ae23eb1" }, "downloads": -1, "filename": "django_robots-3.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "49a9c30fbba6c8b0f6052a2391a0f3f1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 62955, "upload_time": "2018-07-17T15:29:32", "url": "https://files.pythonhosted.org/packages/35/85/578c9ed598b351067e56d2afcebd35c47750ab1ab29de6e4b941a6582052/django_robots-3.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c1ae3ebae4d030240624e589bcaba0b8", "sha256": "59baa054fc38751f1d6a38e873e0a7e431b646b5ee757534544da05c3873a213" }, "downloads": -1, "filename": "django-robots-3.1.0.tar.gz", "has_sig": false, "md5_digest": "c1ae3ebae4d030240624e589bcaba0b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33231, "upload_time": "2018-07-17T15:30:00", "url": "https://files.pythonhosted.org/packages/21/a4/580ddce39e4606f4dc3cfcc1a299481611379a06a09dbce9906b27a89e8b/django-robots-3.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "49a9c30fbba6c8b0f6052a2391a0f3f1", "sha256": "ec70cf2d60f6c105cfbdbe2686cdea5f13897bb772c76e4002bee26e2ae23eb1" }, "downloads": -1, "filename": "django_robots-3.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "49a9c30fbba6c8b0f6052a2391a0f3f1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 62955, "upload_time": "2018-07-17T15:29:32", "url": "https://files.pythonhosted.org/packages/35/85/578c9ed598b351067e56d2afcebd35c47750ab1ab29de6e4b941a6582052/django_robots-3.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c1ae3ebae4d030240624e589bcaba0b8", "sha256": "59baa054fc38751f1d6a38e873e0a7e431b646b5ee757534544da05c3873a213" }, "downloads": -1, "filename": "django-robots-3.1.0.tar.gz", "has_sig": false, "md5_digest": "c1ae3ebae4d030240624e589bcaba0b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33231, "upload_time": "2018-07-17T15:30:00", "url": "https://files.pythonhosted.org/packages/21/a4/580ddce39e4606f4dc3cfcc1a299481611379a06a09dbce9906b27a89e8b/django-robots-3.1.0.tar.gz" } ] }