Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Python is a good choice. </p> <p>I would avoid the CGI model though - you'll pay a large penalty for the interpreter launch on each request. Most Python web frameworks support <a href="http://www.wsgi.org/wsgi/" rel="nofollow noreferrer">the WSGI standard</a> and can be hooked up to servers in a myriad of ways, but most live in some sort of long-running process that the web server communicates with (via proxying, FastCGI, SCGI, etc).</p> <p>Speaking of frameworks, the Python landscape is ripe with them. This is both good and bad. There are many fine options but it can be daunting to a newcomer.</p> <p>If you are looking for something that comes prepackaged with web/DB/templating integration I'd suggest looking at <a href="http://www.djangoproject.com" rel="nofollow noreferrer">Django</a>, <a href="http://www.turbogears.org" rel="nofollow noreferrer">TurboGears</a> or <a href="http://www.pylonshq.com" rel="nofollow noreferrer">Pylons</a>. If you want to have more control over the individual components, look at <a href="http://www.cherrypy.org" rel="nofollow noreferrer">CherryPy</a>, <a href="http://wsgiarea.pocoo.org/colubrid/" rel="nofollow noreferrer">Colubrid</a> or <a href="http://www.webpy.org" rel="nofollow noreferrer">web.py</a>.</p> <p>As for whether or not it is as "easy as PHP", that is subjective. Usually it is encouraged to keep your templates and application logic separate in the Python web programming world, which can make your <em>life</em> easier. On the other hand, being able to write all of the code for a page in a PHP file is another definition of "easy".</p> <p>Good luck.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload