from flask import Flask
app = Flask(__name__)
@app.route('/', methods=['GET'])
def index():
return 'hello'
if __name__ == '__main__':
app.run()
For further actions, you may consider blocking this person and/or reporting abuse
from flask import Flask
app = Flask(__name__)
@app.route('/', methods=['GET'])
def index():
return 'hello'
if __name__ == '__main__':
app.run()
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)