From 0ae8a29bfdcc02e38eb1913e30da3604fd587fa9 Mon Sep 17 00:00:00 2001 From: H4CK3R-01 Date: Tue, 8 Mar 2022 15:11:39 +0100 Subject: [PATCH] Added app.py --- .gitignore | 1 + app.py | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 .gitignore create mode 100644 app.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bc8a670 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea/* \ No newline at end of file diff --git a/app.py b/app.py new file mode 100644 index 0000000..5d20a01 --- /dev/null +++ b/app.py @@ -0,0 +1,12 @@ +from flask import Flask + +app = Flask(__name__) + + +@app.route('/') +def hello_world(): # put application's code here + return 'Hello World!' + + +if __name__ == '__main__': + app.run()