-2

I'm learning python script to make an autogame and i don't know how can the script interact with another application
I've heard that using hook technique but I do not know how to do it with python. Can anyone help me with HOOK and making autogame?

Reblochon Masque
  • 35,405
  • 10
  • 55
  • 80
Bowber
  • 41
  • 5

1 Answers1

0

You can look at How to run bash commands in python and with bash you can launch any application with all the arguments the application supports at the time of the launch.

Ishan Srivastava
  • 1,129
  • 1
  • 11
  • 29
  • @teestdm bash commands is what actually happens in the background when you interact with a GUI. You can google up some basic commands on how to launch your application for your Operating System. Write those commands using the python library in my answer and you will be good to go – Ishan Srivastava Jul 24 '18 at 13:32