I had cloned an existing repo to build a simple app in Django and reliazed that I needed a SECRET_KEY. Since the SECRET_KEY is
generate when running django-admin startproject I needed to create one myself. A friend wisely mentioned that I shouldn't be
using any online service to do this, so he dropped me a simple approach:
import random
import string
''.join(random.choice(string.letters + string.digits) for x in xrange(50))