qr code
<p>QR codes are a convenient method of sending links in a world where everyone has a mobile camera. In this series of videos we'll show you how you can work with them from python.</p>
1 - Generate
2 - Read
3 - Settings
4 - Web
Before generating QR codes you'll need to install the dependencies.
%pip install "qrcode[pil]"
Once installed you can generate a QR code by running:
import qrcode
img = qrcode.make('qr codes from python')
You can save these images to disk by running:
img.save("filename.png")