Closed GoogleCodeExporter closed 9 years ago
To simplify:
import time
keyboard.send_keys(time.localtime)
will disable my keyboard.
Original comment by rienk.bo...@gmail.com
on 11 Jun 2011 at 1:54
Your problem is that time.localtime does not return a string to be sent via the
keyboard - it is a function object. You need to look at some Python tutorials
on the datetime module to see how to get a date/time string.
Original comment by cdekter
on 12 Jun 2011 at 11:59
Original issue reported on code.google.com by
rienk.bo...@gmail.com
on 11 Jun 2011 at 1:47