A "Best of the Best Practices" (BOBP) guide to developing in Python.
- "Build tools for others that you want to be built for you." - Kenneth Reitz
- "Simplicity is alway better than functionality." - Pieter Hintjens
| import base64 | |
| import hmac | |
| import hashlib | |
| from urllib import parse | |
| from django.contrib.auth.decorators import login_required | |
| from django.http import HttpResponseBadRequest, HttpResponseRedirect | |
| from django.conf import settings | |
| @login_required |