DSNP is a simple and customizable Python script, that automatically creates a working Django project.
Project (and application) creation in Django are very openend and flexible, but sometimes is useful getting all the work done for you, specially:
-
DSNP does exactly that, automates the process of creating projects and applications in Django. The resulting website is a simple project with a single application, ready for start creating models and templates. It's also customizable, to let everyone set their own preferences in the script, and adapt it to your desired structure.
Want to try it (in five simple steps)?
svn checkout http://dsnp.googlecode.com/svn/trunk/
python dsnp.py myproject
cd myproject
python manage.py runserver
Browse http://localhost:8000/
Easy right?