Slide 2
Slide 2 text
Pinterest
q
Disqus
q
Pretty much big sites use Django.
Who uses Flask ?
Disqus
q
Lot of small sites
q
Django good parts ?
Huge community.
q
Well documentation.
q
Security is prime focus.
q
Lot of third party libraries.
q
Admin interface.
q
Bad parts ?
Regex url routing is ugly (r'^blog/?P\d{4}/$').
q
In 2013 it feels heavy but it wasn't in few years back.
q
Difficult to replace Django auth with custom auth because third party libraries break.
q
ORM Django - people.filter(age__gt=18).filter(~Q(age=42))
q
SQLAlchemy - people.filter(Person.age > 18, Person.age != 42)
q
Flask good parts ?
Very tiny library.
q
Extensible.
q
Can build large sites using Blueprint (LastUser).
q
Has picked up very well.
q
Flask-extensions.
q
You can replace all the parts with your library.
q