example.py 322 B

12345678910111213141516171819
  1. from flask import Flask
  2. app = Flask(__name__)
  3. @app.route("/")
  4. def hello():
  5. return "Hello World!"
  6. @app.route("/about/<path:path>/hello")
  7. def hello1(path):
  8. return "about1"
  9. @app.route("/about")
  10. def hello2():
  11. return "about2"
  12. print app.url_map
  13. if __name__ == "__main__":
  14. app.run(host="0.0.0.0", port=8888)