2023-07-29 10:45:47 +09:00
2023-07-29 10:44:21 +09:00
2023-07-29 10:45:47 +09:00
2023-07-29 10:45:47 +09:00
2014-11-25 18:18:54 +08:00
2023-07-29 08:45:27 +09:00
2023-07-29 10:44:21 +09:00
2023-07-29 09:35:49 +09:00

Captcha

A captcha library that generates audio and image CAPTCHAs.

GitHub Sponsor Build Status PyPI codecov

Install

Install captcha with pip:

pip install captcha

Features

  1. Audio CAPTCHAs
  2. Image CAPTCHAs

Usage

Audio and Image CAPTCHAs are in separated modules:

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.

  1. GitHub: https://github.com/lepture/captcha
  2. Docs: https://captcha.lepture.com/

Demo

Here are some demo results:

  1. Image:

Image

  1. Audio: wav file
Description
A captcha library that generates audio and image CAPTCHAs.
Readme BSD-3-Clause 4 MiB
Languages
Python 100%