In this project, we'll be using some libraries to instantly generate authentic QR Codes and export them in various formats
Following modules need to be installed for it to work properly:
- PyQRCode
- PyPng
The pyqrcode module is a QR code generator that is simple to use and written in pure python. The module can automates most of the building process for creating QR codes. Most codes can be created using only two lines of code!
Unlike other generators, all of the helpers can be controlled manually. You are free to set any or all of the properties of your QR code.
It can be installed using "pip install PyQRCode"
PyPNG is pure Python library for saving and loading PNG images
It can be installed using "pip install pypng"