Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 704 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 704 Bytes

qrpy

A QR code

qrpy is a simple command-line program capable of encoding and decoding basic QR codes.

Installation

pip install qrpy

Note: You may need to additionally install zbar, as outlined in the installation steps for pyzbar.

Examples

qrpy encode --input "Hello world" --output "hello.png"
qrpy decode --input "hello.png"
Hello world

Omitting --output when encoding will print the QR code to the console.