In this talk, I present ‘secateur’, a tool for Twitter users to protect themselves from some forms of online harassment. I discuss using Python and Django to create tools that integrate with Twitter, use its APIs, and block lots of people (LOTS of people).
Presented at PyCon AU, Brisbane, on August 3, 2015
The power and flexibility of Django comes with drawbacks. One of the toughest for project management is working out how to deploy your Django application. If you ask five different authorities on how you should do it, you’ll get six different answers.
And if someone says “Just use fabric!”: they’re not helping.
Release management, dependency wrangling, virtualenv care and feeding; to .whl or .deb? To containerize or Heroku-ize? Do you really have to allow your servers unconstrained Internet access just to build your virtualenv?
As a Django user, you might end up writing more deployment solutions than Django projects. I know I have.
There’s no one true way of doing Django deployments, but some work better than others. Maybe I can show you.