| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
In this video we will be creating a QR Code Generator using Python
I am using qrcode module in this project
Install qrcode module
pip install qrcodeHere is a sample code to use qrcode module
import qrcode #Import The Module
img = qrcode.make('Some data here')
type(img)
img.save("some_file.png") #Save the fileOutput i got in this video
You can scan your QR Code online for free from here - https://qrcodescan.in/
Please subscribe CodeWithNiranjan
| Back | FazBrowse Home | New Git URL |