FastAPI - A python framework | Full Course

  Рет қаралды 830,888

Bitfumes

Bitfumes

Күн бұрын

FastAPI is the fastest Python Web Framework
Let's learn fastAPI by creating a full API for crud of blog with user authentication
FastAPI is using Pydantic library for types and starlette framework under the hood
FastAPI also provide amazing support for swagger API docs
Source code - github.com/bitfumes/fastapi-c...
🌟 Course Contents 🌟
⏳ (00:00:00) Framework Intro
⏳ (00:04:51) Course Intro
⏳ (00:10:09) Install and Setup
⏳ (00:22:33) Break it down
⏳ (00:30:47) Path Parameters
⏳ (00:41:40) API Docs
⏳ (00:45:55) Query Parameters
⏳ (00:55:58) Request Body
⏳ (01:03:58) Debugging
⏳ (01:10:47) Pydantic Schemas
⏳ (01:19:59) Database Connection
⏳ (01:25:37) Create Model and Tables
⏳ (01:33:36) Store blog to database
⏳ (01:38:51) Get blog from database
⏳ (01:43:29) Exception & Status Code
⏳ (01:53:46) Delete a blog
⏳ (02:08:02) Response Model
⏳ (02:15:56) Create User
⏳ (02:23:07) Hash Password
⏳ (02:30:36) Show User
⏳ (02:35:05) Using Doc Tags
⏳ (02:37:58) Relationship
⏳ (02:51:13) API Router
⏳ (03:04:08) API router path operators
⏳ (03:07:24) Blog & User respository
⏳ (03:18:08) Logn & verify Password
⏳ (03:28:37) JWT Access Token
⏳ (03:36:24) Route behind authentication
⏳ (03:51:00) Deploy fastAPI app
There are many python web frameworks like Django and flask
But django and flask are python web frameworks that focus on serving files
This fastAPI, a python web framework is more focused on creating API with many modern features
Python fastapi is a true solution for your next big API project
🌟 Premium Courses 🌟
Check out 32 hours of Laravel Content at
bit.ly/indepthlaravel
🔥 DIGITAL OCEAN HOSTING Affiliate
Get $100 in credit for 60 days m.do.co/c/a3a47da9b9a8
🌟 Gadgets I use 🌟
Camera amzn.to/3mGikwL
Blue Yeti Mic amzn.to/3mA6YdI
Blue Yeti Mic Foam Cover amzn.to/2GkmV8w
Capture Card amzn.to/3ed3cnN
🌟 Support Me ( I am full time youtuber) 🌟
Github github.com/sponsors/bitfumes
Patreon / bitfumes
KZbin / @bitfumes
🌟 FOLLOW ME 🌟
Subscribe for New Releases!
Twitter - / bitfumes
Twitter - / sarthaksavvy
Facebook - / bitfumes
Instagram - / bitfumes
(ask me questions!)
-- QUESTIONS? --
Leave a comment below and I or someone else can help you.
For quick questions you may also want to ask me on Twitter, I respond almost immediately.
Email me support@bitfumes.com
Thanks for all your support

