A desktop application built with Python and Tkinter to easily generate and save QR codes.
- User-friendly Tkinter GUI.
- Generate QR codes from URLs.
- Automatic URL validation using
validators. - Real-time QR preview inside the app.
- Option to save QR codes as image files (
.png).
- Python 3
- Tkinter (frontend GUI)
- qrcode (QR code generation)
- Pillow (PIL) (image processing)
- validators (URL validation)
- Clone the repository:
git clone https://github.com/JohnPSCodes/qr_code_generator.git cd qr_code_generator - Install dependencies:
pip install -r requirements.txt - Start the application:
python -m backend.main

