python学习

This commit is contained in:
2019-07-21 18:20:01 +08:00
parent 7bd7a50cff
commit 11752bbb8d
405 changed files with 72156 additions and 529 deletions

View File

@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from flask import Blueprint,render_template
route_stat = Blueprint( 'stat_page',__name__ )
@route_stat.route( "/index" )
def index():
return render_template( "stat/index.html" )
@route_stat.route( "/food" )
def food():
return render_template( "stat/food.html" )
@route_stat.route( "/member" )
def memebr():
return render_template( "stat/member.html" )
@route_stat.route( "/share" )
def share():
return render_template( "stat/share.html" )