Delete qr.py

This commit is contained in:
anqude 2023-01-24 22:48:41 +04:00 committed by GitHub
parent a2b7cfe401
commit 5c8759b233
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

7
qr.py
View File

@ -1,7 +0,0 @@
import qrcode
def generate_qr(password):
qr = qrcode.QRCode()
qr.add_data('password: '+password)
qr.make(fit=True)
img = qr.make_image(fill_color="white", back_color="black")
img.save("qr.png")