This project demonstrates how to generate QR codes using Python. By utilizing the qrcode
library along with PIL
(Python Imaging Library), it creates a QR code containing the text "hello guys" and saves it as an image file.
- Generate QR codes with customizable settings (e.g., error correction, box size, border).
- Customize QR code color.
- Save the generated QR code as an image file.
- Python 3.x
qrcode
libraryPillow
library (for image handling)
- Install the required libraries:
pip install qrcode[pil] Pillow