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

Sdílet
Vložit
  • čas přidán 25. 06. 2024
  • 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! 🙏

Komentáře • 491

  • @phipag1997
    @phipag1997 Před 2 lety +100

    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 Před 6 měsíci +13

    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 Před 2 lety +144

    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 Před 2 lety +17

      I mean, not giving a definitive answer is good and all, but an opinion at the very least would be appreciated

    • @davidmcken
      @davidmcken Před rokem +13

      @@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 Před rokem +2

      @@davidmcken Thank you very much for the detailed explanations of the pros/cons for each choice.

  • @epicserve
    @epicserve Před 2 lety +606

    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 Před 2 lety +18

      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 Před 2 lety +11

      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 Před 2 lety +13

      @@komkaitkanchai8766 wow i'm amaze to see django vets here, i just learnt making basic django apps.

    • @rawmetal3052
      @rawmetal3052 Před 2 lety +19

      with Django Ninja introduced, I don't think API should be a problem anymore in Django

    • @mayankpant5376
      @mayankpant5376 Před 2 lety +14

      Why use ORM even 😂😂 just use normal SQL

  • @oncedidactic
    @oncedidactic Před 2 lety +23

    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 Před 2 lety +3

    Great editing on this! It was the perfect speed for me instead of watching a 2hr code along

  • @VanguardOnline2011
    @VanguardOnline2011 Před rokem

    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 Před 2 lety +4

    Man, it was awesome. I have started Flask for a while & this was a nice big picture for the backend roadmap.

  • @GurashishSingh1
    @GurashishSingh1 Před 2 lety +6

    Love this!! That FastAPI docs generation is super neat!

  • @WineZ22
    @WineZ22 Před rokem +74

    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 Před rokem +15

    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 Před rokem

    I really enjoy the constancy of your voice and the equidistance when presenting the 3 frameworks

  • @uju02
    @uju02 Před 2 lety +170

    Started Flask last year, it is currently rising up into my favourite framework, I’m enjoying my transition from PHP to Python

    • @irotochukwu6313
      @irotochukwu6313 Před 2 lety +7

      same too, I transitioned from php to python 3 years ago. python is so much cool.

    • @kevinlesieutre
      @kevinlesieutre Před 2 lety +16

      @@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 Před 2 lety

      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 Před 2 lety +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 Před 2 lety +1

      @@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 Před rokem +17

    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 Před 11 měsíci +1

    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 Před rokem

    Great presentation! Thanks for all the time you put into it. 👍🏼

  • @wilhelmngoma9009
    @wilhelmngoma9009 Před 9 měsíci +1

    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 Před rokem

    If I had more time I'd write a shorter letter. Thank you for a short and concise video. Very well done!

  • @marcelmoraisluna
    @marcelmoraisluna Před rokem +2

    Great man. I don't work with Python, but the simplicity is just great.

  • @kierencoetzee2517
    @kierencoetzee2517 Před rokem +7

    i like Flask's context management with the app factory pattern, very easy to get hold of application-wide config and db instances

  • @ekaetteessien4932
    @ekaetteessien4932 Před rokem +1

    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 Před rokem +1

    Amazing Video, Much appreciated. I learned a lot from this. Subscribed ❤

  • @Balkac
    @Balkac Před 6 měsíci +5

    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 Před rokem +1

    A very clear comparison indeed. Thanks.

  • @iamqaasim
    @iamqaasim Před rokem +4

    This is just the video I needed 👌 I can't belive you managed to do this is under 20min 😅 well done 🙏

  • @PedroGrilo13
    @PedroGrilo13 Před 2 lety

    Clear and concise video. Thanks :D

  • @marcvanoldenborgh6218

    Thanks Patrick, for this excellent work.

  • @PythonDevelopment
    @PythonDevelopment Před 2 lety +1

    Great content, dude! Awesome!

  • @cedric1731
    @cedric1731 Před 2 lety +7

    Flask-restx features Automatic Swagger creation as well :)

  • @mke7605
    @mke7605 Před 2 lety +5

    Have been using Django since version 1.3. Also used flash for some minor service. But fast api looks very interesting.

  • @Deadlious
    @Deadlious Před 2 lety +40

    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.

  • @davidarbanas6056
    @davidarbanas6056 Před 2 lety

    Congrats on hitting 100K!

  • @Semmelein
    @Semmelein Před rokem +2

    Using Django since 0.96 or so and I just love it because of all the batteries included.

  • @themarksmith
    @themarksmith Před 2 lety

    Excellent, excellent video, thank you so much!

  • @adityadeshmukh2390
    @adityadeshmukh2390 Před 2 lety +78

    For microservices flask and fastAPI
    For full stack django
    It depends on use cases what kind of application you want to develop

    • @iamlegqdev7743
      @iamlegqdev7743 Před 2 lety +16

      @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 Před 9 měsíci

    Great video! thanks for the examples

  • @balloney2175
    @balloney2175 Před 11 měsíci +1

    Awesome! but not for beginners. This is how programming should be taught, I believe. Straight to the point and not long video.

  • @cexploreful
    @cexploreful Před 2 lety

    wow! super clear! super awesome!

  • @BrianStDenis-pj1tq
    @BrianStDenis-pj1tq Před rokem +9

    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 Před 4 měsíci +1

    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 Před 2 lety +3

    i used to do all my work in Flask but recently i switched to FastAPI and i like it a lot

  • @d3f3kt57
    @d3f3kt57 Před rokem +13

    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 Před 8 měsíci +1

      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 Před 2 lety

    Thank you so much for showing fast API database system I was stuck very long time thanks a lot for the video

  • @mohammedalbatati5529
    @mohammedalbatati5529 Před 2 lety +8

    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

  • @varossimonyan
    @varossimonyan Před 2 lety

    Very useful vide, thanks bro!)

  • @kevinmerrell9952
    @kevinmerrell9952 Před rokem

    Very interesting. Thanks for posting this.

  • @user-un6vi8ix3q
    @user-un6vi8ix3q Před rokem +4

    Django's syntax seems cleaner and more readable than others

  • @swetarani1484
    @swetarani1484 Před 2 lety

    Very well explained!

  • @ginofrigoni
    @ginofrigoni Před 2 lety +2

    La verdad muy bueno, rápidamente logré ver las diferencias

  • @hallo-xp2wh
    @hallo-xp2wh Před 2 lety

    congrats for 100K
    You are giving great content, thanks a ton!

  • @fullStackInKannada
    @fullStackInKannada Před 11 měsíci

    Very nice & clear explanation.

  • @warloccarlos8522
    @warloccarlos8522 Před rokem +5

    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 Před 11 měsíci

    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 Před rokem +67

    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 Před rokem +1

      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 Před rokem

      Yup flask is a gem

    • @tejas4054
      @tejas4054 Před rokem +1

      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 Před rokem +3

      Django is super easy that the most complecated fastapi and flask

    • @miguelfrosales01
      @miguelfrosales01 Před 7 měsíci

      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 Před 15 dny

    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 Před rokem

    was hoping for a retrospective at the end!

  • @DevlogBill
    @DevlogBill Před 10 měsíci +3

    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 Před 2 lety

    Thank you for this very interesting video!

  • @faysoufox
    @faysoufox Před 2 lety

    Great informative video, thank you

  • @jakeditslear1678
    @jakeditslear1678 Před 2 lety +91

    Big fan of Flask, but I might have to experiment with FastAPI!

    • @vitalnikod7197
      @vitalnikod7197 Před 2 lety

      me too

    • @meizufluxx
      @meizufluxx Před 2 lety +1

      fastapi has awful docs

    • @NishantCosmos
      @NishantCosmos Před 2 lety +1

      @@meizufluxx but faster and better development if you learn it right?

    • @meizufluxx
      @meizufluxx Před 2 lety

      @@NishantCosmos no fastapi is awful because the docs are awful. they desperately need an api reference

    • @d34dplayer
      @d34dplayer Před 2 lety +1

      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 Před rokem +3

    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 Před rokem

      Simple Application Enter Your Details
      czcams.com/video/DWn5-Ej8R-M/video.html

  • @christianpenguin2651
    @christianpenguin2651 Před rokem +2

    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 Před 2 lety

    Thanks. Very Good Work

  • @GustavoPMex
    @GustavoPMex Před rokem

    Awesome work!

  • @alisonhj
    @alisonhj Před 2 lety +1

    I got to know FastAPI with this video and it looks great! Also great job with your video!

  • @timmehtimmeh576
    @timmehtimmeh576 Před 9 měsíci

    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 Před rokem

    I was hoping for a performance companies. But this is useful as well.

  • @jonasls
    @jonasls Před rokem +29

    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 Před rokem +6

      Celery is an standalone tool. You can use it with Flask, FastAPI and any other framework.

    • @dipenketanbhaidave154
      @dipenketanbhaidave154 Před rokem

      Brother can you suggest best project in flask , for Intern resume.

    • @jonasls
      @jonasls Před rokem

      @@josedominguez8782 True, but I was thinking about celerys direct integration to django - "django-celery".

    • @jonasls
      @jonasls Před rokem

      @@dipenketanbhaidave154 Issue tracking system

  • @sergzz12
    @sergzz12 Před rokem

    Thank you for this video!

  • @Gabrielowns321
    @Gabrielowns321 Před rokem

    Managed to create a pretty cool app with a massive database using Flask in 6 weeks, its great.

  • @joshbedo8291
    @joshbedo8291 Před 5 měsíci

    Love the video thanks!

  • @ChrisHalden007
    @ChrisHalden007 Před 2 lety

    Great video. Thanks

  • @volmedo
    @volmedo Před rokem

    Great work, thank you

  • @JohnnySins-zf4fb
    @JohnnySins-zf4fb Před rokem +3

    Coming from FLASK to Django it is so much easier in Django when it comes to scalability for further upgrade than Flask

  • @minorandrianarivo661
    @minorandrianarivo661 Před 2 lety +103

    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 Před 2 lety

      Ca va, mon ami.

    • @oliverreviews8496
      @oliverreviews8496 Před 2 lety +12

      I can tell you more. In large projects nobody writes code without typing :D
      So you made a good choice :D

    • @huacai168
      @huacai168 Před 2 lety +2

      Django-ninja is a good choice

    • @wolfmeowmeow
      @wolfmeowmeow Před 2 lety +1

      @@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 Před 2 lety +2

      @@wolfmeowmeow tech debt is a real issue lmao

  • @hipertracker
    @hipertracker Před 3 měsíci

    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 Před 8 měsíci

    great comparison through framework

  • @christianm4906
    @christianm4906 Před 4 měsíci +1

    As someone coming from other programming languages, I find FastApi the most attractive option.

  • @dayoldtortillas9345
    @dayoldtortillas9345 Před rokem

    Awesome video, thanks. Now I'll try and figure out what I just watched.

  • @CesconetoG
    @CesconetoG Před 2 lety +1

    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 Před 10 měsíci +1

    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 Před 11 měsíci

    Oh man... that wass awesome!

  • @LeviElekes
    @LeviElekes Před 3 měsíci

    Thanks

  • @ragsdale9
    @ragsdale9 Před 11 měsíci +3

    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 Před 11 měsíci +1

      @ragsdale9 can you provide the few lines of code for the fllask example. Im getting the same error

    • @nagibgonzalez5645
      @nagibgonzalez5645 Před 11 měsíci

      hey I was able to find the solution on github haha!

  • @MagnusAnand
    @MagnusAnand Před 2 lety +7

    All of them are good, but I like the Django style

  • @Kennethlumor
    @Kennethlumor Před 2 lety

    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 Před rokem

    No comments! Just subscribed 👍

  • @joel9909
    @joel9909 Před 10 měsíci

    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 Před 10 měsíci +1

    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 Před 2 lety +2

    Similar stuff on Stremlit or out of the equation for what is used for?

  • @SarateanuDima
    @SarateanuDima Před 4 měsíci +1

    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 Před 2 lety

    Thank you!

  • @avinashshankarpalli2130

    Would love see a course on Django

  • @joy_sam_raj
    @joy_sam_raj Před rokem

    Extremely good content😘

  • @comedyclub333
    @comedyclub333 Před 2 lety +15

    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 Před 2 lety +3

      You could say you've been "hitting the bottle" for the last few months! *badumtsss* (I'll see myself out now...)

    • @youssefchaabi5402
      @youssefchaabi5402 Před 2 lety

      I can programme big and fast Web projects by Flask only ?

  • @josesebastiancolaneri7125
    @josesebastiancolaneri7125 Před 2 lety +31

    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 Před rokem +1

      How do u merge the two together?

    • @asii_k
      @asii_k Před rokem +7

      @@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 Před rokem +12

      @@jonathanidioseph5101 you merge front and backend through rest api, where the frontend makes requests to the backend

    • @gh0stb0y98
      @gh0stb0y98 Před 10 měsíci

      ​@@asii_kresourses to learn microservices with django-react ?

  • @happyhome2523
    @happyhome2523 Před 3 měsíci

    thank you very much!

  • @Marco-cx6gp
    @Marco-cx6gp Před 2 lety +1

    What's the theme you're using? it's so neat! I want it

  • @ND-gn8tc
    @ND-gn8tc Před 2 lety +34

    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 Před 2 lety +3

      @Francisco Mendoza Torres yes

    • @ND-gn8tc
      @ND-gn8tc Před rokem +2

      @Francisco Mendoza Torres yes it is a killer feature

    • @subipan4593
      @subipan4593 Před rokem +5

      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 Před rokem +1

      @@subipan4593 makes it easy to setup tests and test, thus, you can achieve extremely high coverage

    • @subipan4593
      @subipan4593 Před rokem

      @@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 Před rokem

    Great Video THXXX