Swarmauri Community Captcha Generator Tool
Project description
Swarmauri Tool Captcha Generator
Tool that generates CAPTCHA images from text using the captcha library. Returns the rendered PNG as a base64-encoded string so it can be stored or embedded inline.
Features
- Accepts a single parameter (
text) and produces an ImageCaptcha output. - Returns a dictionary with
image_b64containing the PNG bytes encoded as base64. - Can be wired into larger Swarmauri toolchains to produce human challenges dynamically.
Prerequisites
- Python 3.10 or newer.
- Pillow and captcha dependencies (installed automatically with this package).
Installation
# pip
pip install swarmauri_tool_captchagenerator
# poetry
poetry add swarmauri_tool_captchagenerator
# uv (pyproject-based projects)
uv add swarmauri_tool_captchagenerator
Quickstart
import base64
from pathlib import Path
from swarmauri_tool_captchagenerator import CaptchaGeneratorTool
captcha_tool = CaptchaGeneratorTool()
result = captcha_tool("Verify42")
image_b64 = result["image_b64"]
image_bytes = base64.b64decode(image_b64)
Path("captcha.png").write_bytes(image_bytes)
Displaying inline (e.g., in a HTML response):
html = f"<img src='data:image/png;base64,{image_b64}' alt='captcha' />"
Tips
- Customize CAPTCHA rendering (fonts, size) by subclassing and configuring
ImageCaptcha(e.g.,ImageCaptcha(width=280, height=90)). - Store the generated solution (
Verify42in the example) securely server-side to validate client responses later. - For high throughput, reuse the tool instance rather than instantiating per request to avoid repeated font loading overhead.
Want to help?
If you want to contribute to swarmauri-sdk, read up on our guidelines for contributing that will help you get started.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file swarmauri_tool_captchagenerator-0.9.3.dev4.tar.gz.
File metadata
- Download URL: swarmauri_tool_captchagenerator-0.9.3.dev4.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.3 {"installer":{"name":"uv","version":"0.10.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdbed410cbe0cd34210383229377d89d1f4a42f59c85c8ce223e28f895631a19
|
|
| MD5 |
ec7fb07e03356cf5009fcee6c4c3eead
|
|
| BLAKE2b-256 |
8401b064744e1fd76077d49a128729558b8046d0bc59c58afa88b1cdb3680669
|
File details
Details for the file swarmauri_tool_captchagenerator-0.9.3.dev4-py3-none-any.whl.
File metadata
- Download URL: swarmauri_tool_captchagenerator-0.9.3.dev4-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.3 {"installer":{"name":"uv","version":"0.10.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ad57063fe827edbca9045124d794ad02b78ffa18a0975aa782e857702f80546
|
|
| MD5 |
b8eb9e82d26070c373ef3cf950ea29f4
|
|
| BLAKE2b-256 |
e234f75410fbe5b4487a067ef6212ec45636d33f14a6f88aeacd927f5704ce14
|