资源简介
Python Django实现简单购物车功能
代码片段和文件信息
#!/usr/bin/env python
import os
import sys
if __name__ == “__main__“:
os.environ.setdefault(“DJANGO_SETTINGS_MODULE“ “ShopCar.settings“)
try:
from django.core.management import execute_from_command_line
except ImportError:
# The above import may fail for some other reason. Ensure that the
# issue is really that Django is missing to avoid masking other
# exceptions on Python 2.
try:
import django
except ImportError:
raise ImportError(
“Couldn‘t import Django. Are you sure it‘s installed and “
“available on your PYTHONPATH environment variable? Did you “
“forget to activate a virtual environment?“
)
raise
execute_from_command_line(sys.argv)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 228 2017-06-19 15:52 ShopCar\.idea\inspectionProfiles\profiles_settings.xm
文件 210 2017-06-19 15:52 ShopCar\.idea\misc.xm
文件 266 2017-06-19 15:52 ShopCar\.idea\modules.xm
文件 951 2017-06-19 15:55 ShopCar\.idea\ShopCar.iml
文件 33848 2017-06-26 14:16 ShopCar\.idea\workspace.xm
文件 46080 2017-06-26 14:16 ShopCar\db.sqlite3
文件 827 2017-06-19 15:48 ShopCar\manage.py
文件 66 2017-06-19 16:07 ShopCar\ProductInfo\admin.py
文件 102 2017-06-19 16:07 ShopCar\ProductInfo\apps.py
文件 228 2017-06-23 11:26 ShopCar\ProductInfo\Form.py
文件 856 2017-06-19 17:26 ShopCar\ProductInfo\migrations\0001_initial.py
文件 413 2017-06-23 13:55 ShopCar\ProductInfo\migrations\0002_auto_20170623_1355.py
文件 0 2017-06-19 16:07 ShopCar\ProductInfo\migrations\__init__.py
文件 904 2017-06-19 17:26 ShopCar\ProductInfo\migrations\__pycache__\0001_initial.cpython-35.pyc
文件 580 2017-06-23 13:55 ShopCar\ProductInfo\migrations\__pycache__\0002_auto_20170623_1355.cpython-35.pyc
文件 128 2017-06-19 16:48 ShopCar\ProductInfo\migrations\__pycache__\__init__.cpython-35.pyc
文件 415 2017-06-23 11:24 ShopCar\ProductInfo\models.py
文件 63 2017-06-19 16:07 ShopCar\ProductInfo\tests.py
文件 167 2017-06-23 13:51 ShopCar\ProductInfo\urls.py
文件 3291 2017-06-26 13:47 ShopCar\ProductInfo\views.py
文件 0 2017-06-19 16:07 ShopCar\ProductInfo\__init__.py
文件 162 2017-06-19 16:48 ShopCar\ProductInfo\__pycache__\admin.cpython-35.pyc
文件 623 2017-06-23 13:43 ShopCar\ProductInfo\__pycache__\Form.cpython-35.pyc
文件 698 2017-06-23 13:43 ShopCar\ProductInfo\__pycache__\models.cpython-35.pyc
文件 308 2017-06-23 13:51 ShopCar\ProductInfo\__pycache__\urls.cpython-35.pyc
文件 2037 2017-06-26 13:47 ShopCar\ProductInfo\__pycache__\views.cpython-35.pyc
文件 117 2017-06-19 16:48 ShopCar\ProductInfo\__pycache__\__init__.cpython-35.pyc
文件 3388 2017-06-19 16:09 ShopCar\ShopCar\settings.py
文件 933 2017-06-23 17:02 ShopCar\ShopCar\urls.py
文件 408 2017-06-19 15:48 ShopCar\ShopCar\wsgi.py
............此处省略40个文件信息
相关资源
- python实现SGBM图像匹配算法
- python实现灰度直方图均衡化
- scrapy_qunar_one
- Python学习全系列教程永久可用
- python简明教程.chm
- 抽奖大转盘python的图形化界面
- 双边滤波器实验报告及代码python
- python +MYSQL+HTML实现21蛋糕网上商城
- Python-直播答题助手自动检测出题搜索
- OpenCV入门教程+OpenCV官方教程中文版
- Python 串口工具源码+.exe文件
- Python开发的全栈股票系统.zip
- Python操作Excel表格并将其中部分数据写
- python书籍 PDF
- 利用python绘制散点图
- python+labview+No1.vi
- 老男孩python项目实战
- python源码制作whl文件.rar
- python3.5可用的scipy
- PYTHON3 经典50案例.pptx
- 计算机科学导论-python.pdf
- python模拟鼠标点击屏幕
- windows鼠标自动点击py脚本
- 鱼c小甲鱼零基础学python全套课后题和
- Python 练习题100道
- Practical Programming 2nd Edition
- wxPython Application Development Cookbook
- python 3.6
- Python 3.5.2 中文文档 互联网唯一CHM版本
- python3.5.2.chm官方文档
评论
共有 条评论