From 57511125a2d32060765b221ad55014718ba517b2 Mon Sep 17 00:00:00 2001 From: Dhanush Date: Sun, 30 Jun 2024 18:36:59 +0530 Subject: [PATCH] Delete QR-Code-Generator.py --- QR-Code-Generator.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 QR-Code-Generator.py diff --git a/QR-Code-Generator.py b/QR-Code-Generator.py deleted file mode 100644 index bc0180ba..00000000 --- a/QR-Code-Generator.py +++ /dev/null @@ -1,16 +0,0 @@ -import qrcode - -profile = input("Enter your profile: ") - -data = 'https://www.linkedin.com/in/' + profile - -qr = qrcode.QRCode(version=1, box_size=10, border=5) -qr.add_data(data) -qr.make(fit=True) -img = qr.make_image() - -destination = input("Enter the destination directory to save the QR code image: ") - -filename = input("Enter the filename for the QR code image (including the extension, like, myqrcode.png): ") - -filepath = destination + '/' + filename