Python random image-captcha generator library.
Project description
multicolorcaptcha
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):
sudo 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
pip3 install multicolorcaptcha
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
multicolorcaptcha-1.2.0.tar.gz
(10.4 MB
view details)
Built Distribution
File details
Details for the file multicolorcaptcha-1.2.0.tar.gz
.
File metadata
- Download URL: multicolorcaptcha-1.2.0.tar.gz
- Upload date:
- Size: 10.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85e8408944c57d5084e10f1760dab72118fe9786614007d4204101d5091a12d9 |
|
MD5 | 15f6f89989e970c2a5ba4def5645c90e |
|
BLAKE2b-256 | 2e977b47adde8e6074b6020454dea3f44b9ad21e4d2a3272de7fb4e431089257 |
File details
Details for the file multicolorcaptcha-1.2.0-py3-none-any.whl
.
File metadata
- Download URL: multicolorcaptcha-1.2.0-py3-none-any.whl
- Upload date:
- Size: 10.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa6cc16078de4caadfd7eea8bdf705c0cd7635aa8ca2329c6490b9461679bc7a |
|
MD5 | f93eeca1d3a67a041554cd789f59d3d0 |
|
BLAKE2b-256 | 4851d9ad5bb55773002eb073f1267c3af23d6a874ebb7c7c9bf29720829224a7 |