python学习

This commit is contained in:
2019-07-17 16:36:59 +08:00
commit 596a0bf6bf
786 changed files with 300160 additions and 0 deletions

1
web/__init__.py Normal file
View File

@@ -0,0 +1 @@
# -*- coding: utf-8 -*-

View File

@@ -0,0 +1 @@
# -*- coding: utf-8 -*-

8
web/controllers/index.py Normal file
View File

@@ -0,0 +1,8 @@
# -*- coding: utf-8 -*-
from flask import Blueprint
route_index = Blueprint( 'index_page',__name__ )
@route_index.route("/")
def index():
return "Hello World"