Developing RESTful APIs with Python and Flask

PHOTO EMBED

Thu Mar 03 2022 07:16:14 GMT+0000 (Coordinated Universal Time)

Saved by @morristech #python

from flask import Flask
app = Flask(__name__)


@app.route("/")
def hello_world():
  return "Hello, World!"
content_copyCOPY

https://auth0.com/blog/developing-restful-apis-with-python-and-flask/