Metadata-Version: 2.1
Name: qrcode_img
Version: 1.0.3
Summary: Generation QR Code with IMG
Home-page: https://github.com/grand-roman/gen_qr_code_with_img
Author: Roman Andreev
Author-email: grand-roman@yandex.ru
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

## Генерация QR Code по картинке

### https://pypi.org/project/gen-qr-with-img/

 
## Пример работы

```
from path import Path
from qrcode_img import QRCode

text = 'Hello'

path_to_download = Path().joinpath("example", "11.png")
path_to_save = Path().joinpath("example", "1example.png")


qrcode = QRCode(text)

qrcode.gen_qr_code(path_to_download, path_to_save)
```
