A Python program that generates customizable QR codes using the qrcode library.
Users can:
- Enter any URL
- Choose from multiple color themes
- Save the QR code as a PNG image
QR code themes:
- Classic black & white
Install dependencies:
pip install qrcode[pil]Run the program:
python QR_generator.pyExample interaction:
Welcome to my Python QRCode class wrapper program!
Enter the url of the qrcode you want to generate:
https://example.com
Pick a style(classic, blue, pink, green):
blue
Name the png file you want to save your qr code to:
my_qr
The program will generate:
my_qr.png
- Python
- qrcode
- Pillow (PIL)
- Add more color themes
- GUI version
- Custom QR code sizes
- Add logo/image embedding
- Validate URLs before generation