views.py 183 B

1234567891011121314
  1. # -*- coding: utf-8 -*-
  2. from flask import Flask
  3. app = Flask(__name__)
  4. @app.route("/")
  5. def index():
  6. return "this is my test project!"
  7. if __name__ == "__main__":
  8. app.run()