Python random image-captcha generator library.
Project description
Python random image-captcha generator library.
Installation
To generate the images of the Captchas, the library uses Pillow module.
For Linux systems, it is necessary to install Pillow prerequisites (also, Pillow and PIL cannot co-exist in the same environment. Before installing Pillow, please uninstall PIL):
$ apt-get install libtiff5-dev libjpeg8-dev zlib1g-dev libfreetype6-dev liblcms2-dev libwebp-dev tcl8.6-dev tk8.6-dev python3-tk
Install the module
$ pip install multicolorcaptcha
Try sample captcha
$ multicolorcaptchademo
Look at the captchas/ folder.
API Usage
from multicolorcaptcha import CaptchaGenerator
# Captcha image size number (2 -> 640x360)
CAPCTHA_SIZE_NUM = 2
# Create Captcha Generator object of specified size
generator = CaptchaGenerator(CAPCTHA_SIZE_NUM)
# Generate a captcha image
captcha = generator.gen_captcha_image(difficult_level=3)
math_captcha = generator.gen_math_captcha_image(difficult_level=2)
# Get information of standard captcha
image = captcha["image"]
characters = captcha["characters"]
# Get information of math captcha
math_image = math_captcha["image"]
math_equation_string = math_captcha["equation_str"]
math_equation_result = math_captcha["equation_result"]
# Save the images to files
image.save("captcha.png", "png")
math_image.save("captcha.png", "png")
Generated Captchas Examples
Monocolor Background Captchas:
Multicolor Background Captchas:
ASCII Captchas:
Modificable Difficult Level Captchas:
Math Equation Captchas:
Project details
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 multicolorcaptcha-1.1.2.tar.gz
.
File metadata
- Download URL: multicolorcaptcha-1.1.2.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/49.6.0 requests-toolbelt/0.8.0 tqdm/4.43.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32d0aa680a1055307fa95455b7fad7554428f8825da7aec57c4a0c05818cf9a0 |
|
MD5 | 7737695014361b13de141bb110b05f38 |
|
BLAKE2b-256 | 51c86e31a5478ea4149804b92e835db86b3b8dfafa039e10b0705efbf644f828 |
File details
Details for the file multicolorcaptcha-1.1.2-py3-none-any.whl
.
File metadata
- Download URL: multicolorcaptcha-1.1.2-py3-none-any.whl
- Upload date:
- Size: 21.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/49.6.0 requests-toolbelt/0.8.0 tqdm/4.43.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 090d6d108f752dc837a203704bc99a8a161b9cdd5756d5423a4d19e4967a2ebb |
|
MD5 | 511d1709b992010c519a4ebf51507e1b |
|
BLAKE2b-256 | 708441c350e88a4dcb203b7c5a1318a883820e540c726dbc461a7f75661c35bb |