Create app.py

This commit is contained in:
anilreddy9100 2022-12-20 10:55:51 +05:30 committed by GitHub
parent 066a35dd32
commit a788ac9e12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

8
app.py Normal file
View file

@ -0,0 +1,8 @@
# save this as app.py
from flask import flask
app = flask(_name_)
@app.route("/")
def hello():
return "hello,world!"