Python server page implementations

I have been a PHP developer for quite some time, and I heard well about using Python for web scripts. After a little research, I found mod_python that integrates with Apache to allow Python Server Pages, which seem very similar to the PHP pages I'm used to. I also found mod_wsgi which is similar.

I was wondering which implementation of good people Qaru would recommend for those who want a good integration with Apache and MySQL and similar functionality for PHP.

+3
source share
1 answer

I believe mod_wsgi is the preferred mod_python option:

http://code.google.com/p/modwsgi/

, mod_wsgi .

http://code.google.com/p/modwsgi/wiki/PerformanceEstimates

+3

Source: https://habr.com/ru/post/1713372/


All Articles