Комментарии:
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
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.
ОтветитьTake this down or update this dinosaur code. The standard is Python 3.13.
Ответитьyou go too fast. But overall is good
Ответитьmy copilot sent me here!
Ответитьvery helpful just I get this error when I visit the site: jinja2.exceptions.TemplateSyntaxError: Encountered unknown tag 'endblock'.
Ответитьi like how he suddely says whoops at any slight typing mistake, funny and cute
Ответить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 ?
ОтветитьShould the update function use the "PUT" method instead of "POST"?
ОтветитьLovving the viddoe but sure if it woudldnt commit a typo every 3segfconds wouldd last half of itt❤
Ответитьthank you a lot
ОтветитьIs there some other alternative to heroku? I cant get it to work
ОтветитьMan, I'm trying. Great video but every step is a new error
ОтветитьWindows:
1) 'pip3 install virtualenv'
2) '-m virtualenv env'
3) '.\env\Scripts\activate.bat'
you don't explain anything
Ответитьthis video outdated and sucks. you make style changes without ever showing the user
ОтветитьNo Basic concept, No idea of how this all works, Just a code copy vedio. Not good choice Codecamp
ОтветитьThank you for your lesson.
Ответить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.
ОтветитьWhat is the font you are using for your editor?
Ответитьthis is the best flask tutorial i've ever seen
ОтветитьExcellent Video... What theme and font family are you using in VS Code?
Ответить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
Great contribute..
ОтветитьU are a bad teacher
ОтветитьBro is good
Ответитьbroccoli !!! You were close though
ОтветитьI cannot thank you enough
ОтветитьAmazing tutorial! Thanks!
ОтветитьSuper succint and useful, thanks!
ОтветитьI cant figure out why i cant import db I deel so lost
ОтветитьThis is seriously the best and easiest Flask tutorial I've come across. Yet to see better tutorials on anything except freeCodeCamp!
Ответить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.
ОтветитьI think it will be easy cause i mastered python 😂
Ответитьfunnily enough
my code works with ToDo not Todo
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()
```
Thank you so much for making this nice video!
ОтветитьI cannot do the import app from db, it just returns ModuleNotFoundError: No module named 'app'
Ответитьit's stunning that no chatgpt were existing when this tutorial was made
ОтветитьOutdated
ОтветитьThank you. I finally have a development project in Python now. And ofcourse I am gonna keep learning
Ответить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!
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.
ОтветитьThank you very much!!!
Ответить