I want to automate desktop activities in Windows environment using Python. How it can be done? Some examples will also be helpful.
By desktop activities, I mean acti
You can try Automa.
It's a Windows GUI automation tool written in Python which is very simple to use. For example, you can do the following:
# to double click on an icon on the desktop
doubleclick("Recycle Bin")
# to maximize
click("Maximize")
# to input some text and press ENTER
write("Some text", into="Label of the text field")
press(ENTER)
The full list of available commands can be found here.
Disclaimer: I'm one of Automa's developers.