Web framework recommendation for python (webservices, auth, cache, ...)
- by illuminated
Hi all,
Googling for the past week, but cannot finally decide which python web framework would be right for me. The web app I'm about to develop would be almost completely "pure" html with js (jQuery). Server side would have to do the following:
authentication
session management
caching
web services (almost all the on page data would be pulled with jQuery
through web services)
secured web services (through some form of authentication; this is for
remote accessing some of the web
services though other web apps,
desktop/mobile applications)
If there is a good tutorial/guide/idea for how to do this in Django I would be most thankfull if someone could share it as I already have experience with it. The thing that made me start thinking about other frameworks is Django's built in ORM. I know I could swap it with SQLAlchemy, but wouldn't go down that road if I'm not sure all the rest of the requirements is supported.
Thanks all in advance.