QRGenie is a Python project that allows users to generate and decode QR codes. It uses the qrcode
library for creating QR codes and opencv
with pyzbar
for decoding them.
- Generate QR Codes: Convert any text or URL into a QR code image.
- Decode QR Codes: Read and decode QR codes from images.
- Python 3.x
qrcode
libraryopencv-python
librarypyzbar
library
To get started with QRGenie, you need to install the required Python libraries. You can install them using pip:
pip install qrcode[pil] opencv-python pyzbar