Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

# qrpy


A QR code

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.