Flask-Web-App-Tutorial
Flask-Web-App-Tutorial copied to clipboard
Code for the note storing flask web app made during a YouTube video.
Results
102
Flask-Web-App-Tutorial issues
Sort by
recently updated
recently updated
newest added
`def create_database(app):` ` if not path.exists('website/' + DB_NAME):` ` with app.app_context():` ` db.create_all()` ` print('Created Database!')` ` else:print("Database exists")` Replaced the old app=app and got no errors. However even thow...