Hacker News new | ask | show | jobs
by mrevelle 6682 days ago
If you do decide to go with Python, web.py (http://webpy.org/) is simple and you'll be up and running fast.

If you're interested in how it all works, dig into WSGI. And if you find that web.py is too low level, transition to Django after you have a feel for how web apps work.

1 comments

Unfortunately webpy is poorly documented. Not good for a beginner. It is better for those people that know python well, and like to have absolute control of what's going on, and don't like the overhead of a large framework.

While webpy is small, I found myself often looking at the code, which has little commenting, to understand what's going on, or how to use a certain feature, mainly b/c the documentation is so lacking.

CherryPy might be a better choice.