Python Forum
Automation Engine on Python? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: Automation Engine on Python? (/thread-26371.html)



Automation Engine on Python? - jfha73 - Apr-29-2020

Hey guys,

I am looking for an automation engine (like jenkins) but that runs on Apache httpd with Python, not Java I thought Selenium would be a help but when I went to download it it gave me a .jar (Java) file, I don't want Java involved, so I'm looking for one made with pure Python.

If anybody know about one, please let me know.

Thanks,


RE: Automation Engine on Python? - ndc85430 - Apr-29-2020

I'm confused about what you want. Do you want a CI/CD server (which is what Jenkins is), or something to automate interaction with a browser (which is what Selenium does)? They're two different things. Also, why do you care what it's written in?


RE: Automation Engine on Python? - jfha73 - Apr-29-2020

Well, I'm looking for a web tool to automate processes (usually running on other servers), I have tried Jenkins, but Jenkins runs on a Java Web Applications Server (Like JBoss, or WildFly) and I'm trying to avoid Java Web Applications Servers because they take too many resources from the host, so I was looking for one that runs on Apache httpd, hopefully using Python or PHP instead of Java.

Does that make more sense?


RE: Automation Engine on Python? - ndc85430 - May-01-2020

Resource usage seems like a fair point, but I don't think limiting your choices based on technologies seems right. What kinds of tasks are you trying to automate (your phrasing doesn't make me think CI/CD)?


RE: Automation Engine on Python? - jfha73 - May-01-2020

I have a monitoring system sending emails to a ticketing system when problems happen, some or most of these problems can have a way to fix using an automation, so I want to create an automation server for when these problems happen and run the automation for the problem(s), only the automation engines I find are all in Java and you know the rest.

Does that make more sense?