captcha (0.7.1)
Published 2026-04-19 20:33:44 +02:00 by eofredj
Installation
pip install --index-url captchaAbout this package
A captcha library that generates audio and image CAPTCHAs.
Captcha
A captcha library that generates audio and image CAPTCHAs.
Features
- Audio CAPTCHAs
- Image CAPTCHAs
Installation
Install captcha with pip::
$ pip install captcha
Usage
Audio and Image CAPTCHAs are in separated modules:
.. code-block:: python
from captcha.audio import AudioCaptcha
from captcha.image import ImageCaptcha
audio = AudioCaptcha(voicedir='/path/to/voices')
image = ImageCaptcha(fonts=['/path/A.ttf', '/path/B.ttf'])
data = audio.generate('1234')
audio.write('1234', 'out.wav')
data = image.generate('1234')
image.write('1234', 'out.png')
This is the APIs for your daily works. We do have built-in voice data and font data. But it is suggested that you use your own voice and font data.
Useful Links
License
Licensed under BSD. Please see LICENSE for licensing details.
Requirements
Requires Python: >=3.8
Details
2026-04-19 20:33:44 +02:00
Assets (1)
Versions (1)
View all
PyPI
28
BSD-3-Clause
144 KiB
captcha-0.7.1-py3-none-any.whl
144 KiB
0.7.1
2026-04-19