A quick-and-dirty QR code generator using the pyqrcode module. QR codes are saved as Scalable Vector Graphics (SVG) files.
Using pip:
pip3 install pyqrcode
Generating from a string:
python3 makeqr.py "sample text"
Generating from an input file:
python3 makeqr.py -f source.txt
Specifying an output location:
python3 makeqr.py -f source.txt -o dest.svg
- Force overwrite:
python3 makeqr.py -f source.txt -x -o dest.svg