METADATA 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. Metadata-Version: 2.1
  2. Name: django-simple-captcha
  3. Version: 0.5.20
  4. Summary: A very simple, yet powerful, Django captcha application
  5. Home-page: https://github.com/mbi/django-simple-captcha
  6. Author: Marco Bonetti
  7. Author-email: mbonetti@gmail.com
  8. License: MIT
  9. Classifier: Development Status :: 4 - Beta
  10. Classifier: Environment :: Web Environment
  11. Classifier: Intended Audience :: Developers
  12. Classifier: License :: OSI Approved :: MIT License
  13. Classifier: Operating System :: OS Independent
  14. Classifier: Programming Language :: Python
  15. Classifier: Programming Language :: Python :: 3.9
  16. Classifier: Programming Language :: Python :: 3.10
  17. Classifier: Programming Language :: Python :: 3.11
  18. Classifier: Topic :: Security
  19. Classifier: Topic :: Internet :: WWW/HTTP
  20. Classifier: Framework :: Django
  21. License-File: LICENSE
  22. Requires-Dist: Django >=3.2
  23. Requires-Dist: Pillow >=6.2.0
  24. Requires-Dist: django-ranged-response ==0.2.0
  25. Provides-Extra: test
  26. Requires-Dist: testfixtures ; extra == 'test'
  27. *********************
  28. Django Simple Captcha
  29. *********************
  30. .. image:: https://github.com/mbi/django-simple-captcha/actions/workflows/test.yml/badge.svg
  31. :target: https://github.com/mbi/django-simple-captcha/actions/workflows/test.yml
  32. .. image:: https://img.shields.io/pypi/v/django-simple-captcha
  33. :target: https://pypi.org/project/django-simple-captcha/
  34. .. image:: https://img.shields.io/pypi/l/django-simple-captcha
  35. :target: https://github.com/mbi/django-simple-captcha/blob/master/LICENSE
  36. Django Simple Captcha is an extremely simple, yet highly customizable Django application to add captcha images to any Django form.
  37. .. image:: http://django-simple-captcha.readthedocs.io/en/latest/_images/captcha3.png
  38. Features
  39. ++++++++
  40. * Very simple to setup and deploy, yet very configurable
  41. * Can use custom challenges (e.g. random chars, simple math, dictionary word, ...)
  42. * Custom generators, noise and filter functions alter the look of the generated image
  43. * Supports text-to-speech audio output of the challenge text, for improved accessibility
  44. * Ajax refresh
  45. Requirements
  46. ++++++++++++
  47. * Django 3.2+, Python3.8+
  48. * A recent version of the Pillow compiled with FreeType support
  49. * Flite is required for text-to-speech (audio) output, but not mandatory
  50. Documentation
  51. +++++++++++++
  52. Read the `documentation online <http://django-simple-captcha.readthedocs.org/en/latest/>`_.