Web framework recommendation for python (webservices, auth, cache, ...)

Posted by illuminated on Stack Overflow See other posts from Stack Overflow or by illuminated
Published on 2010-05-23T17:35:42Z Indexed on 2010/05/23 17:40 UTC
Read the original article Hit count: 218

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.

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about python