from flask import * app=Flask(__name__) @app.route("/") def algus(): return "Tere, klass" if __name__=="__main__": app.run(port=80)