Tagged Questions
12
votes
4answers
3k views
Django vs Flask + Werkzeug for complex, scalable and large applications
I am about to get my hands dirty on building a application for one of the trading company entirely on python. I have experimented with django and flask. Here are few of the things i have come up
...
3
votes
2answers
2k views
Context processor using Werkzeug and Jinja2
My application is running on App Engine and is implemented using Werkzeug and Jinja2. I'd like to have something functionally equivalent of Django's own context processor: a callable that takes a ...
2
votes
1answer
397 views
Which framework is better for creating a complete software as a service (SaaS) application in Python [closed]
I would like to create a billing application and would like to have it as a software as a service (SaaS) so that the hotels and banks could use that application. I have heared about many framework ...
1
vote
3answers
172 views
Debugging Django with Werkzeug under WSGI/Passenger - problems
I'm trying to use the werkzeug debugger, but despite installing it as recommended, I just get the normal django error page.
from my passenger_wsgi.py:
import django.core.handlers.wsgi
from ...
1
vote
1answer
962 views
Is Flask + Werkzeug faster than django? [closed]
I dont know whether this question makes sense but seriously is flask faster than django. The reason why i am saying this is that i have deployed one intranet application which is built in Django for a ...
1
vote
4answers
540 views
Guidelines of creating a application as software as a service (saas) in Python
I just wanted to know what all things should I keep in mind before developing a business application in python. The things which I wanted to know is:
Which web server is good and
what about the ...
0
votes
1answer
118 views
Django over Werkzeug for debugging/deploying?
i've just tried the "django_extensions", and it seems it has good stuff, but there are two questions about that:
1 - when using runserver_plus it seems that the webpage dont update when i update the ...