Introduction to TRAN TUAN ANH skynetwork.org LE VIET HONG deltaviet.com
What is Django? Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. Django makes it easier to build better Web apps more quickly and with less code. The Web framework with perfectionists with deadlines.
Django Components M odels - Django ORM T emplates - Django Template Engine V iews - Python function, Request in Response out. Think MTV instead of MVC URL Patterns - Regular expression based
Lets Build a Project spamstr/ __init__.py manage.py settings.py urls.py ./django-admin.py startproject example
Lets Build a Project spamstr/ person/ __init__.py models.py views.py ./manage.py startapp person
models.py
models.py
models.py
Create Your Database ... Creating table  peopleCreating table  phones ... ./manage.py syncdb
urls.py
views.py
views.py
index.html
./manage.py runserver
Administration
Administration
Thank You http :// www.djangoproject.com

Introduction To Django