Комментарии:
Thank you very much!!!
ОтветитьIf you are a complete beginner to flask, rather read through the basic syntax first and then watch this tutorial to get a sense of what's happening. otherwise its a good short, succinct overview of CRUD application in flask.
ОтветитьThis video is like listening tests when you're learning a new language... and I'm here for it! Especially when if I'm really lost, google or ai can explain it simply so the flow of the vidio isnt lost by the slow explanations.
Especially good because I have very basic knowledge of HTML and python!
Thank you. I finally have a development project in Python now. And ofcourse I am gonna keep learning
ОтветитьOutdated
Ответитьit's stunning that no chatgpt were existing when this tutorial was made
ОтветитьI cannot do the import app from db, it just returns ModuleNotFoundError: No module named 'app'
ОтветитьThank you so much for making this nice video!
Ответитьgreat tutorial! comprehensive and concise. I did have an issue with the DB creation step, so I ended up creating a separate file to execute the SQLite creation. The code is as follows. You can name the file anything you want, for anyone else having the same issue.
```import sqlite3
connection = sqlite3.connect("tasks.db")
cursor = connection.cursor()
create_table_query = """
CREATE TABLE IF NOT EXISTS tasks (
id INTEGER PRIMARY KEY,
content TEXT NOT NULL,
completed INTEGER DEFAULT 0,
date_created TEXT DEFAULT CURRENT_TIMESTAMP
);"""
cursor.execute(create_table_query)
connection.commit()
```
funnily enough
my code works with ToDo not Todo
I think it will be easy cause i mastered python 😂
ОтветитьAs a beginner, this is a terrible course. barely anything was explained. You cant call something a course and assume the audience know what you're talking about, unless you say so.
ОтветитьThis is seriously the best and easiest Flask tutorial I've come across. Yet to see better tutorials on anything except freeCodeCamp!
ОтветитьI cant figure out why i cant import db I deel so lost
ОтветитьSuper succint and useful, thanks!
ОтветитьAmazing tutorial! Thanks!
ОтветитьI cannot thank you enough
Ответитьbroccoli !!! You were close though
ОтветитьBro is good
ОтветитьU are a bad teacher
ОтветитьGreat contribute..
Ответить1. if youre on windows this doesnt work. This is done on linux
2. they only mentioned a windows alternative the first time it created a problem, but there is gonna be problems a dozen different times after that for which they did not provide disclaimers or alternatives
3. you're gonna spent more time debugging or trouble shooting than actually learning flask - which is still a learning experience but not exactly what I was here for.
4.youre just typing his code as fast as you can without much explanation for anything
Excellent Video... What theme and font family are you using in VS Code?
Ответитьthis is the best flask tutorial i've ever seen
ОтветитьWhat is the font you are using for your editor?
ОтветитьThe only problem with this video is that you didnt let us know that where the app.route is located is significant to the stability of the code.
ОтветитьThank you for your lesson.
ОтветитьNo Basic concept, No idea of how this all works, Just a code copy vedio. Not good choice Codecamp
Ответитьthis video outdated and sucks. you make style changes without ever showing the user
Ответитьyou don't explain anything
ОтветитьWindows:
1) 'pip3 install virtualenv'
2) '-m virtualenv env'
3) '.\env\Scripts\activate.bat'
Man, I'm trying. Great video but every step is a new error
ОтветитьIs there some other alternative to heroku? I cant get it to work
Ответитьthank you a lot
ОтветитьLovving the viddoe but sure if it woudldnt commit a typo every 3segfconds wouldd last half of itt❤
ОтветитьShould the update function use the "PUT" method instead of "POST"?
ОтветитьI have a question. I feel like memorizing all of this wouldn't be necessary, how do you guys go about learning this ? Do you memorize all of it ?
Ответитьi like how he suddely says whoops at any slight typing mistake, funny and cute
Ответитьvery helpful just I get this error when I visit the site: jinja2.exceptions.TemplateSyntaxError: Encountered unknown tag 'endblock'.
Ответитьmy copilot sent me here!
Ответитьyou go too fast. But overall is good
ОтветитьTake this down or update this dinosaur code. The standard is Python 3.13.
ОтветитьThis guy should've slowed down. Him having to delete 3 letters at a time, because he typed them wrong the first time doubled the length of the video.
Ответитьplease someone should help me, my FLASK is not receiving post request which means
where i said if request.method == "POST"
when i printed it to debug it returns GET instead of POST