How Python Is Used To Create Web Services?
I always created my web services using PHP but I am interested in switching to Python because of its simplicity. On my web server (I have created a 'tmp.py') just with one line: pr
Solution 1:
HOWTO Use Python in the web is the official Python manual on this matter. It's a fairly good starting point, giving a brief overview on the subject, and listing the most common options:
- CGI and CGI spin-offs (Fast CGI, WSGI)
- mod_python
- Full frameworks, most notably Django
Although I admire Python for its elegance and power, it's far from being the natural or standard choice for web development. Carefully consider the use case, and who will maintain the code, before picking the language.
Post a Comment for "How Python Is Used To Create Web Services?"