معرفی شرکت ها


django-math-captcha-0.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Simple, secure math captcha for django forms
ویژگی مقدار
سیستم عامل -
نام فایل django-math-captcha-0.1
نام django-math-captcha
نسخه کتابخانه 0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Justin Quick
ایمیل نویسنده justquick@gmail.com
آدرس صفحه اصلی http://github.com/justquick/django-math-captcha
آدرس اینترنتی https://pypi.org/project/django-math-captcha/
مجوز UNKNOWN
Simple Math Captcha ========================= :Authors: Justin Quick <justquick@gmail.com> :Version: 0.1 Django Math Captcha is an easy way to add mathematical captcha verification to your already existing forms. It asks you a simple math question (eg ``'1 + 2 ='``) and validates the form if your response is correct. All you have to do is subclass either ``MathCaptchaForm`` or ``MathCaptchaModelForm`` in your own forms. Use it in your forms:: from math_captcha import MathCaptchaModelForm from myapp.models import Blog class MyExistingForm(MathCaptchaModelForm): # instead of forms.ModelForm #... extra fields here class Meta: model = Blog Now you can be certain that the only users who create blogs are humans Check out the example project for more practical use and tests. Settings --------- Set the behavior of the math captcha interaction in your settings.py ``MATH_CAPTCHA_NUMBERS`` A list of numbers to randomly choose from when generating the questions. Defaults to ``[1,2,3,4,5]``. ``MATH_CAPTCHA_OPERATORS`` List of mathematical operators to use. Default is only add (``+``) and subtract (``-``). Available operators are: add (``+``), subtract (``-``), multiply (``*``), divide (``/``), and modulo (``%``) ``MATH_CAPTCHA_QUESTION`` Question that appears on forms as a label for math questions. By default it is ``'Are you human?'``


نحوه نصب


نصب پکیج whl django-math-captcha-0.1:

    pip install django-math-captcha-0.1.whl


نصب پکیج tar.gz django-math-captcha-0.1:

    pip install django-math-captcha-0.1.tar.gz