資源簡介
Django入門新聞管理系統。入門的,新手可以看下哈。。。
==================================================
Django的環境:
Python的安裝:
python-2.7.1.msi
Django的安裝:
去djangoproject.com下載最新的版本,目前是1.3.1的
Django-1.3.1.tar.gz 解壓后跳到該目錄下
輸入命名Python setup.py install安裝
安裝數據庫和python鏈接庫
Mysql 4.0以上版本
MySQL-python-1.2.3.win32-py2.7.exe
==================================================
1.python Django-admin.py startproject newsdemo
2.python manage.py startapp article
3.python manage.py syncdb
4.python manage.py sunserver
按以上步驟把對應的目錄文件拷進去就可以跑了

代碼片段和文件信息
#!/usr/bin/env?python
from?django.core.management?import?execute_manager
import?imp
try:
????imp.find_module(‘settings‘)?#?Assumed?to?be?in?the?same?directory.
except?ImportError:
????import?sys
????sys.stderr.write(“Error:?Can‘t?find?the?file?‘settings.py‘?in?the?directory?containing?%r.?It?appears?you‘ve?customized?things.\nYou‘ll?have?to?run?django-admin.py?passing?it?your?settings?module.\n“?%?__file__)
????sys.exit(1)
import?settings
if?__name__?==?“__main__“:
????execute_manager(settings)
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2011-12-01?09:17??newsdemo\
?????目錄???????????0??2011-12-01?09:17??newsdemo\article\
?????文件?????????790??2011-11-29?11:25??newsdemo\article\models.py
?????文件????????2471??2011-11-29?11:25??newsdemo\article\models.pyc
?????目錄???????????0??2011-12-01?09:17??newsdemo\article\templates\
?????文件?????????536??2011-11-29?11:50??newsdemo\article\templates\show_article.html
?????文件?????????674??2011-11-29?11:48??newsdemo\article\templates\show_list.html
?????文件?????????528??2011-11-29?11:46??newsdemo\article\templates\show_report.html
?????文件?????????399??2011-11-29?11:07??newsdemo\article\tests.py
?????文件????????1521??2011-11-29?20:56??newsdemo\article\views.py
?????文件????????1772??2011-11-29?20:58??newsdemo\article\views.pyc
?????文件???????????0??2011-11-29?11:07??newsdemo\article\__init__.py
?????文件?????????172??2011-11-29?11:16??newsdemo\article\__init__.pyc
?????文件?????????517??2011-11-29?11:07??newsdemo\manage.py
?????文件????????5223??2011-11-29?11:37??newsdemo\settings.py
?????文件????????2844??2011-11-29?11:37??newsdemo\settings.pyc
?????文件?????????762??2011-11-29?11:55??newsdemo\urls.py
?????文件?????????657??2011-11-29?11:55??newsdemo\urls.pyc
?????文件???????????0??2011-11-29?11:07??newsdemo\__init__.py
?????文件?????????164??2011-11-29?11:07??newsdemo\__init__.pyc
?????文件?????????616??2012-02-16?09:06??Readme.txt
- 上一篇:pyqt、echarts
- 下一篇:python編寫的貪吃蛇
評論
共有 條評論