Пікірлер: 746
@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 2 жыл бұрын
JWT and Oauth2 very nice
@MrJP476
@MrJP476 2 жыл бұрын
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 2 жыл бұрын
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!
@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.
@TonyUnderscore
@TonyUnderscore 2 жыл бұрын
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 Жыл бұрын
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!
@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.
@jamshedkarimnazarov7610
@jamshedkarimnazarov7610 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.
@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 7 ай бұрын
Yep; now models.User(**request.model_dump())
@baloney_sandwich
@baloney_sandwich 3 ай бұрын
this is the best video so far on youtube from someone who can actually present and speak
@poonamsaroj937
@poonamsaroj937 2 жыл бұрын
It's a premium course that you are providing free of cost, and every second of learning is love, Great video many thanks!!
@Bitfumes
@Bitfumes 2 жыл бұрын
Glad that you enjoyed it :) Keep learning Help me to reach 100k soon hehe
@zii_codes
@zii_codes Жыл бұрын
This tutorial carried me through the whole time I have been trying to teach myself FASTAPI. Though I don't know if I can repeat everything I just did smoothly (Don't get me wrong I didn't do it in one go, took a week or soo), I know doing so would be less difficult. And I thank you so much for all the effort and time invested in here Sir🙏
@serenalee-cultura4085
@serenalee-cultura4085 Жыл бұрын
1 hr in and this tutorial is SO good. Please be my teacher for EVERYTHING ALWAYS!
@ProSimples
@ProSimples 2 жыл бұрын
For the guys with problem with UPDATE method. Just add a request within a dir() method, ex: db.query(models.Blog).filter(models.Blog.id == id).update(dict(request)) That's it.
@RenatoCorreaRJ
@RenatoCorreaRJ 2 жыл бұрын
Great, thaks very much!
@milliepards96
@milliepards96 Жыл бұрын
FastApi also has the jsonable_encoder method for this too. It converts a pydantic model to a dict and also ensures fields that aren't JSON compatible are converted to JSON friendly types.
@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!!!!!
@Marlem80
@Marlem80 3 жыл бұрын
Such a great quality content here!! Your channel is amazing, thanks a lot for these great videos!! Keep it up!!!
@marianozalazar4489
@marianozalazar4489 3 жыл бұрын
Thank you man, you really helped me understanding the security part of the docs
@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
@jacoedp
@jacoedp 3 жыл бұрын
Great tutorial, the best fastAPI one ive found so far. Clear explanations and talking through the actual documentation, which is excellent
@muslimspeakmy
@muslimspeakmy 2 жыл бұрын
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.
@swapnonilmukherjee406
@swapnonilmukherjee406 Ай бұрын
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 Ай бұрын
Glad you liked it! Thanks for your love and support, keep learning. Join bitfumes newsletter bitfumes.com/newsletters
@OluwatosinOseni260
@OluwatosinOseni260 25 күн бұрын
1hr 20 min in and i must say i love this, this is straight up tutorial and thanks
@adamlakatos7987
@adamlakatos7987 2 жыл бұрын
programmer, teacher, comedian, BIG THX :)
@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
@mohanadgad669
@mohanadgad669 23 күн бұрын
I've learned a lot from you. You're amazing, and I appreciate your clean code!
@sebcin8500
@sebcin8500 2 жыл бұрын
Very well explained and comprehensive. Highly recommended for beginners. Thanks for upload.
@omarsabra4434
@omarsabra4434 2 жыл бұрын
The best API course I've ever seen so far
@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!
@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
@ayush1344
@ayush1344 Ай бұрын
Your explanation is just Amazing !!! Crisp and Clear !! Thanks !!
@Bitfumes
@Bitfumes Ай бұрын
Glad it was helpful!
@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 10 ай бұрын
That’s what x1.5 is for
@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
@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
@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
@saurabhsawhney7823
@saurabhsawhney7823 2 жыл бұрын
Wow Sarthak - this was just amazing. Thanks for the good work.
@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
@telemahos
@telemahos 3 жыл бұрын
Thank you for this Crash course!!! Nice work
@diegtria1
@diegtria1 Жыл бұрын
I'm from Colombia, this course is great, the best part is authentication and JWT. Regards
@tuannguyenmanh6733
@tuannguyenmanh6733 2 жыл бұрын
Thank you! This video is very useful for the newbies!
@kar1os81
@kar1os81 3 жыл бұрын
For people having issues following using @app.put.... please use the following code: blog.update( { 'title': request.title, 'body': request.body} ) OR blog.update(request.dict()) Both options will work for you, enjoy the rest of the free content :)
@snk2088
@snk2088 Жыл бұрын
Much respect to the author! This tutorial is amazing!!!
@Bitfumes
@Bitfumes Жыл бұрын
Much appreciated!
@samnoisey-ir2lj
@samnoisey-ir2lj Жыл бұрын
Thank you so much for the class brother. I am very new to python and RESTAPI learned much with this video and i just want to know more like having a real server deployment
@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
@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
@codedusting
@codedusting 3 жыл бұрын
Commenting for the algorithm and liking before watching. Added to watch later.
@Bitfumes
@Bitfumes 3 жыл бұрын
Thank bro for your support.
@codedusting
@codedusting 3 жыл бұрын
@@Bitfumes Thanks for making the course man! I was hearing a lot about it these days.
@muzaffarmirzochoriyev9540
@muzaffarmirzochoriyev9540 2 жыл бұрын
Yeah, this is a really exciting tutorial. Enjoyed it!
@phsaurav
@phsaurav 7 ай бұрын
Great simple and on point tutorial. Thank you.
@abhijithC-vr8ww
@abhijithC-vr8ww 25 күн бұрын
Hi Bro, I really liked this video because it goes beyond the basic CRUD operations that most KZbin videos cover. It was exactly what I needed to clear up my doubts. Thank you for the detailed explanation....
@DucNguyen-cq5iw
@DucNguyen-cq5iw 3 жыл бұрын
Amazing tutorial. Really appreciate the hard work that's been put in this video!!!!
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@abrorizzatullaev836
@abrorizzatullaev836 7 ай бұрын
Thank you very much, it helped me alot, it is the best course among fastapi lessons
@mallikarjuna7624
@mallikarjuna7624 3 жыл бұрын
I am very happy today because i learned a lot about fastapi very easily..Thanks .
@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 2 жыл бұрын
Uh My
@shan8656
@shan8656 2 жыл бұрын
Amazing lecture! Thanks a lot
@dinmukhamedisenov2738
@dinmukhamedisenov2738 2 жыл бұрын
This is incredibly helpful video, Thank you a lot!
@shiv366
@shiv366 2 жыл бұрын
thank you very much for giving/teaching a valuable knowledge for free. Many thanks to you. Great video.
@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 10 ай бұрын
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😢
@gnacho98
@gnacho98 2 жыл бұрын
puff, great job! i followed it with my own project, its a excelent course
@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
@wisdomobumneme6072
@wisdomobumneme6072 Жыл бұрын
So Detailed, Thanks Buddy 🕊️❤️
@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
@yuvaraj600
@yuvaraj600 3 жыл бұрын
Awesome! Iam learning Springboot and now am blownaway!!
@Bitfumes
@Bitfumes 3 жыл бұрын
Great, keep learning
@ankushtagore4299
@ankushtagore4299 3 жыл бұрын
Thanks buddy, your content is as wise as the fastAPI
@lbasavaraj
@lbasavaraj 3 жыл бұрын
This is brilliant content buddy, great job.
@sebastiansoto3595
@sebastiansoto3595 3 жыл бұрын
Havent seen tne entire video but already love it
@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!
@ApnaVlogs-tj7do
@ApnaVlogs-tj7do Ай бұрын
Thank you so much Sarthak, Amazing session 😃
@Bitfumes
@Bitfumes Ай бұрын
thanks bhai
@AshisRaj
@AshisRaj 4 ай бұрын
Great work Sarthak
@tiru4017
@tiru4017 2 жыл бұрын
Great Tutorial, Thanks for making it Sarthak!!
@DacioLima
@DacioLima 2 жыл бұрын
Great Course! Thanks!!! Greetings from Brazil!!!
@aniketpurohit8613
@aniketpurohit8613 3 жыл бұрын
Much needed video! Thanks for the efforts!
@Bitfumes
@Bitfumes 3 жыл бұрын
Glad it was helpful!
@i.paradox
@i.paradox 2 жыл бұрын
best fastapi fasttrack course on youtub . Thanks a ton
@Bitfumes
@Bitfumes 2 жыл бұрын
Glad you think so!
@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.
@mikhailgreaves
@mikhailgreaves Жыл бұрын
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 Жыл бұрын
Thanks for watching, please subscribe and like this video
@willhg
@willhg 2 ай бұрын
It is an amazing tutorial !!!, Thank you!
@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
@ronaldronald8819
@ronaldronald8819 3 жыл бұрын
Thank you for this clear concise tutorial . Excellent i found it very useful/.
@siumhossain-
@siumhossain- 3 жыл бұрын
hat's off man!!!!!😍 But i hope this is not end game..😅upload more and more on fastApi
@elegarin
@elegarin 3 жыл бұрын
excellent contribution thank you very much !!!
@theinvisibletube5128
@theinvisibletube5128 3 жыл бұрын
Just wow man, thanks for your effort
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks man, need your support by sharing for more reach Subscribe to bitfumes newsletters bitfumes.com/newsletters
@khalidali9604
@khalidali9604 Жыл бұрын
I love this course, U clear every point with good manner, Thanks a lot sir
@Bitfumes
@Bitfumes Жыл бұрын
You are most welcome
@konstantingribanov7197
@konstantingribanov7197 2 жыл бұрын
Thanks for awesome course, man! really good explained.
@Bitfumes
@Bitfumes 2 жыл бұрын
Thanks for your love and support, keep learning. Follow bitfumes on twitter.com/bitfumes or facebook.com/Bitfumes to get the latest updates. bitfumes.com
@maneetsingh964
@maneetsingh964 3 жыл бұрын
thanks for this course , it will really help me learn fastapi
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@marcogrella
@marcogrella 2 жыл бұрын
Thank you for sharing this tutorial. You guys from India really rocks
@thomasdonzaala5172
@thomasdonzaala5172 3 жыл бұрын
Simple, concise and well explained. Thanks man for this awesome lessons
@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
@peridot9608
@peridot9608 3 жыл бұрын
Great tutorial!! Thank you!
@sarangtamrakar8723
@sarangtamrakar8723 2 жыл бұрын
Awesome Bro.. I enjoyed Each & Every bit of it... Specially your Voice Modulation 🥀
@khalidsultani1896
@khalidsultani1896 2 жыл бұрын
This is the best guide to fast api , thanks for posting .
@Bitfumes
@Bitfumes 2 жыл бұрын
Glad you liked it
@antoleanjoaq
@antoleanjoaq 7 ай бұрын
Excelent video, thanks a lot, very interesting - From Argentina
@vinothbabu9666
@vinothbabu9666 Жыл бұрын
Great job.Its very helpful and very clear content.Thank you so much..............
@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
@yusufkhan-uj4qk
@yusufkhan-uj4qk 6 ай бұрын
great and excellent work, very helpful. Thank you
@sathakuzham2303
@sathakuzham2303 3 жыл бұрын
You are doing great, Wish you many more lucks
@mustaphatidooyussif2538
@mustaphatidooyussif2538 Жыл бұрын
Great tutorial. Thank you!
@muslimspeakmy
@muslimspeakmy Жыл бұрын
Sarthak is awesome, coz we can see how he finds things also, its so cool.
@Bitfumes
@Bitfumes Жыл бұрын
thanks man
@suen-tech
@suen-tech 2 ай бұрын
Well explained Thank you
@yadavgaurav386
@yadavgaurav386 3 жыл бұрын
After Vue3 tutorial another boon from you to developer community. Thanks 3000.
@Bitfumes
@Bitfumes 3 жыл бұрын
Enjoy!
@ahmadmaroofkarimi9125
@ahmadmaroofkarimi9125 2 жыл бұрын
Thanks for the awesome video.
@shaxzod6485
@shaxzod6485 3 жыл бұрын
thank you for this great course
WHY did this C++ code FAIL?
38:10
The Cherno
Рет қаралды 177 М.
Why You NEED To Learn FastAPI | Hands On Project
21:15
Travis Media
Рет қаралды 149 М.
I wish I could change THIS fast! 🤣
00:33
America's Got Talent
Рет қаралды 59 МЛН
1 класс vs 11 класс  (игрушка)
00:30
БЕРТ
Рет қаралды 4,4 МЛН
Жайдарман | Туған күн 2024 | Алматы
2:22:55
Jaidarman OFFICIAL / JCI
Рет қаралды 680 М.
1❤️#thankyou #shorts
00:21
あみか部
Рет қаралды 88 МЛН
Generative AI in a Nutshell - how to survive and thrive in the age of AI
17:57
FastAPI Authentication with  JWT (JSON Web Tokens)
56:18
Bek Brace
Рет қаралды 94 М.
Every React Concept Explained in 12 Minutes
11:53
Code Bootcamp
Рет қаралды 416 М.
Popular Technologies that Won't be Around Much Longer...
14:36
Sideprojects
Рет қаралды 45 М.
Mind-Blowing Theories on Nothingness You Need to Know | Documentary
51:50
Big Scientific Questions
Рет қаралды 42 М.
host ALL your AI locally
24:20
NetworkChuck
Рет қаралды 770 М.
15 Python Libraries You Should Know About
14:54
ArjanCodes
Рет қаралды 367 М.
How I would learn Leetcode if I could start over
18:03
NeetCodeIO
Рет қаралды 261 М.
REST API Crash Course - Introduction + Full Python API Tutorial
51:57
I wish I could change THIS fast! 🤣
00:33
America's Got Talent
Рет қаралды 59 МЛН