Skip to content

Commit 1e034de

Browse files
authored
Update qrGenerator.py
Created a way to save the qrcode in a name you like in a location you like and display done when it's complete
1 parent 1d888f8 commit 1e034de

File tree

1 file changed

+23
-6
lines changed

1 file changed

+23
-6
lines changed

QR Code Generator/qrGenerator.py

+23-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
1-
import pyqrcode
2-
import png
1+
import qrcode
32
from tkinter import *
3+
from tkinter import filedialog
4+
import os
45

56

67
# This Function is responsible to take the input -> Convert it to Image Code -> Convert Image code to png.
78
def get_code():
89
data_var = data.get()
9-
qr = pyqrcode.create(str(data_var))
10-
qr.png('code.png', scale=6)
10+
qr = qrcode.make(str(data_var))
11+
# This will ask for the directory the user wants to store the code and save it there.
12+
base.loc = filedialog.askdirectory()
13+
os.chdir(base.loc)
14+
save_as = name_to_save.get()
15+
label= Label(base, text="Done", bg="red")
16+
label.place(x=80, y=150)
17+
qr.save(f"{save_as}.png")
18+
1119

1220
#Get a Tk window of 400 * 200
1321
base = Tk()
@@ -16,10 +24,19 @@ def get_code():
1624

1725
# variable to store text for QR Code
1826
data = StringVar()
19-
27+
name_to_save = StringVar()
2028
# Field to input text
29+
# Get the name to be saved as
30+
label_1 = Label(base, text="SAVE_AS").place(x=80, y=10)
31+
dataEntry = Entry(textvariable=name_to_save, width="30")
32+
dataEntry.place(x=80,y=30)
33+
34+
# What is suppose to be in the qrcode when scanned
35+
label_1 = Label(base, text="INSIDE QRCODE").place(x=80, y=50)
36+
2137
dataEntry = Entry(textvariable=data, width="30")
22-
dataEntry.place(x=80,y=50)
38+
dataEntry.place(x=80,y=70)
39+
2340

2441
# Call get_code() on click
2542
button = Button(base,text="Get Code",command=get_code,width="30",height="2",bg="grey")

0 commit comments

Comments
 (0)