Metadata-Version: 2.1
Name: django-multi-captcha-admin
Version: 2.0.0
Summary: easy added captcha to login page of django admin
Home-page: http://github.com/a-roomana/django-multi-captcha-admin
Author: Arman Roomana
Author-email: roomana.arman@gmail.com
License: MIT
Download-URL: https://pypi.python.org/pypi/django-multi-captcha-admin/
Description: # django-multi-captcha-admin
        
        [![PyPi Version](https://img.shields.io/pypi/v/django-multi-captcha-admin.svg)](https://pypi.python.org/pypi/django-multi-captcha-admin)
        [![PyPI - Downloads](https://img.shields.io/pypi/dm/django-multi-captcha-admin.svg)](https://pypistats.org/packages/django-multi-captcha-admin)
        [![GitHub stars](https://img.shields.io/github/stars/a-roomana/django-multi-captcha-admin.svg?style=social)](https://github.com/a-roomana/django-multi-captcha-admin)
        
        Easy added captcha to Django administration login page.
        
        ---
        ## Dependency
        
        To use this module you need to install django and one of the captcha engines, which you can install it with easy_install or pip.
        
        ---
        ## Installation
        
        Install:
        
            pip install django-multi-captcha-admin
        
        if you are using python 2 then install version 1.0.0 (*`pip install django-multi-captcha-admin==1.0.0`*)
        
        
        Add `'multi_captcha_admin'` to your `INSTALLED_APPS` setting before `'django.contrib.admin'` app.
        
        ```python
        INSTALLED_APPS = [
        	...
        	'multi_captcha_admin',
        	'django.contrib.admin',
        	...
        ]
        ```
        
        ### Engines
        
        We support three famous engines to render CAPTCHA. You need to install one of them, then add it to your django project according to their documents.
        
         - [simple-captcha](https://github.com/mbi/django-simple-captcha)
         - [recaptcha](https://github.com/praekelt/django-recaptcha)
         - [recaptcha2](https://github.com/kbytesys/django-recaptcha2)
        
        For more information, please go to the engine site.
        
        Then add the following to your `settings.py` with the name of the installed engine:
        
        ```python
        MULTI_CAPTCHA_ADMIN = {
            'engine': 'recaptcha2',
        }
        ```
        
        ----------
        ## Results
        
        [recaptcha2](https://github.com/kbytesys/django-recaptcha2)
        
        ![captcha of recaptcha2](http://bayanbox.ir/view/2417903076718397977/reCaptcha2.png)
        
        
        [recaptcha](https://github.com/praekelt/django-recaptcha)
        
        ![captcha of recaptcha](http://bayanbox.ir/view/2014387201108001651/reCaptcha.png)
        
        
        [simple captcha](https://github.com/mbi/django-simple-captcha)
        
        ![captcha of recaptcha](http://bayanbox.ir/view/721684099022571779/simple-captcha.png)
        
Keywords: django captcha recaptcha recaptcha2 simple-captcha admin
Platform: any
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3
Description-Content-Type: text/markdown
