QR Code Generator is a simple Python application that allows you to generate QR codes for different types of data and save them as PNG files.
- Generate QR codes for text, URLs, contact information, etc.
- Save QR codes as PNG files.
- Simple and easy-to-use GUI interface.
- Python 3.6 or higher
qrcode
library: You can install it usingpip install qrcode
tkinter
library (usually comes pre-installed with Python)pyinstaller
library (optional for creating standalone executable): You can install it usingpip install pyinstaller
- Make sure you have Python and the required libraries installed.
- Run the
QRGenerator.py
script. - Enter the text or data for which you want to generate a QR code in the entry box.
- Click on the "Generate QR Code" button.
- Choose a location and filename to save the generated QR code as a PNG file.
If you want to create a standalone executable without the console window, you can use pyinstaller
:
- Install
pyinstaller
usingpip install pyinstaller
if you haven't already. - Open a terminal or command prompt in the directory containing
QRGenerator.py
. - Run the command:
pyinstaller --noconsole QRGenerator.py
- The standalone executable will be created in the
dist
directory.
This project is licensed under the MIT License.
HAJAR BENJAT