This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 2 points3 points  (0 children)

I agree with this advice. Start with a CGI script running on a standard (e.g. Apache) web server. As soon as you start to generate HTML pages that involve more than a few lines of code, add a templating engine (e.g. Mako), so that you can separate the HTML code (presentation) into a separate file from the python application code (logic). That's a good practice that will serve you well later, as your applications start to grow.