Make Your Own QR Code using Python????????
Dipayan Sarkar
Dipayan Sarkar
Associate Data Engineer @Curiflow | Building AI Co-workers - Helping with Autoscaling in Kubernetes, AI, Cloud, Full stack | Not from IIT, NIT or IIM
Nowadays we all are used to scan QR Codes especially for UPI Payments!! But do you know you can create your own QR Code with Python, which can contain a Text/Website Link or whatever...Possibilities are endless!!
1. Let's see how you can make your own QR Code??
2. Prerequisites ??
3. Source Code??
import qrcode
img = qrcode.make('https://www.instagram.com/codewithbiki/')
img.save('qr_code.png')
img.show()