app.py 165 B

123456789
  1. from flask import Flask
  2. app = Flask(__name__)
  3. @app.route('/about')
  4. def about():
  5. return 'This is the about page'
  6. if __name__ == "__main__":
  7. app.run(debug=False)