# How To Create A QRCODE Of Any Value Like (Hello,Manan) Or (1010) Or Any Social Link And Any Vedio Or Image.
pip install qrcode
And Next Run This Code In Pythone.
import qrcode as qr
img = qr.make("https://abpythonwork.blogspot.com/")
img.save("blog.png")
NOTE :
import qrcode as qr
import basically is used to extract the qr code library or his function.
qr code he is library.
as qr means short name of qrcode is qr.
img he is represent the name . you represent any name like this (a or b or c or etc...)
qr.make("https://abpythonwork.blogspot.com/")
basically qr means is qrcode short name or .make is means creat a code and ("https://abpythonwork.blogspot.com/") means a my blog link that i am creat a qr code so.
img.save("blog.png")
basically img is represent a name and .save is used to save this code that i can creat and ("blog.png") is means is name of file that save a qrcode.
_________
I CAN MAKE QRCODE IS
No comments:
Post a Comment