Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/shahaf-f-s/qr-coder
- Owner: Shahaf-F-S
- Created: 2023-08-26T14:49:33.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-19T12:43:57.000Z (9 months ago)
- Last Synced: 2024-11-10T18:03:45.093Z (2 months ago)
- Topics: qr, qr-code, qrcode, qrcode-generator, qrcode-scanner
- Language: Python
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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, decodedata = "hello world"
print(data == decode(encode(data.encode())).decode())
```