Created
          February 17, 2021 13:00 
        
      - 
      
- 
        Save lmas3009/5451e421f6dca0406c1ed5afc8eef006 to your computer and use it in GitHub Desktop. 
    Flask CRUD Operations
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 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