Skip to content

Instantly share code, notes, and snippets.

@lmas3009
Created February 17, 2021 13:00
Show Gist options
  • Save lmas3009/5451e421f6dca0406c1ed5afc8eef006 to your computer and use it in GitHub Desktop.
Save lmas3009/5451e421f6dca0406c1ed5afc8eef006 to your computer and use it in GitHub Desktop.
Flask CRUD Operations
from flask import *
app = Flask(__name__)
@app.route("/")
def index():
return "<h1>Welcome to the tutorial of Flask CRUD Operations</h1>"
if __name__ == "__main__":
app.run(debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment