I built the same app 3 times | Which Python Framework is best? Django vs Flask vs FastAPI

  Рет қаралды 800,002

Patrick Loeber

Patrick Loeber

Күн бұрын

I built the same app 3 times with 3 different Python web framework. Which one is best? Django vs Flask vs FastAPI.
Get my Free NumPy Handbook:
www.python-engineer.com/numpy...
Code: github.com/patrickloeber/pyth...
✅ Write cleaner code with Sourcery, instant refactoring suggestions in VS Code & PyCharm: sourcery.ai/?... *
⭐ Join Our Discord : / discord
📓 ML Notebooks available on Patreon:
/ patrickloeber
If you enjoyed this video, please subscribe to the channel:
▶️ : / @patloeber
Inspired by Fireship's JS framework video: • I built the same app 1...
~~~~~~~~~~~~~~~ CONNECT ~~~~~~~~~~~~~~~
🖥️ Website: www.python-engineer.com
🐦 Twitter - / patloeber
✉️ Newsletter - www.python-engineer.com/newsl...
📸 Instagram - / patloeber
🦾 Discord: / discord
▶️ Subscribe: / @patloeber
~~~~~~~~~~~~~~ SUPPORT ME ~~~~~~~~~~~~~~
🅿 Patreon - / patrickloeber
#Python
Timeline:
00:00 - Introduction
01:30 - Flask
05:05 - FastAPI
10:53 - Django
----------------------------------------------------------------------------------------------------------
* This is an affiliate link. By clicking on it you will not have any additional costs, instead you will support me and my project. Thank you so much for the support! 🙏

