The QR Code Maker App is a simple and easy-to-use desktop application developed using Python PyQt5, providing a sample for new developers who want to learn PyQt5. With this app, you can generate QR codes by typing the content and clicking on the "Generate" button to instantly see the result. Additionally, the app allows you to save the generated QR code image to your local machine.
- Generate QR codes for various content types
- Simple and user-friendly interface
- Instantly preview QR codes
- Ability to save generated QR codes
- Python 3.x
- PyQt5
- qrcode (Python library)
- PIL (Python Imaging Library) or Pillow
Make sure you have Python 3.x installed on your system. You can download it from the official website: https://www.python.org/downloads/
Install the required Python packages using pip:
pip install PyQt5 qrcode pillow