FastAPI - A python framework | Full Course

  Рет қаралды 849,420

Bitfumes

3 жыл бұрын

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-course
🌟 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 patreon.com/bitfumes
KZfaq kzfaq.info/love/_hG9fglfmShkwex1KVydHAjoin
🌟 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

Пікірлер: 761
@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...❤❤
@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.
@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.
@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.
@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 Жыл бұрын
But how to get user data in jwt token(payload)
@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 8 күн бұрын
Thanks for your love and support, keep learning. Join bitfumes newsletter bitfumes.com/newsletters
@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🙏
@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.
@jacoedp
@jacoedp 3 жыл бұрын
Great tutorial, the best fastAPI one ive found so far. Clear explanations and talking through the actual documentation, which is excellent
@baloney_sandwich
@baloney_sandwich 4 ай бұрын
this is the best video so far on youtube from someone who can actually present and speak
@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!!!
@daniellaerachannel
@daniellaerachannel 3 жыл бұрын
this is what I call quality content
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks bro, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@serenalee-cultura4085
@serenalee-cultura4085 Жыл бұрын
1 hr in and this tutorial is SO good. Please be my teacher for EVERYTHING ALWAYS!
@poonamsaroj937
@poonamsaroj937 3 жыл бұрын
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 3 жыл бұрын
Glad that you enjoyed it :) Keep learning Help me to reach 100k soon hehe
@alessandroferrari2166
@alessandroferrari2166 3 жыл бұрын
thanks, this is the best FastAPI course on KZfaq 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
@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
@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
@swapnonilmukherjee406
@swapnonilmukherjee406 3 ай бұрын
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 3 ай бұрын
Glad you liked it! Thanks for your love and support, keep learning. Join bitfumes newsletter bitfumes.com/newsletters
@saurabhsawhney7823
@saurabhsawhney7823 3 жыл бұрын
Wow Sarthak - this was just amazing. Thanks for the good work.
@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
@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 11 ай бұрын
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😢
@marianozalazar4489
@marianozalazar4489 3 жыл бұрын
Thank you man, you really helped me understanding the security part of the docs
@sebcin8500
@sebcin8500 2 жыл бұрын
Very well explained and comprehensive. Highly recommended for beginners. Thanks for upload.
@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
@abhijithC-vr8ww
@abhijithC-vr8ww 2 ай бұрын
Hi Bro, I really liked this video because it goes beyond the basic CRUD operations that most KZfaq videos cover. It was exactly what I needed to clear up my doubts. Thank you for the detailed explanation....
@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!
@leeroy6397
@leeroy6397 3 жыл бұрын
Thank you for this video! My English is not good, but this video is very clear. This is best course on KZfaq now. I wish you success with the development of your KZfaq channel!
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@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 8 ай бұрын
Yep; now models.User(**request.model_dump())
@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
@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
@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
@siumhossain-
@siumhossain- 3 жыл бұрын
hat's off man!!!!!😍 But i hope this is not end game..😅upload more and more on fastApi
@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
@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
@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.
@piyushramnani1014
@piyushramnani1014 2 жыл бұрын
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.
@omarsabra4434
@omarsabra4434 2 жыл бұрын
The best API course I've ever seen so far
@diegtria1
@diegtria1 Жыл бұрын
I'm from Colombia, this course is great, the best part is authentication and JWT. Regards
@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 11 ай бұрын
That’s what x1.5 is for
@gnacho98
@gnacho98 2 жыл бұрын
puff, great job! i followed it with my own project, its a excelent course
@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
@telemahos
@telemahos 3 жыл бұрын
Thank you for this Crash course!!! Nice work
@sarangtamrakar8723
@sarangtamrakar8723 2 жыл бұрын
Awesome Bro.. I enjoyed Each & Every bit of it... Specially your Voice Modulation 🥀
@muzaffarmirzochoriyev9540
@muzaffarmirzochoriyev9540 3 жыл бұрын
Yeah, this is a really exciting tutorial. Enjoyed it!
@santoshturamari6741
@santoshturamari6741 15 күн бұрын
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 8 күн бұрын
Thanks for this nice review. Please subscribe to my newsletter bitfumes.com/newsletters
@OluwatosinOseni260
@OluwatosinOseni260 2 ай бұрын
1hr 20 min in and i must say i love this, this is straight up tutorial and thanks
@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
@mallikarjuna7624
@mallikarjuna7624 3 жыл бұрын
I am very happy today because i learned a lot about fastapi very easily..Thanks .
@francescociulla
@francescociulla 8 ай бұрын
Sarthak is amazing 🔥🔥🔥🔥
@lbasavaraj
@lbasavaraj 3 жыл бұрын
This is brilliant content buddy, great job.
@abrorizzatullaev836
@abrorizzatullaev836 8 ай бұрын
Thank you very much, it helped me alot, it is the best course among fastapi lessons
@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!
@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
@thomasdonzaala5172
@thomasdonzaala5172 3 жыл бұрын
Simple, concise and well explained. Thanks man for this awesome lessons
@mohanadgad669
@mohanadgad669 Ай бұрын
I've learned a lot from you. You're amazing, and I appreciate your clean code!
@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
@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 2 жыл бұрын
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.
@tiru4017
@tiru4017 3 жыл бұрын
Great Tutorial, Thanks for making it Sarthak!!
@shiv366
@shiv366 2 жыл бұрын
thank you very much for giving/teaching a valuable knowledge for free. Many thanks to you. Great video.
@tuannguyenmanh6733
@tuannguyenmanh6733 2 жыл бұрын
Thank you! This video is very useful for the newbies!
@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
@phsaurav
@phsaurav 9 ай бұрын
Great simple and on point tutorial. Thank you.
@SaiJeevan4
@SaiJeevan4 3 жыл бұрын
this is exactly what I need. very nice explanation and your voice is smooth 😂👌🏼 Can you do a video for dash framework also?
@Bitfumes
@Bitfumes 3 жыл бұрын
ohhhh thanks for introducing me with Dash framework I just checked and I feel it is amazing, will try that also
@adamlakatos7987
@adamlakatos7987 2 жыл бұрын
programmer, teacher, comedian, BIG THX :)
@sebastiansoto3595
@sebastiansoto3595 3 жыл бұрын
Havent seen tne entire video but already love it
@avijitbiswas1017
@avijitbiswas1017 3 жыл бұрын
Awesome intro man!!! I am Javascript developer. Surely gonna learn this framework.
@Bitfumes
@Bitfumes 3 жыл бұрын
Thanks for your love and support, keep learning. Subscribe to bitfumes newsletters bitfumes.com/newsletters
@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
@marcogrella
@marcogrella 2 жыл бұрын
Thank you for sharing this tutorial. You guys from India really rocks
@dinmukhamedisenov2738
@dinmukhamedisenov2738 2 жыл бұрын
This is incredibly helpful video, Thank you a lot!
@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
@davutlu60
@davutlu60 3 жыл бұрын
great work, thank you so much. I was wondering if there are detailed documentation about how to use "scopes" in fast api authentication... please feel free to share your posts about that too.
@sanjarkhamrakulov1152
@sanjarkhamrakulov1152 3 ай бұрын
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!!!!!!!!🥰🥰🥰🥰🥰
@ankushtagore4299
@ankushtagore4299 3 жыл бұрын
Thanks buddy, your content is as wise as the fastAPI
@sathakuzham2303
@sathakuzham2303 3 жыл бұрын
You are doing great, Wish you many more lucks
@shan8656
@shan8656 2 жыл бұрын
Amazing lecture! Thanks a lot
@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😂✌️👍
@ronaldronald8819
@ronaldronald8819 3 жыл бұрын
Thank you for this clear concise tutorial . Excellent i found it very useful/.
@khalidali9604
@khalidali9604 Жыл бұрын
I love this course, U clear every point with good manner, Thanks a lot sir
@Bitfumes
@Bitfumes Жыл бұрын
You are most welcome
@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
@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.
@yuvaraj600
@yuvaraj600 3 жыл бұрын
Awesome! Iam learning Springboot and now am blownaway!!
@Bitfumes
@Bitfumes 3 жыл бұрын
Great, keep learning
@aniketpurohit8613
@aniketpurohit8613 3 жыл бұрын
Much needed video! Thanks for the efforts!
@Bitfumes
@Bitfumes 3 жыл бұрын
Glad it was helpful!
@rushichavan3942
@rushichavan3942 2 жыл бұрын
Bro I am watching current on 52:37 . TOO Powerful and amazing as android developer, Firstly I thought it will go tough but its actually easy until now lets see, How much I can get it from your video. But you did very good course and very well explain... #Bitfumes_I_Liked_It...
@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
@khalidsultani1896
@khalidsultani1896 2 жыл бұрын
This is the best guide to fast api , thanks for posting .
@Bitfumes
@Bitfumes 2 жыл бұрын
Glad you liked it
@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
@i.paradox
@i.paradox 2 жыл бұрын
best fastapi fasttrack course on youtub . Thanks a ton
@Bitfumes
@Bitfumes 2 жыл бұрын
Glad you think so!
@parimalpatil750
@parimalpatil750 3 жыл бұрын
Thank You for this course. This is awesome. I have a question. How to build response schema dynamically? Because most of time users want to control list of fields coming out as response
@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
@muyiwaobadara
@muyiwaobadara 3 күн бұрын
This is great. Very straightforward Explanation.
@Bitfumes
@Bitfumes 3 күн бұрын
thanks man
@wisdomobumneme6072
@wisdomobumneme6072 Жыл бұрын
So Detailed, Thanks Buddy 🕊️❤️
@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
@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
@ayush1344
@ayush1344 2 ай бұрын
Your explanation is just Amazing !!! Crisp and Clear !! Thanks !!
@Bitfumes
@Bitfumes 2 ай бұрын
Glad it was helpful!
@snk2088
@snk2088 Жыл бұрын
Much respect to the author! This tutorial is amazing!!!
@Bitfumes
@Bitfumes Жыл бұрын
Much appreciated!
@DacioLima
@DacioLima 2 жыл бұрын
Great Course! Thanks!!! Greetings from Brazil!!!
@malkitsingh01
@malkitsingh01 Жыл бұрын
good work! Subd due to the production quality and ofcourse the content.
@Bitfumes
@Bitfumes Жыл бұрын
Much appreciated! Thanks for watching, please subscribe and like this video
🤔Какой Орган самый длинный ? #shorts
00:42
Самый Молодой Актёр Без Оскара 😂
00:13
Глеб Рандалайнен
Рет қаралды 12 МЛН
Clowns abuse children#Short #Officer Rabbit #angel
00:51
兔子警官
Рет қаралды 79 МЛН
🤔Какой Орган самый длинный ? #shorts
00:42