Metadata-Version: 2.4
Name: wheezy.captcha
Version: 3.2.2
Summary: A lightweight captcha library
Author-email: Andriy Kornatskyy <andriy.kornatskyy@live.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/akornatskyy/wheezy.captcha
Project-URL: Source, https://github.com/akornatskyy/wheezy.captcha
Project-URL: Issues, https://github.com/akornatskyy/wheezy.captcha/issues
Keywords: wsgi,http,captcha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: cython
Requires-Dist: Cython>=3.0; extra == "cython"
Requires-Dist: setuptools>=61.0; extra == "cython"
Provides-Extra: pil
Requires-Dist: PIL; extra == "pil"
Provides-Extra: pillow
Requires-Dist: Pillow>=10; extra == "pillow"
Dynamic: license-file

# wheezy.captcha

[![tests](https://github.com/akornatskyy/wheezy.captcha/actions/workflows/tests.yml/badge.svg)](https://github.com/akornatskyy/wheezy.captcha/actions/workflows/tests.yml)
[![Coverage Status](https://coveralls.io/repos/github/akornatskyy/wheezy.captcha/badge.svg?branch=master)](https://coveralls.io/github/akornatskyy/wheezy.captcha?branch=master)
[![Documentation Status](https://readthedocs.org/projects/wheezycaptcha/badge/?version=latest)](https://wheezycaptcha.readthedocs.io/en/latest/?badge=latest)
[![pypi version](https://badge.fury.io/py/wheezy.captcha.svg)](https://badge.fury.io/py/wheezy.captcha)

[wheezy.captcha](https://pypi.org/project/wheezy.captcha/) is a
[python](http://www.python.org) package written in pure Python code. It
is a lightweight captcha library that provides integration with (one of
below must be installed):

- [PIL](http://www.pythonware.com/products/pil/) - Python Imaging
  Library 1.1.7.
- [Pillow](https://pypi.python.org/pypi/Pillow) - Python Imaging
  Library (fork).

It is optimized for performance, well tested and documented.

Resources:

- [source code](https://github.com/akornatskyy/wheezy.captcha),
  [examples](https://github.com/akornatskyy/wheezy.captcha/tree/master/demos)
  and [issues](https://github.com/akornatskyy/wheezy.captcha/issues)
  tracker are available on
  [github](https://github.com/akornatskyy/wheezy.captcha)
- [documentation](https://wheezycaptcha.readthedocs.io/en/latest/)

## Install

[wheezy.captcha](https://pypi.org/project/wheezy.captcha/) requires
[python](http://www.python.org) version 3.10+. It is independent of operating
system. You can install it from
[pypi](https://pypi.org/project/wheezy.captcha/) site (you need specify
extra requirements per imaging library of your choice):

```sh
pip install wheezy.captcha
pip install wheezy.captcha[PIL]
pip install wheezy.captcha[Pillow]
```

If you run into any issue or have comments, go ahead and add on
[github](https://github.com/akornatskyy/wheezy.captcha).
