https://github.com/bradenhilton/qrpy
Command-line program to encode and decode QR codes
https://github.com/bradenhilton/qrpy
Last synced: 5 months ago
JSON representation
Command-line program to encode and decode QR codes
- Host: GitHub
- URL: https://github.com/bradenhilton/qrpy
- Owner: bradenhilton
- License: mit
- Archived: true
- Created: 2023-11-16T19:49:29.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-01T15:18:51.000Z (7 months ago)
- Last Synced: 2025-02-10T19:13:27.981Z (5 months ago)
- Language: Python
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# qrpy
![]()
qrpy is a simple command-line program capable of encoding and decoding basic QR codes.
## Installation
```console
pip install qrpy
```Note: You may need to additionally install zbar, as outlined in the
[installation steps](https://github.com/NaturalHistoryMuseum/pyzbar/tree/master#installation)
for pyzbar.## Examples
```console
❯ qrpy encode --input "Hello world" --output "hello.png"
``````console
❯ qrpy decode --input "hello.png"
Hello world
```Omitting `--output` when encoding will print the QR code to the console.