Frameworks80k+ stars

Django

The web framework for perfectionists with deadlines

Commit Details

Message
"Removed ASCII art from LICENSE file"
Author
Adrian Holovaty
Date
2005-07-13
Hash
d6ded0e91bcdd2a8f7a221f6a5552a33fe545359

Fun Fact

Django was developed at the Lawrence Journal-World newspaper. It's named after guitarist Django Reinhardt.

</>First Code

Python
"""
Django - The Web framework for perfectionists with deadlines.

Copyright (c) 2005, Lawrence Journal-World
All rights reserved.
"""

from django.core.management import execute_manager

def startproject(project_name):
    """Creates a Django project directory structure."""
    import os
    os.makedirs(project_name)
    
    # Create settings.py
    settings = open('%s/settings.py' % project_name, 'w')
    settings.write('DEBUG = True\n')
    settings.write('DATABASE_ENGINE = ""\n')
    settings.close()