Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bradenhilton/qrpy
Command-line program to encode and decode QR codes
https://github.com/bradenhilton/qrpy
Last synced: 2 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
- Created: 2023-11-16T19:49:29.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-01T15:46:47.000Z (3 months ago)
- Last Synced: 2024-10-03T22:46:08.868Z (3 months ago)
- Language: Python
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
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.