Hello All !
I m writing a scanner in python.
I ve achieved to write scan results into a word file. But still not achieved to view results in my text box.
My Text Box Codes:
-----------------------------------------------------------------------------------------
metin = Text()
metin.place(relx=0.3, rely=0.4, width=300, height=300)
-----------------------------------------------------------------------------------------
A part of my Scanning Codes
-----------------------------------------------------------------------------------------
def ana():
def tara():
for i in liste:
git = get_browser()
git.go(str(i+"'a"))
try:
find("80040e14" and "'a" )
global aq
aq=aq+1
------------------------------------------------##I wanna print (i) wariable in text box at this line ---
dosyam = open("SCANNED_DATA1.DOC","a")
dosyam.write(str(aq))
dosyam.write("- ")
dosyam.write(i)
dosyam.write("\n")
dosyam.close()
except: continue
--------------------------------------------------------------------------------------------------------
"i" is my variable that refers to the bugs on the site.
I wanna display it on the text box and it must be refershed automacially.
Please help me :(