Skip to main content

Simple robots.txt app for django

Project description

This is a simple application to create a robots.txt file for django. It has no models at all and you’re supposed to edit a template to update the robots.txt file. I got tired of having to add this view to each and every project because Django doesn’t have a built in text/plain view.

See the robots page for details what the file should look like.

https://api.travis-ci.org/nkuttler/django-robots-txt.png

Usage

Get django-robots-txt into your python path:

pip install django-robots-txt

Create your custom robots.txt file in one of your template directories as robots_txt/robots.txt.

Add a robots.txt view to your root urls.py:

from django.conf.urls.defaults import patterns, include, url
from robots_txt.views import RobotsTextView

urlpatterns = patterns('',
    ...,
    url(r'^robots.txt$', RobotsTextView.as_view()),
    ...,
)

That’s it, your robots.txt template will be served.

This urlconf entry is also supported if you prefer to keep it short:

urlpatterns = patterns('',
    ...,
    url(r'', include('robots_txt.urls')),
    ...,
)

You can add robots_txt to your INSTALLED_APPS in settings.py if you don’t want to create your own template and don’t mind having an empty robots.txt:

INSTALLED_APPS = (
    ...,
    'robots_txt',
    ...,
)

Changes

0.4: - Refactor tests - Updates for Django 1.6

0.3: - Bugfix for included urlconfig

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-robots-txt-0.4.tar.gz (3.5 kB view details)

Uploaded Source

File details

Details for the file django-robots-txt-0.4.tar.gz.

File metadata

File hashes

Hashes for django-robots-txt-0.4.tar.gz
Algorithm Hash digest
SHA256 2f68cd0ec4b0a096d5fb47d49df25436828fa4656f1dafd655a1cfd66d053981
MD5 ef52d4da48c1a9a874adc20595f0f9fe
BLAKE2b-256 6e65ad07618eef777f4735b578d925fa532bc9c94af8a9349a3c08776c740cf7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page