Home

Published

- 1 min read

https flask

img of https flask

The solution for this is noted below

https flask

Solution

   from flask import Flask
app = Flask(__name__)

@app.route("/")
def hello():
    return "Hello World!"

if __name__ == "__main__":
    app.run(ssl_context='adhoc')

Try other methods by searching on the site. That is if this doesn’t work