Python Forum
Python project/code like Microsoft Flow - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: News and Discussions (https://python-forum.io/forum-31.html)
+--- Thread: Python project/code like Microsoft Flow (/thread-26233.html)



Python project/code like Microsoft Flow - Jeff900 - Apr-24-2020

I have been looking already on the internet to find some existing software like Microsoft Flow, but then written in Python ofcourse. Or to be more precisely, software that can be deployed on a private server.

I have seen some automation applications in my search results ofcourse, but not really one with a graphical user interface, like MS Flow. Does somebody know if this kind of software already exist in the Python language?

EDIT:
MS Flow is a cloud service from Microsoft which makes it able for people to automate processes without lots of code. The application will trigger on the given circumstances and then run some actions, send e-mail for example, or update a database record etc. See this page to see an example for how it looks like.

Thanks in advance!


RE: Python project/code like Microsoft Flow - Larz60+ - Apr-24-2020

Please show:
Description of MS Flow -- many if us don't use MS windows


RE: Python project/code like Microsoft Flow - snippsat - Apr-24-2020

Here is a list
The top Python ones on that list is PyAutoGUI and pywinauto.
I have tested both and they work reasonably well.

Can also mention Selenium with Python ,as it can to all kind of automation in Browsers.


RE: Python project/code like Microsoft Flow - Jeff900 - Apr-24-2020

Thanks snippsat! I was probably terribly searching with the wrong keywords. With this list I must find something. But I'll start with the two you already tested.