Python系列视频教程: Django【16讲】
http://down.51cto.com/zt/4091/1
Django book 2.0 的中文翻译。
http://djangobook.py3k.cn/2.0/
Python Web 框架,第 1 部分: 使用 Django 和 Python 开发 Web 站点
http://www.ibm.com/developerworks/cn/linux/l-django/index.html#icomments
中谷 Python Django 教程[13讲]
http://www.tudou.com/plcover/27e6koAtzTo/
Python系列视频教程: Django【13讲】第一讲 Django安装
第一讲 Django安装
总结:
1.django install
2.django-admin startproject mysite
3.django-admin startapp blog
4.修改settings.py
app add---->blog
5.urls.py
url(r'^blog/index/$', 'blog.views.index'),
6.blog/views.py
from django.http import HttpResponse
# Create your views here.
def index(req):
return HttpResponse('<h1>hello world, welcome to Django</h1>'
7.python manager.py runserver
url: localhost:8000
localhost:8000\blog\index/