https://github.com/fernaandojr/qrcode-generator
https://github.com/fernaandojr/qrcode-generator
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/fernaandojr/qrcode-generator
- Owner: FernaandoJr
- Created: 2023-08-12T14:47:13.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-13T00:27:36.000Z (almost 3 years ago)
- Last Synced: 2025-03-01T23:43:06.222Z (over 1 year ago)
- Language: Python
- Size: 716 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)