From 2122e3a3c083fdcf192d4f3028c0a3c5208ff92b Mon Sep 17 00:00:00 2001 From: Ishita Biswas <96479014+ishistarx@users.noreply.github.com> Date: Sat, 1 Oct 2022 00:26:04 +0530 Subject: [PATCH] flask --- Python/flask.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Python/flask.py diff --git a/Python/flask.py b/Python/flask.py new file mode 100644 index 0000000..45e40db --- /dev/null +++ b/Python/flask.py @@ -0,0 +1,9 @@ +from flask import Flask + +ishi=Flask(__name__) +@ishi.route("/Ishita") +def hello(): + s=" I am Ishita " + return s +if __name__=='__main__': + ishi.run(debug=False)