BirthdayM / main.py
ayush2917's picture
Update main.py
9c58891 verified
raw
history blame
191 Bytes
from flask import Flask
app = Flask(__name__)
@app.route('/')
def home():
return "Hello, Manavi! This is a test page."
if __name__ == "__main__":
app.run(host='0.0.0.0', port=5000)