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

https://github.com/fernaandojr/qrcode-generator


https://github.com/fernaandojr/qrcode-generator

Last synced: 15 days ago
JSON representation

Awesome Lists containing this project

README

          

## QR Code generator in Python

Easy QR Code generator totally customizable.

## Setup
To run this project check if you have Python installed and install the ``qrcode`` package locally using pip command.
```
pip install qrcode
```
For more image customization and functionality, make sure to install ``pil`` dependency so
that pillow is installed and can be used for generating images.
```
pip install "qrcode[pil]"
```
## Logo
For change the logo, modify ``logo.png`` path or replacing the original file.
```python
embeded_image_path=".\img\logo.png"
```




For an Easy scannable QR Code, add a stroke around the logo, like the example above

## References
It's important to read the original repository documentation for more information about the package itself.

* [python-qrcode](https://github.com/lincolnloop/python-qrcode)
* [How to add logo](https://medium.com/codestorm/how-to-create-qr-code-using-python-2094dc7e3db6#:~:text=or%20place%20an%20image%20in%20the%20middle%20of%20the%20QR%20Code%20to%20be%20created%2C)