web.py is still my go to for lightweight webapps. I won't start a big discourse on the pros and cons vs. other technologies, but I will say it is incredibly easy to setup and use. The current github page is here: https://github.com/webpy/webpy If you are looking to get up and running quickly, I would recommend forking this skeleton: https://github.com/jzellman/webpy-skeleton Finally, the built in database framework i…
The router block at the top plus:
class MyResource:
def GET(self,...): ...
def POST(self,...): ...
def PUT(self,...): ...
def DELETE(self,...): ...
Looks really nice. Haven't tried serving or rendering templates from it, so never tested that code.