Hello reader's ,
Today you are going to see that how you can create Qr code of any website using python, for doing this you need to install a module named 'qrcode' . To install this module open command prompt and type "pip install qrcode" or simply copy and paste to you cmd window.
After the successful installation of module open your ide whatever IDE you are using , i am using VS code in this video, type the code as shown in video or copy the code and paste it after that run the command.
code -
import qrcode
img = qrcode.make("www.pythonticate,blogspot.com")
img.save("pythonticate.png")
img.show()
Comments
Post a Comment
Thank you for sharing this.
You’re helping us become better. Want to stay in the loop? Subscribe to our YouTube channel.