Тёмный

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

Patrick Loeber
Подписаться 268 тыс.
Просмотров 817 тыс.
50% 1

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! 🙏

Опубликовано:

 

25 июн 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 491   
@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.
@maithriashokan
@maithriashokan 6 месяцев назад
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.
@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
@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. 👌👌
@talanky
@talanky 2 года назад
Great editing on this! It was the perfect speed for me instead of watching a 2hr code along
@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.
@SiaTheWizard
@SiaTheWizard 2 года назад
Man, it was awesome. I have started Flask for a while & this was a nice big picture for the backend roadmap.
@GurashishSingh1
@GurashishSingh1 2 года назад
Love this!! That FastAPI docs generation is super neat!
@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.
@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!
@bogdanf6698
@bogdanf6698 Год назад
I really enjoy the constancy of your voice and the equidistance when presenting the 3 frameworks
@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 2 года назад
@@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 2 года назад
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 2 года назад
@@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 2 года назад
@@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)
@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 ;)
@nagibgonzalez5645
@nagibgonzalez5645 11 месяцев назад
Thank you for this. I have mostly been using python for data science but I'm looking to start building out web apps.
@professor-dad
@professor-dad Год назад
Great presentation! Thanks for all the time you put into it. 👍🏼
@wilhelmngoma9009
@wilhelmngoma9009 9 месяцев назад
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
@cupajoesir
@cupajoesir Год назад
If I had more time I'd write a shorter letter. Thank you for a short and concise video. Very well done!
@marcelmoraisluna
@marcelmoraisluna Год назад
Great man. I don't work with Python, but the simplicity is just great.
@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
@ekaetteessien4932
@ekaetteessien4932 Год назад
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.
@oseitutu598
@oseitutu598 Год назад
Amazing Video, Much appreciated. I learned a lot from this. Subscribed ❤
@Balkac
@Balkac 6 месяцев назад
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.
@manusharma8777
@manusharma8777 Год назад
A very clear comparison indeed. Thanks.
@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 Год назад
thank you!
@PedroGrilo13
@PedroGrilo13 2 года назад
Clear and concise video. Thanks :D
@marcvanoldenborgh6218
@marcvanoldenborgh6218 Год назад
Thanks Patrick, for this excellent work.
@PythonDevelopment
@PythonDevelopment 2 года назад
Great content, dude! Awesome!
@cedric1731
@cedric1731 2 года назад
Flask-restx features Automatic Swagger creation as well :)
@mke7605
@mke7605 2 года назад
Have been using Django since version 1.3. Also used flash for some minor service. But fast api looks very interesting.
@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 2 года назад
I can programme big and fast Web projects by Flask only ?
@Deadlious
@Deadlious 2 года назад
@@youssefchaabi5402 why not?
@youssefchaabi5402
@youssefchaabi5402 2 года назад
@@Deadlious Flask good in scaling ??
@youssefchaabi5402
@youssefchaabi5402 2 года назад
@@Deadlious OK bro thank you
@kamal-hassan
@kamal-hassan Год назад
@@youssefchaabi5402 what did you go with? Flask?
@davidarbanas6056
@davidarbanas6056 2 года назад
Congrats on hitting 100K!
@Semmelein
@Semmelein Год назад
Using Django since 0.96 or so and I just love it because of all the batteries included.
@themarksmith
@themarksmith 2 года назад
Excellent, excellent video, thank you so much!
@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.
@biojui1
@biojui1 9 месяцев назад
Great video! thanks for the examples
@balloney2175
@balloney2175 11 месяцев назад
Awesome! but not for beginners. This is how programming should be taught, I believe. Straight to the point and not long video.
@cexploreful
@cexploreful 2 года назад
wow! super clear! super 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.
@michaelmarkoulides7068
@michaelmarkoulides7068 4 месяца назад
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
@Hubert4515
@Hubert4515 2 года назад
i used to do all my work in Flask but recently i switched to FastAPI and i like it a lot
@d3f3kt57
@d3f3kt57 Год назад
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 8 месяцев назад
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
@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
@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.
@varossimonyan
@varossimonyan 2 года назад
Very useful vide, thanks bro!)
@kevinmerrell9952
@kevinmerrell9952 Год назад
Very interesting. Thanks for posting this.
@user-un6vi8ix3q
@user-un6vi8ix3q Год назад
Django's syntax seems cleaner and more readable than others
@swetarani1484
@swetarani1484 2 года назад
Very well explained!
@ginofrigoni
@ginofrigoni 2 года назад
La verdad muy bueno, rápidamente logré ver las diferencias
@hallo-xp2wh
@hallo-xp2wh 2 года назад
congrats for 100K You are giving great content, thanks a ton!
@fullStackInKannada
@fullStackInKannada 11 месяцев назад
Very nice & clear explanation.
@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 😄)
@shafaitahir4728
@shafaitahir4728 11 месяцев назад
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.
@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 7 месяцев назад
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
@xzex2609
@xzex2609 15 дней назад
Awesome useful video , in the end I think that the Django is the best option , and it was cleaner and very powerful one. but those other two were good.
@LukePighetti
@LukePighetti Год назад
was hoping for a retrospective at the end!
@DevlogBill
@DevlogBill 10 месяцев назад
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...
@higiniofuentes2551
@higiniofuentes2551 2 года назад
Thank you for this very interesting video!
@faysoufox
@faysoufox 2 года назад
Great informative video, thank you
@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.
@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 ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-DWn5-Ej8R-M.html
@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...
@traductionalgerie8243
@traductionalgerie8243 2 года назад
Thanks. Very Good Work
@GustavoPMex
@GustavoPMex Год назад
Awesome work!
@alisonhj
@alisonhj 2 года назад
I got to know FastAPI with this video and it looks great! Also great job with your video!
@timmehtimmeh576
@timmehtimmeh576 9 месяцев назад
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?
@StephenRayner
@StephenRayner Год назад
I was hoping for a performance companies. But this is useful as well.
@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
@sergzz12
@sergzz12 Год назад
Thank you for this video!
@Gabrielowns321
@Gabrielowns321 Год назад
Managed to create a pretty cool app with a massive database using Flask in 6 weeks, its great.
@joshbedo8291
@joshbedo8291 5 месяцев назад
Love the video thanks!
@ChrisHalden007
@ChrisHalden007 2 года назад
Great video. Thanks
@volmedo
@volmedo Год назад
Great work, thank you
@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
@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 2 года назад
@@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 2 года назад
@@wolfmeowmeow tech debt is a real issue lmao
@hipertracker
@hipertracker 3 месяца назад
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.
@muhammadagiwardhana5251
@muhammadagiwardhana5251 8 месяцев назад
great comparison through framework
@christianm4906
@christianm4906 4 месяца назад
As someone coming from other programming languages, I find FastApi the most attractive option.
@dayoldtortillas9345
@dayoldtortillas9345 Год назад
Awesome video, thanks. Now I'll try and figure out what I just watched.
@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)
@darkdragon5848
@darkdragon5848 10 месяцев назад
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.
@zbyszeks3657
@zbyszeks3657 11 месяцев назад
Oh man... that wass awesome!
@LeviElekes
@LeviElekes 3 месяца назад
Thanks
@ragsdale9
@ragsdale9 11 месяцев назад
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 11 месяцев назад
@ragsdale9 can you provide the few lines of code for the fllask example. Im getting the same error
@nagibgonzalez5645
@nagibgonzalez5645 11 месяцев назад
hey I was able to find the solution on github haha!
@MagnusAnand
@MagnusAnand 2 года назад
All of them are good, but I like the Django style
@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 📙
@alexturner6417
@alexturner6417 Год назад
No comments! Just subscribed 👍
@joel9909
@joel9909 10 месяцев назад
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
@Sam-tg4ii
@Sam-tg4ii 10 месяцев назад
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?
@k2icc
@k2icc 2 года назад
Similar stuff on Stremlit or out of the equation for what is used for?
@SarateanuDima
@SarateanuDima 4 месяца назад
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.)))
@bitpilot79
@bitpilot79 2 года назад
Thank you!
@avinashshankarpalli2130
@avinashshankarpalli2130 2 года назад
Would love see a course on Django
@joy_sam_raj
@joy_sam_raj Год назад
Extremely good content😘
@comedyclub333
@comedyclub333 2 года назад
As a mostly-flask-user I've been using bottle for the last few months. Man, this framework really blew my mind. While the basics are nothing special, advanced in-depth knowledge really makes it one of the most powerful (as in flexiblility and performance) frameworks in my opinion.
@sovietwarmachine1979
@sovietwarmachine1979 2 года назад
You could say you've been "hitting the bottle" for the last few months! *badumtsss* (I'll see myself out now...)
@youssefchaabi5402
@youssefchaabi5402 2 года назад
I can programme big and fast Web projects by Flask only ?
@josesebastiancolaneri7125
@josesebastiancolaneri7125 2 года назад
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 10 месяцев назад
​@@asii_kresourses to learn microservices with django-react ?
@happyhome2523
@happyhome2523 3 месяца назад
thank you very much!
@Marco-cx6gp
@Marco-cx6gp 2 года назад
What's the theme you're using? it's so neat! I want it
@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.
@WahreZocker
@WahreZocker Год назад
Great Video THXXX
@hughmann7485
@hughmann7485 Год назад
good luck!
Далее
Why You NEED To Learn FastAPI | Hands On Project
21:15
Просмотров 149 тыс.
FastAPI, Flask or Django - Which Should You Use?
9:49
BU KUN | THIS DAY
00:28
Просмотров 4 млн
I built 10 web apps... with 10 different languages
14:23
UI Libraries Are Dying, Here's Why
13:28
Просмотров 272 тыс.
The BEST Backend Language for You | Prime Reacts
32:57
Просмотров 295 тыс.
Python 101: Learn the 5 Must-Know Concepts
20:00
Просмотров 1,1 млн
How to Use FastAPI: A Detailed Python Tutorial
20:38
Просмотров 214 тыс.