A captcha library that generates audio and image CAPTCHAs.
Project description
A captcha library that generates audio and image CAPTCHAs.
Features
Audio CAPTCHAs DEMO
Image CAPTCHAs
Installation
Install captcha with pip:
$ pip install captcha
Usage
Audio and Image CAPTCHAs are in seprated modules:
from io import BytesIO
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')
assert isinstance(data, bytearray)
audio.write('1234', 'out.wav')
data = image.generate('1234')
assert isinstance(data, BytesIO)
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.
Contribution
We need voice wav files. The voice wav file should be in 8-bit, please keep it as small as possible. Name your voice file as:
{{language}}-{{character}}-{{username}}.wav # exmaple: zh-1-lepture.wav
TODO: we need a place to upload voice files.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file captcha-0.2.tar.gz
.
File metadata
- Download URL: captcha-0.2.tar.gz
- Upload date:
- Size: 100.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47cf7d42c04dd77bea220e2d783d23f5bf8c8c4845b5079b748dbaf738c97809 |
|
MD5 | 5fc54f7d0f4fa5466d72194b0f570af7 |
|
BLAKE2b-256 | d33b388abc409e5ac9d73e71e97b74114f8f780188535cc2304633c448f08b67 |
File details
Details for the file captcha-0.2-py2.py3-none-any.whl
.
File metadata
- Download URL: captcha-0.2-py2.py3-none-any.whl
- Upload date:
- Size: 102.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79ec9de77840d447897ef702318e1dd5f4eeec44e92613e31fa53a17a31c8df1 |
|
MD5 | b228e395a5722810ae8a554dab70f06b |
|
BLAKE2b-256 | 07de48dbd1576d11aaf213eb48f6cd1d8cdab4d06b6da50e7dd2c1e5ac78e803 |