Googling last week, but can't definitively decide which python web infrastructure would be right for me. The web application I'm going to develop will be almost completely “clean” html with js (jQuery). The server side would have to do the following:
- Authentication
- session management
- caching
- web services (almost all data on the page will be pulled using jQuery via web services).
- secure web services (through some form of authentication, this is for remote access to some service websites, although other web applications, desktop / mobile applications)
If there is a good tutorial / guide / idea on how to do this in Django, I would be very grateful if someone could share it, since I already have experience with it. What made me think of other frameworks was Django built in ORM. I know that I can change it to SQLAlchemy, but it will not go this way if I’m not sure that all other requirements are supported.
Thanks to everyone in advance.
source
share