Join my free course on the basics of Flask-SQLAlchemy: prettyprinted.com/flasksql
@slhermit4 жыл бұрын
Great teaching
@anneest5 жыл бұрын
Thank you Anthony for another great introduction video!
@JohnnyGrateful4 жыл бұрын
Amazing content. Straight to the point and super clear. Thank you!
@iaashu985 жыл бұрын
Thank you so much. You just saved me. Thank you many times. Love from India. Guruji 🙏
@caba37604 жыл бұрын
Nice! Thanks for the video. I also like it when there is a macro explanation, lets say using boxes and arrows, so that one understands the relation between flask, python, database, etc.
@leandrolopesleal264 жыл бұрын
Thank tou from Brazil!!!
@zael78485 жыл бұрын
The book i just bought isn't good explaining this part, but your video make it simple and interesting, thanks for the help.
@xz75254 жыл бұрын
The Grinberg book? I'm in the same boat...
@zael78484 жыл бұрын
@@xz7525 yes, the same book my random friend.
@miosz9524 жыл бұрын
Hey! Great introduction tutorial, I'll definetly check full course. I have one question, what I should install to use sqlite3 commend in terminal?
@ismet11114 жыл бұрын
Don't have to install sqllite3. It is a built in package for python
@tymothylim65503 жыл бұрын
Thank you very much for this video! This video was really clear and helpful :)
@DanielMCorrea14 жыл бұрын
Thanks a lot, your content was very helpful.
@Zero2222-z4u2 жыл бұрын
If somebody is having "RuntimeError: Working outside of application context." when trying to create the database I repaired it by doing: from app import app, db app.app_context().push() db.create_all()
@davidbierman57172 жыл бұрын
Thank you
@aditya_shekhar4 жыл бұрын
What are the extensions used in VSCode?
@OrientalMelodies20104 жыл бұрын
Awesome as usual!! Thanks a lot!
@avisekssarma55924 жыл бұрын
Thank you as always.
@rakkaalhazimi36724 жыл бұрын
Good tutorial, I will consider watching ur course later
@meomeoaja18225 жыл бұрын
謝謝分享, 非常棒的影片. thank you for sharing the awesome video. ---student from Taiwan
@prettyprinted5 жыл бұрын
You're welcome! Thanks for watching.
@sashastage55674 жыл бұрын
thank you!!
@JoeWong815 жыл бұрын
Thanks for the tutorial bro
@walidanon23725 жыл бұрын
thats great job!! thank you...
@elenaperez63273 жыл бұрын
Great tutorial thanks! Can you tell me how I would go about inserting an image into the database please?
@theenthucoder10964 жыл бұрын
Hi Anthony, Could you make a video on how to deploy the flask-sqlalchemy code with multiple requests into Azure?
@rangabharath42535 жыл бұрын
Awesome as always 👍😀
@prettyprinted5 жыл бұрын
Thanks for watching!
@mahiansari18634 жыл бұрын
Thank you very much...it was very helpfull
@annujolly30244 жыл бұрын
Great video
@hellokitty-k9z6d5 жыл бұрын
is there a video explaining the working of a python project tree, especially flask?
@michaelsindile6543 жыл бұрын
Do you perhaps have a course that covers flask admin
@Stenominator4 жыл бұрын
Thanks man. Great videos. Just... this video is no. 25 on your playlist, and it is about getting started... :D
@l.l.l.management21494 жыл бұрын
Thank you for your tutorial video! from Japan.
@prettyprinted4 жыл бұрын
You're welcome!
@buuqmarabo27785 жыл бұрын
thanks for your help.
@prettyprinted5 жыл бұрын
You're welcome!
@naheliegend52224 жыл бұрын
Hey, I have a question: How do you learn the fancy terminal stuff? I stillt don't know what happens when I am putting "python" in the terminal :D
@hannibalbra28082 жыл бұрын
Hello can i connect to exist database
@vvkkumar36914 жыл бұрын
Can we issue multiple query with single session object ?
@bonaoenchelcha5 жыл бұрын
thanks for subtitles XD
@imlautaro1234 жыл бұрын
Great video
@michal.nalevanko5 жыл бұрын
Thanks for the video! One question, though. Why didn't you use the string keyword when defining the routes, like app.route(/)?
@prettyprinted5 жыл бұрын
String is the default option, so nothing changes if you omit it. Although it can be a good idea in real apps to make things more explicit.
@ramyattalla71684 жыл бұрын
I can't create the database for some reason. When i write from app import db i get: from: can't read /var/mail/app What does that mean?
@asmaarshad76954 жыл бұрын
AOA sir mera 1 error a raha h yah wala ModuleNotFoundError: No module named 'flask_sqlalchemy' m n exactly asy hi kiya h jasa ap n vikdeo m kerwaya h . mera error kasy resolve ho g kindly plz bata dy
@henryboey69184 жыл бұрын
PLEASE HELP I HAVE UNRESOLVE ATTRIBUTE REFERENCE 'COLUMN' . I DID ALL THE CONFIGURATIONS BUT STILL THE SAME
@sanjjushrivarshiniraids16103 жыл бұрын
i am not able to create db file with this procedure
@heral154 жыл бұрын
Hi, i am developping a project. In my project it says that User has no attribute "query" when i do User.query.all(). Do you know why ? i don't know if the problem is some import
@prakashsrinivasan37343 жыл бұрын
sqlalchemy.exc.IntegrityError: (sqlite3.IntegrityError) datatype mismatch [SQL: INSERT INTO user (name, email) VALUES (?, ?)] [parameters: ('abc', 'jsadhfh')] Can I know why am I getting this error ? I have tried googling on this and was unable to find the reason behind it. Thanks in advance .
@Raldenaldrin2 жыл бұрын
How can you print the word "California"? You didn't typed the word California
@albredka27204 жыл бұрын
great!
@petefritz56795 жыл бұрын
Regarding the date created value, will it change if I update a row? For example suppose Zack moves from Sydney to Perth and the table gets updated will the date created value automatically change?
@prettyprinted5 жыл бұрын
No, the date created value won't update automatically unless you write code to do that. If you should be able to use 'onupdate' inside of your column definition to set the date each time the model updates.
@petefritz56795 жыл бұрын
@@prettyprinted Thanks
@med64024 жыл бұрын
can you please give me a hint on how to update data automatically shown in a webpage from a database without refreshing the hole page
@lucasino204 жыл бұрын
if __name__ == '__main__' : app.run(debug = True)
@hbrahmbhatt33694 жыл бұрын
Hii sir my db which is myphpadmin is not getting from MySQL uri so what I can do
@brianfiszman31795 жыл бұрын
Why do everyone in these tutorials show the models stuffed in the app.py? I'm looking everywhere how to do it in separate files like a normal MVC project. Am I missing something?
@prettyprinted5 жыл бұрын
It's not always worth it to set up a complete file structure for a simple exist. Check out my recent full app videos like the Q&A app in Flask. It might have the folder structure you want, and I include a code link in the video as well.
@kanishk94903 жыл бұрын
Why didn't I find your channel earlier
@nostergenesis30815 жыл бұрын
Your videos are not in order, can u please give their order details.....Getting Started with Flask SqlAlchemy is the 19th video...It should be the first.....PS : THANKS IN ADVANCE
@elizabethmathew34004 жыл бұрын
I am getting no module named app error..why?
@adeki3404 жыл бұрын
Replace 'app' with the name of your .py file. My python file was named main.py so i had to type 'from main import db'
@ronaldronald88195 жыл бұрын
Hi. Great tutorial. Thanks! Had some issue with linting members SQLAlchemy not recognised erros with db.Column, etc stackoverflow.com/questions/53975234/instance-of-sqlalchemy-has-no-column-member What linter are you using?
@jacobward73614 жыл бұрын
this fixed it for me stackoverflow.com/a/61155831/7274182
@ChupoCro3 жыл бұрын
Doesn't work with Python 2.7 because *pylint-flask-sqlalchemy* works only with Python 3.x
@one_lettersandnumbers5 жыл бұрын
How do you add an index to a column of a table with Flask-SQLAlchemy?
@prettyprinted5 жыл бұрын
You can just add the index=True parameter to the column when you create it.
@kumarmrinal19924 жыл бұрын
How to use Flask_SqlAlchemy in blueprints
@dennisasamoah22134 жыл бұрын
great
@aqeeljabbar74044 жыл бұрын
nice
@fletcherlarue34404 жыл бұрын
Maybe it's obvious, by does just sqlalchemy not work with flask? Why use flask-sqlalchemy?
@riverscuomo5 жыл бұрын
How To Download & Install SQLite Tools www.sqlitetutorial.net/download-install-sqlite/ Adding sqlite to PATH on Windows: stackoverflow.com/questions/9546324/adding-directory-to-path-environment-variable-in-windows
@zolongOne5 жыл бұрын
Flask is easier to learn than django
@xn4pl5 жыл бұрын
I think that even though Flask is easier to learn, Djando lets you do more complex stuff much more easier than in Flask, if you put your time to learn it.
@RizwanAli-ki3bx4 жыл бұрын
if I delete some record from the database they are still showing in API call even records not exists in the database, but if I refresh or restart the server then it shows no record, Can you please help me?