Пікірлер: 487
@phipag1997
@phipag1997 2 жыл бұрын
Great video. Awesome how you managed to compare the three frameworks in such a short video while still being clear and concise about the pros and cons.
@epicserve
@epicserve 2 жыл бұрын
I've been using Django for over 10 years, before version 1 was even released. I think one of the biggest advantages to Django is the ORM. The downside to Django is for an API most people use the Django Rest Framework, which doesn't seem as nice as FastAPI in my opinion. Another key advantage to Django is the structure and organization it provides with its concept of Apps. This is especially helpful and important for large applications. I think it would be really hard for me to switch from Django's ORM to SQLAlchemy.
@mke7605
@mke7605 2 жыл бұрын
Same here. I used Django since version 1.3. Did jab a bit with flash but always find myself back at django after a while.
@kornelkoszela5873
@kornelkoszela5873 2 жыл бұрын
Same, working since 1.4. DRF is not that bad, but it's much harder to learn than FastAPI. Looks uglier too and the configuration just isn't worth it, especially for smaller projects. I'm still working with DRF at my job, but personal projects are all FastAPI now. Will probably change most of the job project to FastAPI anyways.
@NishantCosmos
@NishantCosmos 2 жыл бұрын
@@komkaitkanchai8766 wow i'm amaze to see django vets here, i just learnt making basic django apps.
@rawmetal3052
@rawmetal3052 2 жыл бұрын
with Django Ninja introduced, I don't think API should be a problem anymore in Django
@mayankpant5376
@mayankpant5376 2 жыл бұрын
Why use ORM even 😂😂 just use normal SQL
@maithriashokan
@maithriashokan 4 ай бұрын
I absolutely enjoyed this video. Not only did I learn about the 3 frameworks, but was in awe of the how you edited this video. Perfection!
@DanhWasHere
@DanhWasHere 2 жыл бұрын
Really great speedrun of the different web frameworks -I'm glad that you didn't give a definitive answer for which is best, only giving the pros and tradeoffs of each so a good dev can pick which one fits with their use case
@Voidstroyer
@Voidstroyer 2 жыл бұрын
I mean, not giving a definitive answer is good and all, but an opinion at the very least would be appreciated
@davidmcken
@davidmcken Жыл бұрын
@@Voidstroyer The pros for each library showed their strengths and where they should be used. Django enforces a specific file structure and layout and comes with the python-esque "batteries included". I would hazard a guess its used in larger projects because of that structure so there is less conflict between the teams (e.g. frontend guys are primarily in the templates, backend would be between models and views). Flask is extremely light-weight and you can build something functional in an extremely small codebase (I believe he said 47 lines of code excluding the HTML template). One of Flask's major pros is you can choose what library you want for every part of the process, don't like the templating engine? Cool, pick a different one. Want to write your SQL by hand and bypass the ORM entirely, np. In that way it completely gets out of you way and allows you to choose the right tools for your use case. FastAPI seems to follow Flask's general structure but adds batteries for an extremely common use case which is RESTful APIs (while not throwing in the kitchen sink like Django) and makes use of the type-hinting in python 3 avoiding issues the other two had to contend with prior to that feature being added to python. Its relative youth would be a double-edged sword, for greenfield uses you don't have any technical debt in the form of backwards compatibility with existing code, however on the other hand how well has it been battle tested? On pypi its still listed as Beta, should I expect breaking changes in the future? If you are confident you can keep up with its development it probably would be the most performant of the three especially with all the performance enhancements coming in python 3.11 and later.
@Voidstroyer
@Voidstroyer Жыл бұрын
@@davidmcken Thank you very much for the detailed explanations of the pros/cons for each choice.
@oncedidactic
@oncedidactic 2 жыл бұрын
Super helpful video thanks!! This is exactly what I needed: a QUICK overview of these Python options, how you get up and running, how they differ. I have a spaghetti monster Django app at work and I need to make an on-the-side api service, wondering if I should just start completely fresh or try and integrate with the existing beast. Separation of concerns, ease of implementation, and developer role structure says Flask it is. 👌👌
@uju02
@uju02 2 жыл бұрын
Started Flask last year, it is currently rising up into my favourite framework, I’m enjoying my transition from PHP to Python
@irotochukwu6313
@irotochukwu6313 2 жыл бұрын
same too, I transitioned from php to python 3 years ago. python is so much cool.
@kevinlesieutre
@kevinlesieutre Жыл бұрын
@@wolfmeowmeow developp in something you like, so you'll dive deeper without even noticing and you'll become way better and your time way more valuable.
@TortelliniSRL
@TortelliniSRL Жыл бұрын
Hey how does flask feel compared to laravel? I've been using and loving Laravel for years now but i want to try something else cuz php still feels kinda ancient, how would you compare the two? Is Laravel more similiar to Django instead? (I would only need it for backend, usually my frontend is angular/react)
@wolfmeowmeow
@wolfmeowmeow Жыл бұрын
@@TortelliniSRL you should stick with it, laravel is good, you just need a backend framework doesn’t mean you have to learn all of those are exists.
@TortelliniSRL
@TortelliniSRL Жыл бұрын
@@wolfmeowmeow i agree with you for that but learning multiple framework kinda is my job ahahaha, anyways in our company we main laravel for backend and our cto is now giving us the chance to switch to one that could potentially suit our needs better, the learning curve won't be a problem since it will most likely be a gradual change (most of our stuff still run laravel backend), i was just wondering if it was worth to switch (if the writing time efficiency / potential less package support ratio was)
@VanguardOnline2011
@VanguardOnline2011 Жыл бұрын
Thanks for the detailed code comparison Patrick, especially with the in-depth code comparison. That was a lot of work. Much appreciated. Thanks. I also looked at your channel. Lots of useful tutorials. Thanks. Subscribed.
@WineZ22
@WineZ22 Жыл бұрын
as someone who had experienced pain and headache due to non typed code, I am definitely going for FastAPI Not to mention the auto OpenAPI Docs which make it easy to integrate security automation tools like OWASP ZAP. For an api project this is great. Things like the admin panel and the front end can be built separately using Vue or something like that. I just need an API, so FastAPI it is. Thanks for the video. this is really helpful.
@SiaTheWizard
@SiaTheWizard 2 жыл бұрын
Man, it was awesome. I have started Flask for a while & this was a nice big picture for the backend roadmap.
@talanky
@talanky 2 жыл бұрын
Great editing on this! It was the perfect speed for me instead of watching a 2hr code along
@grantbellar3267
@grantbellar3267 Жыл бұрын
I’ve recently gotten into python development and this was a video I didn’t know I needed! Thanks for your hard work!
@GurashishSingh1
@GurashishSingh1 2 жыл бұрын
Love this!! That FastAPI docs generation is super neat!
@tjbredow
@tjbredow Жыл бұрын
I love flask for rapid development. Our projects never get very big because we run a microservice model. I can build out new logic for a new api feature, run the pipeline and publish the swagger file, all before lunchtime. Even moderately sized apps can be managed with blueprints fairly easily, and Flask 2+ supports nested blueprints. SQLAlchemy and Pandas do enough for me, I don't feel the need to abstract away the DB like an ORM coerces. Rails does a lot better than Django in that aspect IMO. Also, you should be escaping query arguments and variables used in the URI ;)
@bogdanf6698
@bogdanf6698 Жыл бұрын
I really enjoy the constancy of your voice and the equidistance when presenting the 3 frameworks
@kierencoetzee2517
@kierencoetzee2517 Жыл бұрын
i like Flask's context management with the app factory pattern, very easy to get hold of application-wide config and db instances
@devdex.
@devdex. Жыл бұрын
true
@mke7605
@mke7605 2 жыл бұрын
Have been using Django since version 1.3. Also used flash for some minor service. But fast api looks very interesting.
@pawlack
@pawlack Жыл бұрын
I regret starting with Django instead of Flask. If I knew Flask earlier then I would have better grasp of what is going on in django :)
@HaBhBo
@HaBhBo Жыл бұрын
true, if i would start again i would learn flask then learn django, as flask helps you understands how django does things under the hood.
@creed404
@creed404 Жыл бұрын
Yup flask is a gem
@tejas4054
@tejas4054 Жыл бұрын
Flask is complicated because of code written in one file,,, there is no MVT structure which is easy to wrte codes in different files
@tejas4054
@tejas4054 Жыл бұрын
Django is super easy that the most complecated fastapi and flask
@miguelfrosales01
@miguelfrosales01 5 ай бұрын
Once you work long enough using Django you end up knowing what is going on inside. What you find in django is a very well developped structure. I personally dont care if fastapi is faster, because I can just scale horizontally my django service. microservice. In the long run the bottleneck is 99% of the time the database. Whe programming you want a mvp asap you don't get to waste time trying to integrate stuff, you just want something that works well fast, that's why I'll stick with Django. That being said I it is not very good when it comes to handling websockets, I'll usually go with node
@jakeditslear1678
@jakeditslear1678 2 жыл бұрын
Big fan of Flask, but I might have to experiment with FastAPI!
@vitalnikod7197
@vitalnikod7197 2 жыл бұрын
me too
@meizufluxx
@meizufluxx 2 жыл бұрын
fastapi has awful docs
@NishantCosmos
@NishantCosmos 2 жыл бұрын
@@meizufluxx but faster and better development if you learn it right?
@meizufluxx
@meizufluxx 2 жыл бұрын
@@NishantCosmos no fastapi is awful because the docs are awful. they desperately need an api reference
@d34dplayer
@d34dplayer 2 жыл бұрын
For any "basic" app the documentation is enough, the only times I have had to dive into the fastapi code was for more customized OAuth and even then the source code isn't that cryptic, I've been using it for over a year and it's my go to for rest APIs that don't require massive scalability. The biggest difference with flask and django is that if forces you to make a distinction between frontend and backend, ideally only making a rest api that a static frontend consumes, but I see this as a better way to build web apps as it forces you to learn about frontend frameworks that are way better than anything a python framework can provide.
@professor-dad
@professor-dad Жыл бұрын
Great presentation! Thanks for all the time you put into it. 👍🏼
@ekaetteessien4932
@ekaetteessien4932 11 ай бұрын
Love this video! I use the FastAPI framework and it's absolutely amazing. I'm working on learning Django now but it was useful to learn the differences between the frameworks.
@nagibgonzalez5645
@nagibgonzalez5645 9 ай бұрын
Thank you for this. I have mostly been using python for data science but I'm looking to start building out web apps.
@adityadeshmukh2390
@adityadeshmukh2390 2 жыл бұрын
For microservices flask and fastAPI For full stack django It depends on use cases what kind of application you want to develop
@iamlegqdev7743
@iamlegqdev7743 2 жыл бұрын
@manny I'm definitely not an expert, but I would say FastAPI given that you'll probably want to build backend microservices for your app, and then just create frontend clients (for web, android, ios, etc) that communicate with your FastAPI backend.
@cupajoesir
@cupajoesir Жыл бұрын
If I had more time I'd write a shorter letter. Thank you for a short and concise video. Very well done!
@Balkac
@Balkac 4 ай бұрын
Very nice comparison! Even though I'm Django dev myself, I can imagine how complicated it must seem compared to Flask for instance. Maybe you should have shown an example with class based views to see even more power of Django.
@Deadlious
@Deadlious 2 жыл бұрын
I prefer using Flask, because it gives a lot of flexibility. You can easily use it to build a similar structure to the Django app and separate stuff (yes with a bit more manual work, but possible), but it is not something obliging to make an application work. And especially for smaller projects, it gives a lot of freedom. In addition to that, latest versions of flask support async/await functions. FastAPI seems like it is build for APIs and not fully fledged websites, so probably it is best to keep it that way.
@youssefchaabi5402
@youssefchaabi5402 Жыл бұрын
I can programme big and fast Web projects by Flask only ?
@Deadlious
@Deadlious Жыл бұрын
@@youssefchaabi5402 why not?
@youssefchaabi5402
@youssefchaabi5402 Жыл бұрын
@@Deadlious Flask good in scaling ??
@youssefchaabi5402
@youssefchaabi5402 Жыл бұрын
@@Deadlious OK bro thank you
@kamal-hassan
@kamal-hassan Жыл бұрын
@@youssefchaabi5402 what did you go with? Flask?
@marcelmoraisluna
@marcelmoraisluna Жыл бұрын
Great man. I don't work with Python, but the simplicity is just great.
@cedric1731
@cedric1731 2 жыл бұрын
Flask-restx features Automatic Swagger creation as well :)
@iamqaasim
@iamqaasim Жыл бұрын
This is just the video I needed 👌 I can't belive you managed to do this is under 20min 😅 well done 🙏
@patloeber
@patloeber 11 ай бұрын
thank you!
@mohammedalbatati5529
@mohammedalbatati5529 2 жыл бұрын
Many thanks that’s a lot of work well done. I started couple of years ago with Django and found my self stuck with it 😅 Maybe I need to explore more specially the fact API looks interesting
@architkapoor2503
@architkapoor2503 2 жыл бұрын
It's called FAST API.
@d3f3kt57
@d3f3kt57 11 ай бұрын
Thanks to this video I switched from Django to FastAPI and I don't regret it one bit. Django does a lot of things that are hidden to the developer and has a very complicated structure which is overkill for simple apps. With FastAPI it actually feels like you're coding. I wish I had checked it out sooner rather than wasting my time/energy on Django.
@johnnygarcia7297
@johnnygarcia7297 7 ай бұрын
I did the same, fastapi also gives you more freedom since django only lets you use its dependancies while fastapi lets you install and work with whatever, not to mention faster and more lightweight only the tools you need
@Gglsucksbigballz
@Gglsucksbigballz Жыл бұрын
Super impressive video! Covered a lot of info concisely - must have taken a lot of time! FastAPI seems to pique my interest for a micro-service based app. Also seems to get a lot done without a huge learning curve. I’ve worked with Django and it’s awesome! if you know your way around.
@janusztarnowski115
@janusztarnowski115 Жыл бұрын
Simple Application Enter Your Details kzbin.info/www/bejne/eojRZmB7n52FY68
@wilhelmngoma9009
@wilhelmngoma9009 7 ай бұрын
Great content. Thanks Patrick. This was my first experience of Flask and FastAPI. So far Flask and Django are my favorite. I'm experience all of them more
@PythonDevelopment
@PythonDevelopment 2 жыл бұрын
Great content, dude! Awesome!
@BrianStDenis-pj1tq
@BrianStDenis-pj1tq Жыл бұрын
I struggle with the idea of microservice versus framework. In our company, we aim to build microservices. A microservice is either a visualization layer or maybe business logic or maybe an entity store service. The first example (Flask) had all of those combined.
@Semmelein
@Semmelein Жыл бұрын
Using Django since 0.96 or so and I just love it because of all the batteries included.
@Hubert4515
@Hubert4515 2 жыл бұрын
i used to do all my work in Flask but recently i switched to FastAPI and i like it a lot
@oseitutu598
@oseitutu598 Жыл бұрын
Amazing Video, Much appreciated. I learned a lot from this. Subscribed ❤
@davidarbanas6056
@davidarbanas6056 2 жыл бұрын
Congrats on hitting 100K!
@manusharma8777
@manusharma8777 11 ай бұрын
A very clear comparison indeed. Thanks.
@jonasls
@jonasls Жыл бұрын
I've used flask for a long time but switched to Django for a new project at work - man, it's really a good all-around package for full stack production web apps. Love the way things are organized into apps, and all the libraries which make your life easier. Like Celery for background tasks.
@josedominguez8782
@josedominguez8782 Жыл бұрын
Celery is an standalone tool. You can use it with Flask, FastAPI and any other framework.
@dipenketanbhaidave154
@dipenketanbhaidave154 Жыл бұрын
Brother can you suggest best project in flask , for Intern resume.
@jonasls
@jonasls Жыл бұрын
@@josedominguez8782 True, but I was thinking about celerys direct integration to django - "django-celery".
@jonasls
@jonasls Жыл бұрын
@@dipenketanbhaidave154 Issue tracking system
@Sam-tg4ii
@Sam-tg4ii 8 ай бұрын
10:14 Can the FastAPI's documentation page be used as a GUI for the API where the user POSTs values and gets responses back? Can it be hosted on a server for public access?
@PedroGrilo13
@PedroGrilo13 2 жыл бұрын
Clear and concise video. Thanks :D
@DevlogBill
@DevlogBill 8 ай бұрын
I've only used Django for only 4 months, and I love the framework. Just out of curiosity have you tried creating a frontend project like Angular or React or maybe mobile like a flutter or React native with one of these backend technologies? Is Django easier when used for making a GET request for a frontend technology? Or would you recommend one of the other backend technologies like FastAPI or Flask instead? Not sure yet but I am thinking about focusing on Django with React or maybe Angular for Full Stack, any thoughts? thanks Patrick...
@user-un6vi8ix3q
@user-un6vi8ix3q 11 ай бұрын
Django's syntax seems cleaner and more readable than others
@ragsdale9
@ragsdale9 9 ай бұрын
This was a fun little exercise in the different frameworks. I think I must be using a different version of python or something because using flask exactly like you wrote it seems to give me an error regarding using it outside of the app context. Which can be fixed with a few lines of code appropriately placed, if you understand where and why. For the rest of them this is what I wanted to see coming here (although the post/get/put/delete not being fully hashed out did kind of bother me).
@nagibgonzalez5645
@nagibgonzalez5645 9 ай бұрын
@ragsdale9 can you provide the few lines of code for the fllask example. Im getting the same error
@nagibgonzalez5645
@nagibgonzalez5645 9 ай бұрын
hey I was able to find the solution on github haha!
@minorandrianarivo661
@minorandrianarivo661 2 жыл бұрын
Best thing about Django is that it's a fullstack framework. In a structure that needs frontend development, building backend API is easier and faster with Flask and FastAPI, but I need typing so... Going for FastAPI !
@IUfidi
@IUfidi 2 жыл бұрын
Ca va, mon ami.
@oliverreviews8496
@oliverreviews8496 2 жыл бұрын
I can tell you more. In large projects nobody writes code without typing :D So you made a good choice :D
@huacai168
@huacai168 2 жыл бұрын
Django-ninja is a good choice
@wolfmeowmeow
@wolfmeowmeow Жыл бұрын
@@huacai168 it really doesn't matter what you use, end of the day its all about python and how you're implementing your python mechanism into web.
@raianmr2843
@raianmr2843 Жыл бұрын
@@wolfmeowmeow tech debt is a real issue lmao
@ginofrigoni
@ginofrigoni 2 жыл бұрын
La verdad muy bueno, rápidamente logré ver las diferencias
@themarksmith
@themarksmith 2 жыл бұрын
Excellent, excellent video, thank you so much!
@warloccarlos8522
@warloccarlos8522 Жыл бұрын
I have experienced Flask and Django both. Nice comparison. I liked Flask, as you mentioned, it is quick for beginner and also we can run custom scripts easily with flask to display output on web.(I know we can do the same with FastAPI and Django as well 😄)
@balloney2175
@balloney2175 9 ай бұрын
Awesome! but not for beginners. This is how programming should be taught, I believe. Straight to the point and not long video.
@christianpenguin2651
@christianpenguin2651 Жыл бұрын
For sure, this video was a lot of work, thanks for it! Now I'm once again on the verge of deciding between an older well-tested Framework (Django) and a cool newcomer (FastAPI)... nerd problems...
@marcvanoldenborgh6218
@marcvanoldenborgh6218 Жыл бұрын
Thanks Patrick, for this excellent work.
@hipertracker
@hipertracker Ай бұрын
For REST in Django use Django REST Framework and all CRUD operation can be defined in a single simple ViewSet class. Plus every CRUD can be paginated, filtered with a simple one more code line.
@JohnnySins-zf4fb
@JohnnySins-zf4fb Жыл бұрын
Coming from FLASK to Django it is so much easier in Django when it comes to scalability for further upgrade than Flask
@timmehtimmeh576
@timmehtimmeh576 7 ай бұрын
Thanks for the detailed walktthrough. I was hoping to get an overall judgement or review of each. What is your answer to the "which is best?" question?
@alisonhj
@alisonhj Жыл бұрын
I got to know FastAPI with this video and it looks great! Also great job with your video!
@aariskazi9002
@aariskazi9002 2 жыл бұрын
Thank you so much for showing fast API database system I was stuck very long time thanks a lot for the video
@Kennethlumor
@Kennethlumor 2 жыл бұрын
Ending of this month I will be submitting my project work. 'final year project' but now the only thing left is search 🔎 systems where an admin can search for a student or books 📙
@josesebastiancolaneri7125
@josesebastiancolaneri7125 Жыл бұрын
I use django in backend and react js in frontend.. For me its really awesome the organization and structure you get with django. I also used django-rest-framework, and for API apps drf is the best choice in my opinion.
@jonathanidioseph5101
@jonathanidioseph5101 Жыл бұрын
How do u merge the two together?
@asii_k
@asii_k Жыл бұрын
@@jonathanidioseph5101 not the original commenter but we do the same where I work. Front end services just either make HTTP calls to the backend and/or can listen to or send RabbitMQ (sometimes pub/sub) messages. They're all microservices so each component is it's own discreet unit that just pass data between themselves
@waititsnilson1298
@waititsnilson1298 Жыл бұрын
@@jonathanidioseph5101 you merge front and backend through rest api, where the frontend makes requests to the backend
@gh0stb0y98
@gh0stb0y98 8 ай бұрын
​@@asii_kresourses to learn microservices with django-react ?
@darkdragon5848
@darkdragon5848 8 ай бұрын
Flask is so cool for small and medium size projects and can increase your speed in so many ways, i dont have any experience with fastapi but it looks the same.
@shafaitahir4728
@shafaitahir4728 9 ай бұрын
Thank you for this video, it helped me get an idea of what to start (i didnt understand anything 😅😅) but it gave me an idea as what to expect from each one. A hard decision to make of which one to begin with. any suggestions or roadmap are welcome, Thanks.
@biojui1
@biojui1 7 ай бұрын
Great video! thanks for the examples
@Gabrielowns321
@Gabrielowns321 Жыл бұрын
Managed to create a pretty cool app with a massive database using Flask in 6 weeks, its great.
@CesconetoG
@CesconetoG 2 жыл бұрын
Iv been trying to puzzle out what he says @ 6:26 for more than 10 minutes but finally figured it out: type hints, not type in, nor tie pins (as the auto generated captions believes he means)
@faysoufox
@faysoufox 2 жыл бұрын
Great informative video, thank you
@josemariadiy6400
@josemariadiy6400 Жыл бұрын
Hi Hola, buen video 👍 Consulta: de los 3 frameworks: Django, FastApi y Flask... Cuál recomendarias para este 2022.o 2023.?? Saludos
@swetarani1484
@swetarani1484 2 жыл бұрын
Very well explained!
@MagnusAnand
@MagnusAnand 2 жыл бұрын
All of them are good, but I like the Django style
@StephenRayner
@StephenRayner Жыл бұрын
I was hoping for a performance companies. But this is useful as well.
@christianm4906
@christianm4906 2 ай бұрын
As someone coming from other programming languages, I find FastApi the most attractive option.
@ND-gn8tc
@ND-gn8tc 2 жыл бұрын
What you should notice about FastAPI is that it has dependency injection built in. Try configure tests for complicated microservices without DI. Oh boy patching all the consumer/producer/external api/sdk calls will be a huge mess. Just impossible to integration test without messy mocks instead of clean DI.
@MoneylessWorld
@MoneylessWorld 2 жыл бұрын
@Francisco Mendoza Torres yes
@ND-gn8tc
@ND-gn8tc Жыл бұрын
@Francisco Mendoza Torres yes it is a killer feature
@subipan4593
@subipan4593 Жыл бұрын
Why do you need DI in Python? As far as my understanding, DI is just bundling different modules/components together at RUNTIME. In static languages like Java and C# you'd need DI. In Python, you can assign any variable to any object at runtime. I would like to know why you'd need it in Python? Python has DI built-in isn't it?
@ND-gn8tc
@ND-gn8tc Жыл бұрын
@@subipan4593 makes it easy to setup tests and test, thus, you can achieve extremely high coverage
@subipan4593
@subipan4593 Жыл бұрын
@@ND-gn8tc ONLY when you're using static languages like Java. Python is dynamic language that can change data types in RUNTIME. No need for DI in python.
@nathanwebb2800
@nathanwebb2800 Жыл бұрын
I use flask & gunicorn in docker containers but FastAPI's self documenting seems kinda handy....
@higiniofuentes2551
@higiniofuentes2551 2 жыл бұрын
Thank you for this very interesting video!
@k2icc
@k2icc 2 жыл бұрын
Similar stuff on Stremlit or out of the equation for what is used for?
@cexploreful
@cexploreful 2 жыл бұрын
wow! super clear! super awesome!
@michaelmarkoulides7068
@michaelmarkoulides7068 2 ай бұрын
Very helpful video saved me a ton of time thank you . I’ve used fast api for purely api and backend in the past I love it , I have never had to develop anything with a frontend or view or using any jinja templates so this was very useful . My favourite is fast api , I built a websockets framework with tornado in the past , I love tornado it’s solid when it comes to websockets and async aswell so but at the time fast api didn’t exist , django was too cumbersome for my needs at the time and flask was too light weight . I had redeveloped a small api with fast api and it’s definitely my first port of call for a web framework in python the autodoc feature the auto reload the pydantic built in so easy validation makes it a pleasurable experience once you get over the learning curve which is not so bad cos the documentation is really good and the speed for a python framework is really fast in production . Overall a pleasurable development experience
@JalalMujawar
@JalalMujawar 5 ай бұрын
For those who are getting error for the flask code, at 2:37 replace line 18 with app.app_context(): # Creating the database tables db.create_all()
@hallo-xp2wh
@hallo-xp2wh 2 жыл бұрын
congrats for 100K You are giving great content, thanks a ton!
@balloney2175
@balloney2175 9 ай бұрын
Hey Patrick, Your video is awesome! thanks for sharing. On index 7:50, I have to exclude "autocommit=False" b/c it is not working, and it says "internal server error" or something like that. After I that, it is working like breeze!
@SarateanuDima
@SarateanuDima 2 ай бұрын
As Java Senior for sure I would like to know about Fastapi. But still it's not so good structured as spring boot web. But I like it.)))
@mikesturyan9
@mikesturyan9 2 жыл бұрын
I use fastapi for my api' and starlette for web apps. Fastapi is built over starlette, so there is little paradigm shifting. I don't personally like Django as it sets too many rules. I would just build a vuejs front end instead of Django, then an api layer with fastapi.
@BehruzbekOtayev
@BehruzbekOtayev 2 жыл бұрын
"vuejs front end instead of Django"? Really? How are Django and VueJS comparable?
@johnniefujita
@johnniefujita 2 жыл бұрын
@@BehruzbekOtayev i think he meant that he is not using the front end template engine provided by django out of the box. Using django just to build the api. Which is actually norm in production for quite sometime already.
@yasayah7289
@yasayah7289 2 жыл бұрын
I would love a fastapi + vuejs tutorial!
@yoannguillard6877
@yoannguillard6877 2 жыл бұрын
@@yasayah7289 take it separately, "vuejs tuto rest API" and "fastAPI tuto". The only glue is to serve your static files generated by vuejs.
@herantd
@herantd 2 жыл бұрын
Vuejs and flask is match from heaven as well
@piotrjasielski
@piotrjasielski Жыл бұрын
Couldn't get_db() from FastAPI example be replaced with context manager (with Session)?
@varossimonyan
@varossimonyan Жыл бұрын
Very useful vide, thanks bro!)
@kevinmerrell9952
@kevinmerrell9952 Жыл бұрын
Very interesting. Thanks for posting this.
@avinashshankarpalli2130
@avinashshankarpalli2130 2 жыл бұрын
Would love see a course on Django
@wackytheshaggy
@wackytheshaggy Жыл бұрын
Great overview . My more opinionated take: Fastapi for simple APIs and micro services, django for anything more complicated. As soon as you have a db, you’ll want an admin app. Any large app in flask ends in the desire to have used django. And btw, with a class based view the django code could have been even simpler. And things like caching and django_q for queues bring the speed in complex apps.
@davidmcken
@davidmcken Жыл бұрын
Agree fully, the batteries Django includes are hard-won battle scars from those that went before you. There is usually very little benefit in re-inventing the wheel, focus on whats unique to your app. For smaller projects you should be designing to avoid those issues in the first place.
@jonatani6607
@jonatani6607 Жыл бұрын
Very good video. Im new in coding and python is my first language. So to deploy smaller functions what should i use. Im not good in html and css...does any of the framework do simple styling or do i need to become better in html and css for that.
@akshitadixit4556
@akshitadixit4556 Жыл бұрын
Go for flask.
@oreh350
@oreh350 Жыл бұрын
Great video! But I can't find the code for base.html so I cannot really make the same project. Any help here?
@joshbedo8291
@joshbedo8291 3 ай бұрын
Love the video thanks!
@joel9909
@joel9909 8 ай бұрын
The backend course I will be doing (Meta) uses Django, and I am also interested in Node. But mehn Fast Api seems powerful too, and Flask seems easy enough to prototype things with speed Subscribed
@GustavoPMex
@GustavoPMex Жыл бұрын
Awesome work!
@LukePighetti
@LukePighetti 11 ай бұрын
was hoping for a retrospective at the end!
@traductionalgerie8243
@traductionalgerie8243 2 жыл бұрын
Thanks. Very Good Work
@volmedo
@volmedo Жыл бұрын
Great work, thank you
@fullStackInKannada
@fullStackInKannada 9 ай бұрын
Very nice & clear explanation.
@ijazali8618
@ijazali8618 7 ай бұрын
I have completed 3 projects in Django now interested in API, but confused a little bit what now I choose DRF or FastAPI. I read on web that FastAPI is easy and fast but Django REST API is secured. Which I now choose become a conflict for me, now need guide from seniors Django developers with their experience in this regard.
@sergzz12
@sergzz12 Жыл бұрын
Thank you for this video!
@muhammadagiwardhana5251
@muhammadagiwardhana5251 6 ай бұрын
great comparison through framework
@ChrisHalden007
@ChrisHalden007 2 жыл бұрын
Great video. Thanks
@abinmichael3661
@abinmichael3661 2 жыл бұрын
FastApi is best one for API development my experience Thank you
Why You NEED To Learn FastAPI | Hands On Project
21:15
Travis Media
Рет қаралды 138 М.
Flask vs Django in 2024 - Make a RIGHT Choice (Difference Explained)
9:32
Daniel Dan | Tech & Data
Рет қаралды 31 М.
Nonomen funny video😂😂😂 #magic
00:29
Nonomen ノノメン
Рет қаралды 55 МЛН
I Trapped Myself in a Box with Colored Smoke!
00:50
A4
Рет қаралды 15 МЛН
I built the same app 10 times // Which JS Framework is best?
21:58
Fireship
Рет қаралды 2,4 МЛН
11 Tips And Tricks To Write Better Python Code
11:00
Patrick Loeber
Рет қаралды 594 М.
I built 10 web apps... with 10 different languages
14:23
Fireship
Рет қаралды 1,5 МЛН
PLEASE Use These 5 Python Decorators
20:12
Tech With Tim
Рет қаралды 74 М.
PyScript is officially here!🚀 Build web apps with Python & HTML
17:10
How Do I Choose the Right Web Framework?
11:51
IAmTimCorey
Рет қаралды 14 М.
The BEST Backend Language for You | Prime Reacts
32:57
ThePrimeTime
Рет қаралды 254 М.
Build an AI app with FastAPI and Docker - Coding Tutorial with Tips
35:18