Toggle navigation
Toggle navigation
This project
Loading...
Sign in
万朱浩
/
Venue-Ops
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
戒酒的李白
2024-07-02 16:04:07 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
82127815276ef2a7dd82ead9379995f419a3568c
82127815
1 parent
bc669ec3
【app.py】项目入口文件,helloFlask!
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
app.py
app.py
0 → 100644
View file @
8212781
1
+
from
flask
import
Flask
2
+
3
+
app
=
Flask
(
__name__
)
4
+
5
+
@app.route
(
'/'
)
6
+
def
hello
():
7
+
return
"小学期快乐!"
8
+
9
+
if
__name__
==
'__main__'
:
10
+
app
.
run
()
Please
register
or
login
to post a comment