So I have an Apache 2.4.6 @ CentOS 7 and I want to run a specific python script using some data from a post request from that server but I don't want for anyone to be able to look in the python source. My webdev experience in backend is minimal and by my searches so far I've figured that my options are:
- enabling mod_wsgi (I've already done that to test the execution of simple script without any parameters but I don't see how I connect my script functions to the form)
- Django application (but I don't have any experience on that and it seems like a lot of work for my purpose)
I don't know any php and I am wondering what's the simplest way to perform that task without having to take up a whole new stack.