I am learning both autohotkey and python. I wrote this script in ahk (and it works!), Which automatically joins tables (using tableninja) in the pokerstars client -
^q:: Loop { Send q Sleep 500 Send {PgUp} Sleep 500 Send w Sleep 60000 } return
I would like to convert this to python - could you please give me an idea of ββwhich modules I can use for this?
What python script needs to do is type (while looping) in the letter (in the notepad that has already opened), go down two lines, enter another letter, and then wait one minute before starting.
I think -
import module to auto-type letters import module that works as timer def function type letter q enter enter def function type letter w def function sleep while True function function function
I teach how to code. I haven't gotten to this part about python modules yet. Thanks!
source share