Python scripts for QR code generation, QR code scanning, and barcode generation.
- qrcodegenerator.py - Generate QR codes from URLs with custom filename
- qrscanner.py - Scan QR codes using webcam and open in browser
- barcodegenerator.py - Generate barcodes (code128)
python3 -m venv venv
source venv/bin/activatepython -m venv venv
venv\Scripts\activatepython -m venv venv
.\venv\Scripts\Activate.ps1To deactivate the virtual environment:
deactivatepip install pyqrcode pypng opencv-python python-barcodepython qrcodegenerator.py # Generate QR code
python qrscanner.py # Scan QR code via webcam
python barcodegenerator.py # Generate barcodePull requests are welcome! If you'd like to add new services or suggest new features, feel free to fork the repository and open a PR.