Metadata-Version: 2.1
Name: wheezy.captcha
Version: 0.1
Summary: A lightweight captcha library
Home-page: https://github.com/akornatskyy/wheezy.captcha
Author: Andriy Kornatskyy
Author-email: andriy.kornatskyy@live.com
License: MIT
Keywords: wsgi http captcha
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
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.8
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: pil
Requires-Dist: PIL; extra == "pil"
Provides-Extra: pillow
Requires-Dist: Pillow>=10; extra == "pillow"

# wheezy.captcha

[![Build Status](https://travis-ci.org/akornatskyy/wheezy.captcha.svg?branch=master)](https://travis-ci.org/akornatskyy/wheezy.captcha)
[![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.8+. 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).
