Petermoyano commited on
Commit
b46c888
·
1 Parent(s): 0330a5c

first commit

Browse files
Files changed (2) hide show
  1. .gitignore +5 -0
  2. app.py +10 -0
.gitignore ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ .vscode/
2
+ venv/
3
+ __pycache__/
4
+ *.pyc
5
+ *.pyo
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ from flask import Flask
2
+
3
+ app = Flask(__name__)
4
+
5
+ @app.route('/')
6
+ def hello_world():
7
+ return 'Hello, World!'
8
+
9
+ if __name__ == '__main__':
10
+ app.run(debug=True)