Metadata-Version: 1.1
Name: django-x-robots-tag-middleware
Version: 1.3.2
Summary: Enables returning the X-Robots-Tag header based on Django settings.
Home-page: https://github.com/cyface/django-x-robots-tag-middleware
Author: Tim White
Author-email: tim@cyface.com
License: BSD
Description: Django X-Robots-Tag Middleware
        ===============================
        
        [![PyPi Package Version](https://badge.fury.io/py/django-x-robots-tag-middleware.svg)](http://badge.fury.io/py/django-x-robots-tag-middleware)
        
        ![Python package](https://github.com/cyface/django-x-robots-tag-middleware/workflows/Python%20package/badge.svg)
        
        [![codecov](https://codecov.io/gh/cyface/django-x-robots-tag-middleware/branch/master/graph/badge.svg?token=RvtjZ2bngZ)](https://codecov.io/gh/cyface/django-x-robots-tag-middleware)
          
        [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/cyface/django-x-robots-tag-middleware/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/cyface/django-x-robots-tag-middleware/?branch=master)
        
        [![Documentation Status](https://readthedocs.org/projects/django-x-robots-tag-middleware/badge/?version=latest)](http://django-x-robots-tag-middleware.readthedocs.org/en/latest/?badge=latest)
        
        Simple Django middleware to use the ``X-Robots-Tag`` header based on a config param.
        
        Installation
        ------------
        
        From `pypi <https://pypi.python.org>`
        
            $ pip install django-x-robots-tag-middleware
        
        Usage
        -----
        
        1. Add ``'x_robots_middleware.XRobotsMiddleware',`` to your middleware list in settings.py.
        
        2. Add ``X_ROBOTS_TAG = ['noindex','nofollow']`` to your settings.py with the settings you want for the X_ROBOTS_TAG.
        
        Details about the values for the tag and what they do can be found `in the Google Documentation <https://developers.google.com/webmasters/control-crawl-index/docs/robots_meta_tag?hl=en#using-the-x-robots-tag-http-header>`_.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
