FastAPI - A python framework | Full Course

  Рет қаралды 878,462

Bitfumes - AI & LLMs

Bitfumes - AI & LLMs

Күн бұрын

Пікірлер: 787
@Bitfumes
@Bitfumes 3 жыл бұрын
Please like and comment which portion of this course you liked most
@himanshutewari8503
@himanshutewari8503 3 жыл бұрын
Watched till 2:04:06, I liked the way u described this Framework.
@sarthakchhabra9471
@sarthakchhabra9471 3 жыл бұрын
It' nice to see my name on login credentials 😂
@manuchehrme
@manuchehrme 3 жыл бұрын
Thanks for course. It's understandable.
@rajushawankar750
@rajushawankar750 3 жыл бұрын
@@himanshutewari8503 eueeeee
@lucaskouami6505
@lucaskouami6505 3 жыл бұрын
JWT and Oauth2 very nice
@MrJP476
@MrJP476 3 жыл бұрын
As a note I am 2 hours in right now and have a couple things to note: 1) This tutorial is very helpful. You are doing an awesome job explaining the content and I like that you show when you make a minor mistake. 2) If you have made it to the point that your are implementing update and delete and are watching your console as well as using the docs you have probably noticed that the console is throwing errors for these 2 functions. You are not crazy. Because we are running this with the --reload parameter the crashes are ignored and the page is instantly reloaded. You will notice that the actions are being executed properly and can be seen doing so in the docs and the database viewer. The crash is happening for a different reason on each function: Delete - When using status code 404 your return message can have no body. What that means is when he is send a message "Blog successfully deleted", or whatever was written, it isn't actually able to be sent and is causing a crash (which is hidden by --reload). You can fix this by having your return statement say -> return Response(status_code=status.HTTP_204_NO_CONTENT) Update - When using db.query(models.Blog).filter(models.Blog.id == id).update(request) you are saying to attempt and update every item that would be passed in the request. In doing this you allow it to attempt and change attributes that have no data or attributes that you may not think exist. This is what causes the crash here (again hidden by --reload). You can fix this with a minor change to the statement -> db.query(models.Blog).filter(models.Blog.id == id).update(request.dict()) It is my belief that by specifying that you wish to update the request dictionary you are attempting to change only those items that have been specified in the request instead of writing over everything. Again I really do love this tutorial and am learning a lot from this. I just wanted to help some people out because I know it was bothering me that I was seeing crash reports that weren't being shown on your side.
@emmanueloluga9770
@emmanueloluga9770 2 жыл бұрын
Thank you for this.
@iliyasshaik9582
@iliyasshaik9582 2 жыл бұрын
that second point made me loose my mind your answer was helpful.thank you for your time to explain and kindness.KEEP HELPING.
@07082012
@07082012 2 жыл бұрын
Best comment to this video. Thank you!
@khalidsultani1896
@khalidsultani1896 2 жыл бұрын
thank you very much on providing solution to these issues.
@Likith_Prince
@Likith_Prince 2 жыл бұрын
Thank you very much, @James Phillips, I am searching for this solution everywhere, except this comment section. when I see this I got it correct and the code is working fine. thanks and thanks for Bitfumes also. looking forward to more videos like this...❤❤
@sonnguyenthanh6811
@sonnguyenthanh6811 3 жыл бұрын
This is the best API creating tutorial I have ever watch in my entire life, I just watch it for 4 hours straight, very helpful, easy to follow. Thank you so so much for your excellent work. Very appreciate it!
@Bitfumes
@Bitfumes 2 ай бұрын
Thanks for your love and support, keep learning. Join bitfumes newsletter bitfumes.com/newsletters
@Fae_Florence
@Fae_Florence 2 жыл бұрын
I have never seen youtube content this detailed. Most times when I start a course I stop halfway because I keep running into errors that the tutor didn't warn me about. But here, you've given every detail and made the learning process enjoyable. Also, you have a very calming and reassuring voice. Thanks for sharing.
@zombaju
@zombaju 3 жыл бұрын
You have very cool courses, I completed a whole course on Vue while filling a whole notebook with notes. This 10 hour course on Vue took me two months but it was a solid learning experience. Now I need an API to generate a list of books I have at home, so I will be learning FastAPI from your course. Greetings from Poland.
@TonyUnderscore
@TonyUnderscore 3 жыл бұрын
Note that in order to enforce authentication in the entire sub route you can add "dependencies=[Depends(get_current_user)]" to the APIRouter constructor instead of adding it individually to all the methods (which you may or may not prefer)
@massmedia6516
@massmedia6516 2 жыл бұрын
But how to get user data in jwt token(payload)
@daniellaerachannel
@daniellaerachannel 3 жыл бұрын
this is what I call quality content
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks bro, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@suyashsathe1641
@suyashsathe1641 3 жыл бұрын
I must say this is an excellent tutorial. I like the way you touched bases with all the basic concepts and I don't have to google around the technical jargons. Great job mate. Excellent quality stuff for an absolute beginner. I highly appreciate it. Cheers!
@swapnonilmukherjee406
@swapnonilmukherjee406 4 ай бұрын
This is seriously an A class tutorial, easy to follow, no garbage codes and not making unnecessarily complex, and most importantly, production friendly, helped me a lot, thanks :)
@Bitfumes
@Bitfumes 4 ай бұрын
Glad you liked it! Thanks for your love and support, keep learning. Join bitfumes newsletter bitfumes.com/newsletters
@baloney_sandwich
@baloney_sandwich 6 ай бұрын
this is the best video so far on youtube from someone who can actually present and speak
@alessandroferrari2166
@alessandroferrari2166 3 жыл бұрын
thanks, this is the best FastAPI course on KZbin right now. Full of actual examples, clear, detailes. Thank you!
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@Asdasdas1337
@Asdasdas1337 3 жыл бұрын
Only halfway trough the video, but commenting for the algorithm because so far it has been well explained. Good job and thanks for the video.
@Bitfumes
@Bitfumes 3 жыл бұрын
Your help is much appreciated, suggestion for any other framework ?? Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@Asdasdas1337
@Asdasdas1337 3 жыл бұрын
@@Bitfumes I would love to see a Rust course. I have been looking at actix and I'm still trying to decide if I should go with Python which I'm pretty comfortable with or keep learning Rust.
@waqarahmed-si2dm
@waqarahmed-si2dm 3 жыл бұрын
Uh My
@yahyakhan-rr9ei
@yahyakhan-rr9ei Жыл бұрын
Coming from Django background, most of things were easy to understand. tutor felt quit slow but it was worth it.
@rakeshhalijol
@rakeshhalijol Жыл бұрын
same here
@GCKteamKrispy
@GCKteamKrispy Жыл бұрын
Same, my employer wants me to know FastAPI
@SiHodgy
@SiHodgy Жыл бұрын
That’s what x1.5 is for
@gunnertwin5633
@gunnertwin5633 2 жыл бұрын
At 2:21:30 instead of using models.User(request), you can use models.User(**request.dict()) to unpack all the items in the dict
@oluwafemiojo4986
@oluwafemiojo4986 10 ай бұрын
Yep; now models.User(**request.model_dump())
@jephtah737
@jephtah737 3 жыл бұрын
This came at the right time, am halfway through the documentation and this video tutorial is really going to help, am planning to start using FastAPI for my IOT Application
@Bitfumes
@Bitfumes 3 жыл бұрын
That would be great, let me know what you are working on, DM me on Twitter
@jkk23-g7c
@jkk23-g7c 2 жыл бұрын
Thank you so much for creating this course. This is truly amazing, especially where you go over the documentation and show how to find the neccecary information. Really enjoyed your course.
@anujchoudhary859
@anujchoudhary859 3 жыл бұрын
As I am watching your content 1st time and it's really awesome. The way you explained every small thing in detail is too good. I have used Flask and Django both in my past and now I wanted to switch and after watching your video I have made my mind to use FastAPI. Thanks a lot for pushing this quality content and yes I am gonna hit that red and bell button.
@Bitfumes
@Bitfumes 3 жыл бұрын
You are awesome Anuj, Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@minaakter4257
@minaakter4257 Жыл бұрын
Sir, I am new in backend.I can't understand the sqlalchemy. Did he connects his project in sqlite Database? I have no idea about database. Please help me. Should i learn sqlite database then come here to complete the full course?? Help plz😢
@serenalee-cultura4085
@serenalee-cultura4085 Жыл бұрын
1 hr in and this tutorial is SO good. Please be my teacher for EVERYTHING ALWAYS!
@AmarR-z4e
@AmarR-z4e Ай бұрын
This is an excellent tutorial to watch! I highly recommend it for anyone starting with FastAPI. The explanations are clear and thorough. Thank you so much for this wonderful tutorial. Please continue making videos like this. Happy coding!🎉❤
@santoshturamari6741
@santoshturamari6741 2 ай бұрын
This is an extensive and detailed tutorial for fastapi. I truely enjoyed it. I faced some issues with update and OAuth2PasswordRequestForm submit. But I am able to resolve by myself. Again Thanks for this tutorial.
@Bitfumes
@Bitfumes 2 ай бұрын
Thanks for this nice review. Please subscribe to my newsletter bitfumes.com/newsletters
@diegtria1
@diegtria1 Жыл бұрын
I'm from Colombia, this course is great, the best part is authentication and JWT. Regards
@gautamkr2935
@gautamkr2935 Ай бұрын
i had been working over other tools and framework for developing API's, So wanted some POC to be done to ensure we can start some migration an this helped me a lot understanding concepts of FATSAPI and hands on. This is simply awesome
@abrorizzatullaev836
@abrorizzatullaev836 10 ай бұрын
Thank you very much, it helped me alot, it is the best course among fastapi lessons
@capitanrdc99
@capitanrdc99 2 жыл бұрын
omg, your video is amazing!!! %100 clear! for my first job interview I had to do an API and I prepared with this video and got the job!!! THANK YOU THANK YOU THANK YOU
@Bitfumes
@Bitfumes 2 жыл бұрын
Great job!
@shreyjain3562
@shreyjain3562 2 жыл бұрын
I was looking to buy course on fastAPI as I'am a beginner in python, but I found your video and it is simply amazing, Thank you for this tutorial
@Bitfumes
@Bitfumes 2 жыл бұрын
Glad it was helpful!
@leeroy6397
@leeroy6397 3 жыл бұрын
Thank you for this video! My English is not good, but this video is very clear. This is best course on KZbin now. I wish you success with the development of your KZbin channel!
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@goldensea9999
@goldensea9999 3 жыл бұрын
Very cool. Was looking to begin my first project weeks ago and could not find any comprehensive FastAPI tutorial video. Thanks
@Bitfumes
@Bitfumes 3 жыл бұрын
This is all for you my brother, Keep learning
@malharlakdawala1
@malharlakdawala1 2 жыл бұрын
Very nicely explained, not like other videos.. where they try to show magic by writing a set of commands, here you referred to documentation for each line, so if we get stuck we know where and what to refer.. Thanks on this
@Bitfumes
@Bitfumes 2 жыл бұрын
Thanks bhai, glad you liked it I will try to make videos like this
@francescociulla
@francescociulla 9 ай бұрын
Sarthak is amazing 🔥🔥🔥🔥
@ayush1344
@ayush1344 4 ай бұрын
Your explanation is just Amazing !!! Crisp and Clear !! Thanks !!
@Bitfumes
@Bitfumes 4 ай бұрын
Glad it was helpful!
@khalidali9604
@khalidali9604 Жыл бұрын
I love this course, U clear every point with good manner, Thanks a lot sir
@Bitfumes
@Bitfumes Жыл бұрын
You are most welcome
@jacoedp
@jacoedp 3 жыл бұрын
Great tutorial, the best fastAPI one ive found so far. Clear explanations and talking through the actual documentation, which is excellent
@Leo-fh7fu
@Leo-fh7fu 3 жыл бұрын
Beautifully explained with lots of patience!! Hats off!!
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@muyiwaobadara
@muyiwaobadara 2 ай бұрын
This is great. Very straightforward Explanation.
@Bitfumes
@Bitfumes 2 ай бұрын
thanks man
@sarkaran
@sarkaran 2 жыл бұрын
I am in the 25:10 i can say you are professional when you try to teach, you even start teaching to us git, very nice, really thank you
@muslimspeakmy
@muslimspeakmy Жыл бұрын
Sarthak is awesome, coz we can see how he finds things also, its so cool.
@Bitfumes
@Bitfumes Жыл бұрын
thanks man
@siumhossain-
@siumhossain- 3 жыл бұрын
hat's off man!!!!!😍 But i hope this is not end game..😅upload more and more on fastApi
@i.paradox
@i.paradox 2 жыл бұрын
best fastapi fasttrack course on youtub . Thanks a ton
@Bitfumes
@Bitfumes 2 жыл бұрын
Glad you think so!
@gagansharma7349
@gagansharma7349 22 күн бұрын
Very Useful Course Still Worth Watching . Hats Off
@adamlakatos7987
@adamlakatos7987 2 жыл бұрын
programmer, teacher, comedian, BIG THX :)
@gurdeepsinghbhatia2875
@gurdeepsinghbhatia2875 Жыл бұрын
hello sir, first of all thanks so much for this wonderfull video , huge respect. Second sir i am facing this issue while creating user : sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) table users has no column named name [SQL: INSERT INTO users (name, email, password) VALUES (?, ?, ?)] ????. So could you please help me in this Anyone can help , it will be great thanks
@digitalstoryteller5240
@digitalstoryteller5240 6 ай бұрын
same issue
@snk2088
@snk2088 2 жыл бұрын
Much respect to the author! This tutorial is amazing!!!
@Bitfumes
@Bitfumes 2 жыл бұрын
Much appreciated!
@Marlem80
@Marlem80 3 жыл бұрын
Such a great quality content here!! Your channel is amazing, thanks a lot for these great videos!! Keep it up!!!
@himanshutewari8503
@himanshutewari8503 3 жыл бұрын
Hi, can you help me with this: Video @timing 2:04:06, while updating the blog I am getting an error: (Error): AttributeError: 'Blog' object has no attribute 'items' So I used: db.query(models.Blog).filter(models.Blog.id == id).update(dict(request)) (or) db.query(models.Blog).filter(models.Blog.id == id).update({'title': request.title, 'body': request.body})
@Byomakesh1
@Byomakesh1 3 жыл бұрын
Bro, Even i am getting the same error. But thanks a lot, for the fix
@siumhossain-
@siumhossain- 3 жыл бұрын
tnx man🤛🏻
@petrockspiracy3120
@petrockspiracy3120 3 жыл бұрын
Absolute lifesaver
@sfraser20
@sfraser20 3 жыл бұрын
Thanks for pointing this out. Appreciate it mate.
@yuvaraj600
@yuvaraj600 3 жыл бұрын
Awesome! Iam learning Springboot and now am blownaway!!
@Bitfumes
@Bitfumes 3 жыл бұрын
Great, keep learning
@omarsabra4434
@omarsabra4434 2 жыл бұрын
The best API course I've ever seen so far
@mikhailgreaves
@mikhailgreaves 2 жыл бұрын
Thank you for this! This was an amazing tutorial that was extremely helpful! I never struggled with any issues, infact even my deployment at the end was getting all the blogs once I authenticated, maybe there was an update that fixed that porting issue. Once again thanks!
@Bitfumes
@Bitfumes 2 жыл бұрын
Thanks for watching, please subscribe and like this video
@muslimspeakmy
@muslimspeakmy 3 жыл бұрын
You really love doing this, I can tell from how your voice starts out slow and your excitement increases as the section goes along. Qudos dude.
@georgeomara
@georgeomara 3 жыл бұрын
This is the best FastAPI tutorial out there! Thanks a lot Bitfumes.
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@sanjarkhamrakulov1152
@sanjarkhamrakulov1152 5 ай бұрын
Assalomu aleykum, Mr Sarthak Thank you very much for your tutorial, I really like it and got so much . hope you are not stopping making videos about FastAPI and good luck for your job!!!!!!!!🥰🥰🥰🥰🥰
@sanashaheen158
@sanashaheen158 Жыл бұрын
This is very helpful for me and superduper for me... Happy to learn many things from there.... Keep it up... too much easy and well understanding concepts there.... Amazingggggggggggggg
@Bitfumes
@Bitfumes Жыл бұрын
thanks for your support, please subscribe to bitfumes channel
@JoshuaLerman
@JoshuaLerman 3 жыл бұрын
This was an excellent course. Thank you so much for making it. I like the exposure to pydantic the best.
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@inganzamarumpu
@inganzamarumpu 3 жыл бұрын
I like this tuto just as much as I like the vueJs one. The only think that many youtubers have to take care is that to switch from dark to light mode is frustrating. Your browser should be in dark mode also or your IDE in light mode as your browser. Thank you!
@Bitfumes
@Bitfumes 3 жыл бұрын
This is a valid point bro, will take care of it Thanks for your nice suggestion
@DacioLima
@DacioLima 3 жыл бұрын
Great Course! Thanks!!! Greetings from Brazil!!!
@Sir_RBort
@Sir_RBort 3 жыл бұрын
The best ever fastapi content of the world, thanks for this amazing course, I m from Brazil and I love your video, everything worked perfectly!!
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@mohanadgad669
@mohanadgad669 3 ай бұрын
I've learned a lot from you. You're amazing, and I appreciate your clean code!
@ibrahimshittu
@ibrahimshittu 3 жыл бұрын
Thanks a lot for the video! Followed till the end, I'm currently battling how to get current authenticated user id, so instead of the owner-id used as 1
@babinjoshi9854
@babinjoshi9854 2 жыл бұрын
I am currently trying to figure out the same. Could you walk me through the solution if you have figured it out?
@burakhanaksoy
@burakhanaksoy 3 жыл бұрын
What extensions do you use for vscode? It looks pretty well
@Greg-qb3qr
@Greg-qb3qr 3 жыл бұрын
The icons look like they're from the Material Icon Theme by Philipp Kief
@mallikarjuna7624
@mallikarjuna7624 3 жыл бұрын
I am very happy today because i learned a lot about fastapi very easily..Thanks .
@shoaibakhtar5889
@shoaibakhtar5889 2 ай бұрын
Here, you will mostly find reviews saying that this tutorial is the best and all, but let me give you an honest review: this tutorial is not beginner-friendly, and the instructor is making it really complicated. I am only commenting here because I want to let those who are not understanding this properly know that you are not alone. In the comments section, you will find positive comments, and you may think that you are the only one who is unable to understand this, but that is not the truth.
@Bitfumes
@Bitfumes 2 ай бұрын
hey thanks for your honest review. I agree that it's not for absolute beginners. but if you know python then it become easy
@perceptron5983
@perceptron5983 2 жыл бұрын
Great job explaining all the concepts!!!! You make it very easy to pick up. Thank you so much for making the complex so easy!!!!!
@prakashs9639
@prakashs9639 2 жыл бұрын
Everything worked fine locally, but after deploying I get a 500 error when trying to use the post, delete, and put methods. Can someone help me with a solution?
@lucasmichels
@lucasmichels 3 ай бұрын
Were you able to solve it?
@allthingsdata
@allthingsdata 3 жыл бұрын
Amazingly great content :-) Really nice end2end walkthrough of all important aspects to get you started. Good structure. Thanks a lot!
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@biswashkoirala
@biswashkoirala 3 жыл бұрын
Please add a note for correction at 2:04:06 update({'title': request.title, 'body': request.body}) May be FastAPI codes changed and just 'request' gives 'AttributeError' now.
@rebekahjames
@rebekahjames 11 ай бұрын
hey! and wt did u use to make it work btw?
@arpansatpathi9645
@arpansatpathi9645 3 жыл бұрын
To all the people who have been commenting for better reach, it's working. I got this amazing video in my recommendation.
@khalidsultani1896
@khalidsultani1896 2 жыл бұрын
This is the best guide to fast api , thanks for posting .
@Bitfumes
@Bitfumes 2 жыл бұрын
Glad you liked it
@jamesjulius9826
@jamesjulius9826 2 жыл бұрын
thank you very much for this wonderfully tutorial, my fast API knowledge is not the same after going through the tutorial ... appreciated.
@Bitfumes
@Bitfumes 2 жыл бұрын
Glad to hear that
@malkitsingh01
@malkitsingh01 2 жыл бұрын
good work! Subd due to the production quality and ofcourse the content.
@Bitfumes
@Bitfumes 2 жыл бұрын
Much appreciated! Thanks for watching, please subscribe and like this video
@nisargpatel8690
@nisargpatel8690 3 жыл бұрын
It’s just fantastic 4 hours. Thank you very much sarthakbhai
@Bitfumes
@Bitfumes 3 жыл бұрын
thanks bro, Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@LookNumber9
@LookNumber9 3 жыл бұрын
There is also an issue in repository -> blog.py. The create function (new_blog) has a hard-coded user_id. How do I get that from the logged-in user?
@piyushramnani1014
@piyushramnani1014 3 жыл бұрын
Good tutorial. Awesome work. I just have one minor issue: Please when you are importing stuff from different packages. Please mention installing that package. Or just do a simple pip3 list to tell us what all modules you have in your virtual env. It took me 20 mins to resolve the SQLalchemy package import error (Cuz it was never installed) lol. But still. Good work. God speed mate.
@regisjosefazoulay5854
@regisjosefazoulay5854 3 жыл бұрын
Why do you prefer ```db.query(models.Blog).filter(models.Blog.id == id).first()``` over ```db.query(models.Blog).get(id)``` for a get one by id request ? The second one seems to have a far lighter and more clear syntax...is there any logic reasons to not use it ?
@viktor_borodin
@viktor_borodin Жыл бұрын
Hi everyone, in 3.10 python we can specify `int | None`, for example, instead `Optional[int]`
@islammurtazaev4891
@islammurtazaev4891 Жыл бұрын
Thanks for the tutorial, the lecturer made it funny to follow ;) Btw, for those who also struggled to fix imports I recommend switching to Pycharm IDE.
@watanpal_ab
@watanpal_ab 3 жыл бұрын
Was looking for just exact tutorial, Thanks Alot Bro😍
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@reold
@reold 3 жыл бұрын
The routing is just like flask, which makes flask devs slide into here(like me)!🤣
@Stigrs87
@Stigrs87 3 жыл бұрын
I`m getting this error: File "C:\Users\Stig Runar\.virtualenvs\Streamticket-GKMNaiqV\lib\site-packages\jose\jws.py", line 185, in _load signing_input, crypto_segment = jwt.rsplit(b'.', 1) AttributeError: module 'streamticket.token' has no attribute 'rsplit'. When trying to access a locked path after i have authorized myself.. Any ideas?
@chandlerrosenthal3914
@chandlerrosenthal3914 3 жыл бұрын
in your example you hard coded user_id to be 1, what would be the correct way to make sure that when a user logs in that they only see the blogs associated with their user_id unless an admin?
@LangDau
@LangDau 2 жыл бұрын
Excellent!! Your explanation is very clear (so far I got 1 hour 20 min). I tried with two other tutor but not got detail as your are.
@Bitfumes
@Bitfumes 2 жыл бұрын
You're welcome!
@marianozalazar4489
@marianozalazar4489 3 жыл бұрын
Thank you man, you really helped me understanding the security part of the docs
@sunayraj
@sunayraj Жыл бұрын
Man you are a 💎.. Seriously one can easily drag this to a 20+ hour paid tutorial from this much content. Thank you so much. ♥️
@minaakter4257
@minaakter4257 Жыл бұрын
Sir, I am new in backend.I can't understand the sqlalchemy. Did he connects his project in sqlite Database? I have no idea about database. Please help me. Should i learn sqlite database then come here to complete the full course?? Help plz😢
@anupambayen5554
@anupambayen5554 3 жыл бұрын
It is fantastic tutorial helps me a lot to build an api based application.
@Bitfumes
@Bitfumes 3 жыл бұрын
Glad to hear that! Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@Jhendha
@Jhendha 4 күн бұрын
A very clear explanation tutorial
@marcogrella
@marcogrella 2 жыл бұрын
Thank you for sharing this tutorial. You guys from India really rocks
@codedamn
@codedamn 3 жыл бұрын
Great content! Was looking to take a look into fastapi with python, which everyone talks a lot about - good introduction
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks bro, looking forward to see your awesome content
@yadavgaurav386
@yadavgaurav386 3 жыл бұрын
After Vue3 tutorial another boon from you to developer community. Thanks 3000.
@Bitfumes
@Bitfumes 3 жыл бұрын
Enjoy!
@saurabhsawhney7823
@saurabhsawhney7823 3 жыл бұрын
Wow Sarthak - this was just amazing. Thanks for the good work.
@sany2k8
@sany2k8 3 жыл бұрын
The best tutorial of FastAPI, Awesome explanation, subscribed your channel :)
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@phsaurav
@phsaurav 10 ай бұрын
Great simple and on point tutorial. Thank you.
@ayushdedhia25
@ayushdedhia25 3 жыл бұрын
What an explanation sir 🤩 really liked the way you teach ❤️ and from here you have a new member added in your subscribers database 😅😛
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@rakeshbongi7457
@rakeshbongi7457 3 жыл бұрын
Best FastAPI Course in the world!
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@sathakuzham2303
@sathakuzham2303 3 жыл бұрын
You are doing great, Wish you many more lucks
@sarangtamrakar8723
@sarangtamrakar8723 3 жыл бұрын
Awesome Bro.. I enjoyed Each & Every bit of it... Specially your Voice Modulation 🥀
@codersaurabh
@codersaurabh 2 жыл бұрын
I saw intro of 10 minutes looks like this is what I need, but should i use this as backend for my android app and in future for web app? is it relaible?
@hanifadhithan
@hanifadhithan Жыл бұрын
Wow !! This is a great tutorial because at first I thought about the mistakes you are making confused me ..the second time I was watching the video correct the mistakes myself before you correct them😂✌️👍
@gnacho98
@gnacho98 2 жыл бұрын
puff, great job! i followed it with my own project, its a excelent course
@pathapac
@pathapac 2 жыл бұрын
I don't know how to thank you. I would say it is the best course to start REST API service using FAST API
@vinothbabu9666
@vinothbabu9666 Жыл бұрын
Great job.Its very helpful and very clear content.Thank you so much..............
@thiernoibrahimalo667
@thiernoibrahimalo667 3 жыл бұрын
the best tutorial about this subject
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@justmrfresh
@justmrfresh 3 жыл бұрын
in update function ,make sure you pass in request.dict() in update(...) instead of just request
@AjaraLawal
@AjaraLawal 6 ай бұрын
Thank you so much. it's been a week now i have been encountering an error. Your comment helped me.
Pydantic Tutorial • Solving Python's Biggest Problem
11:07
pixegami
Рет қаралды 273 М.
Why You NEED To Learn FastAPI | Hands On Project
21:15
Travis Media
Рет қаралды 162 М.
Как подписать? 😂 #shorts
00:10
Денис Кукояка
Рет қаралды 7 МЛН
小丑妹妹插队被妈妈教训!#小丑#路飞#家庭#搞笑
00:12
家庭搞笑日记
Рет қаралды 37 МЛН
FastAPI, Flask or Django - Which Should You Use?
9:49
Tech With Tim
Рет қаралды 84 М.
4 Tips for Building a Production-Ready FastAPI Backend
27:02
ArjanCodes
Рет қаралды 63 М.
How to OVER Engineer a Website // What is a Tech Stack?
11:20
Fireship
Рет қаралды 2,4 МЛН
Front-end web development is changing, quickly
3:43
Fireship
Рет қаралды 1,1 МЛН
Coding Was HARD Until I Learned These 5 Things...
8:34
Elsa Scola
Рет қаралды 474 М.
REST API Crash Course - Introduction + Full Python API Tutorial
51:57
How to Use FastAPI: A Detailed Python Tutorial
20:38
ArjanCodes
Рет қаралды 240 М.
Every React Concept Explained in 12 Minutes
11:53
Code Bootcamp
Рет қаралды 658 М.
GPT-o1: The Best Model I've Ever Tested 🍓 I Need New Tests!
10:58
Matthew Berman
Рет қаралды 235 М.