资源简介
用Python加Flask写的一个植物商城网站,dd带有有后台的,账号密码都是admin。数据库使用的mysql,下载后得运行一下model文件创建数据表
代码片段和文件信息
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2018/8/10 11:48
# @Author : y
import sys
from flask import Flask send_from_directory
# app = Flask(__name__)
reload(sys)
sys.setdefaultencoding(‘utf8‘)
from flask import redirect url_for render_template
from config import app
from blog.views import blog
from shop.views import shop upload_path Prices
from shop.models import getALLcartsgetALLShopfindID
from user.model import findUser
from user.views import user session escape
# from index.views import home_page
from about.views import about_Us
from error_request.views import error
from admin.views import admin # 商城管理模块
# from productManagement.views import product
app.register_blueprint(blog url_prefix=‘/blogs/‘) # 博客
app.register_blueprint(shop url_prefix=‘/shoping‘) # 商城
app.register_blueprint(user url_prefix=‘/user‘) # 用户
# app.register_blueprint(home_page url_prefix=‘/index‘) # 首页
app.register_blueprint(about_Us url_prefix=‘/about‘) # 关于 帮助 FAQ
app.register_blueprint(error url_prefix=‘/error‘) # 错误页面处理
app.register_blueprint(admin url_prefix=‘/admin‘)
# app.register_blueprint(producturl_prefix=‘/productManagement/‘) # 商品管理页面
# 首页
@app.route(‘/‘)
def index():
if ‘username‘ in session:
carts = getALLcarts(escape(session[‘username‘]))
return render_template(“index.html“ carts=carts totalPrices=Prices(carts)adminUser=findUser(escape(session[‘username‘]))shoplist=getALLShop())
return render_template(“index.html“shoplist=getALLShop())
@app.route(‘/profile//‘)
def send_files(filenames):
return send_from_directory(upload_path filenames)
# 暂时没用
@app.route(‘/shopxq/‘)
def spxq(id):
sp = findID(id)
return render_template(‘index.html‘spp=sp shoplist=getALLShop())
if __name__ == ‘__main__‘:
app.run(debug=True threaded=True)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-08-29 20:02 shoping\.idea\
文件 197 2018-08-10 14:09 shoping\.idea\encodings.xm
目录 0 2018-08-15 08:47 shoping\.idea\inspectionProfiles\
文件 809 2018-08-15 08:43 shoping\.idea\jQuerybootstrapMoban.iml
文件 288 2018-08-10 11:48 shoping\.idea\misc.xm
文件 292 2018-08-10 00:14 shoping\.idea\modules.xm
文件 35484 2018-08-29 20:02 shoping\.idea\workspace.xm
目录 0 2018-08-15 08:51 shoping\about\
文件 155 2018-08-12 11:57 shoping\about\__init__.py
文件 224 2018-08-15 08:40 shoping\about\__init__.pyc
文件 554 2018-08-15 08:51 shoping\about\views.py
文件 924 2018-08-15 08:51 shoping\about\views.pyc
目录 0 2018-08-26 10:50 shoping\admin\
文件 154 2018-08-18 08:45 shoping\admin\__init__.py
文件 224 2018-08-25 14:33 shoping\admin\__init__.pyc
文件 155 2018-08-19 10:04 shoping\admin\model.py
文件 3787 2018-08-26 10:50 shoping\admin\views.py
文件 4286 2018-08-26 10:50 shoping\admin\views.pyc
文件 1986 2018-08-28 23:16 shoping\app.py
目录 0 2018-08-12 10:52 shoping\blog\
文件 155 2018-08-12 10:31 shoping\blog\__init__.py
文件 223 2018-08-12 10:37 shoping\blog\__init__.pyc
文件 493 2018-08-12 10:50 shoping\blog\views.py
文件 799 2018-08-12 10:52 shoping\blog\views.pyc
文件 336 2018-08-22 21:03 shoping\config.py
文件 430 2018-08-22 21:04 shoping\config.pyc
目录 0 2018-08-15 08:41 shoping\error_request\
文件 155 2018-08-12 12:03 shoping\error_request\__init__.py
文件 232 2018-08-15 08:41 shoping\error_request\__init__.pyc
文件 447 2018-08-12 12:04 shoping\error_request\views.py
文件 776 2018-08-15 08:41 shoping\error_request\views.pyc
............此处省略353个文件信息
相关资源
- 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官方文档
评论
共有 条评论