Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/shahaf-f-s/qr-coder

A QR handling module for writing and reading QR.
https://github.com/shahaf-f-s/qr-coder

qr qr-code qrcode qrcode-generator qrcode-scanner

Last synced: 3 days ago
JSON representation

A QR handling module for writing and reading QR.

Awesome Lists containing this project

README

        

# QR-Coder

> A QR handling module for writing and reading QR.

## Installation:

```
pip install qr-coder
```

## example

```python
from qrcoder import encode, decode

data = "hello world"

print(data == decode(encode(data.encode())).decode())
```