following: 0
followed tags: 2
followed domains: 0
badges given: 0 of 0
hubskier for: 3137 days
Thank you dearly sir or ma'am.
Problem is I need it more accurate than seconds.
Basically I need to record the time stamp of a keystroke as well as the key pressed. From there I can put it trim it down to a record of the overall rhythm you type the password in. I'm not very far at this point so bare with me. from tkinter import # tkinter had to be lowercase for my version from time import time start_time = end_time = 0 master = Tk() e = Entry(master) e.pack() e.focus_set() #* Mine entList = [] # this will be a 2-dimentional list entInx = 0 # I wasn't sure what this is def key(event): e.unbind("<Key>") return end_time = time() meas_time = int(end_time-start_time) #determine the measured time print ("measured time:", meas_time) entPair = [0,0] # I put this here so it would restart each keypress entPair[0] = event.char # place the char into pos 1 of the line entPair[1] = meas_time # place the int time into pos 2 of the line entList.append(entPair) # place the line into the 2d list e.bind("<Key>", key) start_time = time() mainloop() if event.char == '\r':
print ("pressed", repr(event.char)) # print seems to need an extra cupping
print(entList) # print the list and make Luka smile