Advanced QR Intelligence
Generate and read QR codes. Use when the user wants to create a QR code from text/URL, or decode/read a QR code from an image file. Supports PNG/JPG output and can read QR codes from screenshots or im
Generate and read QR codes. Use when the user wants to create a QR code from text/URL, or decode/read a QR code from an image file. Supports PNG/JPG output and can read QR codes from screenshots or im
Real data. Real impact.
Growing
Developers
Per week
Open source
Skills give you superpowers. Install in 30 seconds.
Generate QR codes from text/URLs and decode QR codes from images.
Install Python dependencies:
pip install qrcode pillow
pip install pillow pyzbar
On Windows, pyzbar requires Visual C++ Redistributable. On macOS:
brew install zbar
On Linux: apt install libzbar0
python scripts/qr_generate.py "https://example.com" output.png
Options:
--size: Box size in pixels (default: 10)--border: Border size in boxes (default: 4)--error: Error correction level L/M/Q/H (default: M)Example with options:
python scripts/qr_generate.py "Hello World" hello.png --size 15 --border 2
python scripts/qr_read.py image.png
Returns the decoded text/URL from the QR code.
Generate QR for a URL:
import qrcode img = qrcode.make("https://openclaw.ai") img.save("openclaw.png")
Read QR from image:
from pyzbar.pyzbar import decode from PIL import Image data = decode(Image.open("qr.png")) print(data[0].data.decode())
scripts/qr_generate.py - Generate QR codes with customization optionsscripts/qr_read.py - Decode QR codes from image filesNo automatic installation available. Please visit the source repository for installation instructions.
View Installation Instructions1,500+ AI skills, agents & workflows. Install in 30 seconds. Part of the Torly.ai family.
© 2026 Torly.ai. All rights reserved.