Flask-Web-App-Tutorial icon indicating copy to clipboard operation
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

C:\Users\CBAS\AppData\Local\Programs\Python\Python37\lib\site-packages\flask_sqlalchemy\__init__.py:834: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning. 'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and...

In models.py, when I run from . import db, I get the error ImportError: attempted relative import with no known parent package. Both __init__.py and models.py are inside the folder...

When i type this for the main.py it shows invalid syntax when i run it from website import create_app app = create_app() if __name__ == '__main__': app.run(debug=True) and when i...

Traceback (most recent call last): File "main.py", line 3, in app = create_app() File "C:\Users\samud\OneDrive\Documents\Notes App\website\__init__.py", line 21, in create_app from .models import User, Note File "C:\Users\samud\OneDrive\Documents\Notes App\website\models.py", line 4,...

There was a typo in the word "installation" in the READ.md file. This has now been fixed.

Just fixed a spelling mistake.

https://github.com/techwithtim/Flask-Web-App-Tutorial/blame/ed8c8b0e589319aad6d5799e7e83103ca1faf425/website/auth.py#L59

my auth.py and login.html file doesnt haave any error. the signup page flash messages work but login page flash messages are not showing. and even after pressing login button nothing...

Hi there, So as I'm following the video as typing the code i got into the login_requried mode in views.py. As i put the @login_required in views.route as Tim showed,...