Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make python automations on current window

Tags:

python

I'm trying to make a simple python script that can use the keyboard to write / execute commands.

Example : open Photoshop and execute "select all and delete, then save" (control + a, delete, control + s) keys each after 1 second.

Example2 : open taskmanager (control + alt + del) use the N key to move to the N section in process and use end task (alt + e) every few minutes...

Moreover to create a function, while the python script is running if i hit alt+f1 (for example) it executes (control + alt + del)

like image 248
Itachi Sama Avatar asked Feb 21 '15 01:02

Itachi Sama


People also ask

How do I automate a task in Python using Windows?

Automate Python Script Using Windows Task Scheduler Give your task a name. Go to the “Tiggers” tab, change the settings to Daily, and make sure recur every 1 day since we want the bot to run every day. Also, make sure the Start time is in the past, otherwise, it won't run until that time comes.

Can I automate Windows application using Python?

But in this article, we are going to automate windows applications. So, to automate the windows application we are going to use Python. Python offers great readability and easy-to-learn syntax. In Python, we are going to use the Pywinauto module whose sole purpose is to automate windows applications.

Can we automate GUI using Python?

In this article, we will explore how we can do GUI automation using Python. There are many modules that can do these things, but in this article, we will use a module named PyAutoGUI to perform GUI and desktop automation using python. Also, we would explore how we can automate the keyboard keystrokes.


2 Answers

In order to do this you need to integrate with the native messaging interfaces. Sikuli is a good test tool and so (as per @juxhin's suggestion) a sensible candidate if you can limit yourself to Jython.

However if you can't live with that, you'll probably need a different solution for Linux and Windows. For example:

  • Linux: Listening for global key-combinations in python on Linux
  • Windows: Set global hotkey with Python 2.6 (Note that some answers are not limited to 2.6)
like image 69
Peter Brittain Avatar answered Sep 20 '22 23:09

Peter Brittain


You may want to try SikuliX. This is an image-based framework that can be used with Python (via Jython), Ruby (via JRuby) and Java (via the optional Java API).

It is very useful to automate certain behavior on your screen such as opening Photoshop, clicking regions on your screen or typing via the key. For example:

//Using Java API, however the idea is the same for Python
Screen screen = new Screen()
screen.type(new Pattern("some-image.png"), "keyboard");

In Python:

def changed(event):
    print "something changed in ", event.region
    for ch in event.changes:
            ch.highlight() # highlight all changes
    sleep(1)
    for ch in event.changes:
            ch.highlight() # turn off the highlights

with selectRegion("select a region to observe") as r: # any change in r larger than 50 pixels would trigger the changed function onChange(50, changed) observe(background=True)

wait(30) # another way to observe for 30 seconds r.stopObserver()

It is quite a bit of work, but it allows you to create very robust scripts that perform your desired actions. You may also pipe console output back to your Python script via subprocess in order to change your scripts behavior based on the environment.

Rest is all limited by your imagination.

Note: Not EVERYTHING has to be done with SikuliX, infact I wouldn't recommend actually doing everything. Just certain things that may require specific behavior on your screen.

If you are strictly on Ubuntu, you may also want to look at Xpresser


Update

So I have worked around with AutoIt and PyAutoIt and would genuinely think they are suitable tools for what you wish to achieve as they can be very potent against certain applications.

like image 38
Juxhin Avatar answered Sep 18 '22 23:09

Juxhin