"""
from subprocess import check_output
from os.path import abspath, dirname, exists, join
-from django.utils.crypto import get_random_string
from fabric.api import *
from fabric.context_managers import settings
from fabric.contrib import files
env.services = None
+def get_random_string(length=12,
+ allowed_chars='abcdefghijklmnopqrstuvwxyz'
+ 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'):
+ from random import SystemRandom
+ random = SystemRandom()
+ return ''.join(random.choice(allowed_chars) for i in range(length))
+
+
@task
def setup():
"""