12 lines
359 B
Python
12 lines
359 B
Python
import qrcode
|
|
def generate_qr(password,fg_color,bg_color):
|
|
qr = qrcode.QRCode()
|
|
qr.add_data('password: '+password)
|
|
qr.make(fit=True)
|
|
img = qr.make_image(fill_color=fg_color, back_color=bg_color)
|
|
img.save("qr.png")
|
|
|
|
def generate_qr_text(password):
|
|
qr = qrcode.QRCode()
|
|
qr.add_data('password: '+password)
|
|
return(qr.print_ascii()) |