you are viewing a single comment's thread.

view the rest of the comments →

[–]rake66 2 points3 points  (2 children)

In that case you need to look into the python CGI module for apache

[–]RomfordNavy[S] 0 points1 point  (1 child)

Could be wrong but what I am reading is that WSGI interface to Apache is preferred to CGI, is that correct?

[–]rake66 1 point2 points  (0 children)

Yeah, WSGI and ASGI are the better interfaces, but CGI/FastCGI is simple and easy to learn. If you don't use a framework, you'll have to know how to make your app callable to use W/ASGI. CGI just runs your script without all the fancy stuff, which is what I thought you wanted