How to Use FastAPI: A Detailed Python Tutorial

  Рет қаралды 239,041

ArjanCodes

ArjanCodes

Күн бұрын

Пікірлер: 256
@ArjanCodes
@ArjanCodes 11 ай бұрын
💡 Get my FREE 7-step guide to help you consistently design great software: arjancodes.com/designguide.
@lorenczhuka
@lorenczhuka 7 ай бұрын
Hello, got the error "can't reach this page" when trying to download the guide from the email. Any suggestion?
@priyesbamne9112
@priyesbamne9112 Жыл бұрын
Need more of these full length tutorials ❤️
@MalcolmJones-bossjones
@MalcolmJones-bossjones Жыл бұрын
Agreed !
@lungenbrötchen
@lungenbrötchen Жыл бұрын
20 minutes is a sweetspot
@ArjanCodes
@ArjanCodes Жыл бұрын
On it!
@yyfyyf6829
@yyfyyf6829 Жыл бұрын
@@ArjanCodes Thanks for your work! Really love those!
@ritwikgopi
@ritwikgopi Жыл бұрын
One of the other major point about fast api is that it is built to support async out of the box. So if you have blocking IO calls inside your API logic(db calls, file system interaction, other API calls etc), using async will improve your performance even more. In simple terms usually when 1 thread of python server will handle 1 API request. With async it would be able to serve more requests. One major thing is that, make sure to use async specific db library, requests module, file io modules etc. Then only we will have this advantage
@bilbo1337
@bilbo1337 Жыл бұрын
Just make sure your DB setup is also async, otherwise you're actually making things worse if you use async endpoints with a synchronous DB call.
@lawrencedoliveiro9104
@lawrencedoliveiro9104 Жыл бұрын
I have created worker threads to turn blocking calls into non-blocking.
@donjohnson6063
@donjohnson6063 Жыл бұрын
fastapi + pydantic is a ultimate pleasure to work with.
@yomajo
@yomajo Жыл бұрын
*In the sphere of virgin pleasures
@aflous
@aflous Жыл бұрын
+SQLModel
@TangoFoxtrotWhiskey
@TangoFoxtrotWhiskey Жыл бұрын
I'm a big fan of FastAPI. Thanks for doing this.
@ArjanCodes
@ArjanCodes Жыл бұрын
You’re welcome Tom - glad you liked it!
@yates_
@yates_ Жыл бұрын
I would also love to see videos about the best ways to deploy such an application, how to scale it, etc.
@andrewrzepecki7879
@andrewrzepecki7879 Жыл бұрын
Good job Arjan, looking forward to watching this, loving the channel!
@ArjanCodes
@ArjanCodes Жыл бұрын
Thank you Andrew!
@akhilparekh3941
@akhilparekh3941 Жыл бұрын
Will be very much helpful if you create a microservice series using fastAPI and django/ flask which can imetate the real life project scenario. So that we(entire ArjanCodes community) get to know better coding techniques as well as other understanding in details about that as well.
@treyhannam3806
@treyhannam3806 11 сағат бұрын
Thank you for this video, helped me get up to speed in a couple days and create something useful!
@_DRMR_
@_DRMR_ Жыл бұрын
Last year we ported our extensive Tornado based application to FastAPI. It was quite a learning experience. FastAPI really forced us to re-think some of our original customizations, but we ended up having full feature parity. Unfortunately we never managed to get it into production as the company eventually had to fold. You didn't even get to go into some of the neat tricks like Depends()! Future video? ;)
@_DRMR_
@_DRMR_ Жыл бұрын
Oh, and a nice trick with Pydantic models is that you can define separate Create/Update/Retrieve types. Then in your FastAPI route you can define a `response_model` that can help you filter results. Say your endpoint accepts certain data, but you only want to return some other data (instead of the exact same object, sometimes needed for enhanced security).
@obsidiansiriusblackheart
@obsidiansiriusblackheart Жыл бұрын
How robust is FastAPI? could this handle thousands of transactions a second, for example? I'd like to work with something that can handle ~500k individual transactions a day (with max db hits being ~5k a second), and this looks pretty good :)
@thesupercoach
@thesupercoach Жыл бұрын
​@@obsidiansiriusblackheart There's no real way to know. It's going to depend on a number of factors including: the speed of the DB, the speed of the systems running the (API, DB) processes, the complexity of the API functions, any potential latency if the DB is remote, the list goes on. Almost anything will work if you throw enough processes at it or tune it correctly, it really depends on how much you want it to work. You're not going to get C++ or even Go levels of performance out of a Python app, but you can get performance that's on par with NodeJS. If you're curious to see if it suits you, I'd suggest setting up a small test environment and throwing some traffic at it. As you've seen from the video, it doesn't take long to set up a single endpoint for test purposes. If you don't mind me asking, what sort of thing has such a wild variance that it could have up to 5k requests per second, but only 500k per day?
@potens1
@potens1 Жыл бұрын
...and in 20 minutes you can learn 80% of what is needed to use FastAPI ! Great introduction ! I'm using FastAPI right now, and a lot of things about it are good, but, I've to say, I find the router pretty weak, compared to i.e. Pyramid, and also, something that bothers me are some of decision they made, i.e. HTTPBearer security scheme is returning 403 instead or 401 when not authenticated. Also, I find some things are really difficult with it (i.e. peeking request content before the endpoint, for i.e. logging). That said, the auto doc, async, and all bells and whistles are worth it, for the time being
@rayen_fekih
@rayen_fekih Жыл бұрын
It would be helpful to have a series of this and include a tutorial about the interaction between machine learning models and FastAPI (maybe you can include saved models using MLFlow).
@tesnimhadhri4960
@tesnimhadhri4960 Жыл бұрын
Totally agree
@sergeigavrilov3746
@sergeigavrilov3746 Жыл бұрын
Cool video! Thanks! Would be nice to see video about integration FastApi and Dependency Injector, so interesting
@asadurrahmansifat
@asadurrahmansifat 11 ай бұрын
It's a really nice and concise tutorial. For those who are struggling in list comprehension, part in the 'query_item_by_parametters()' function. What it does is, It's going through all the items in the global dictionary object items ( 2:17 ) and for each `item` it's calling 'check_item()' with the argument `item` if it returns true then the item added to the selection list object.( 9:29 )
@wtfbomb
@wtfbomb 10 ай бұрын
Thanks for clarifying, the whole 'query_item_by_parameters()' part was the hardest to wrap my head around! 🧠
@tascsolutions6483
@tascsolutions6483 5 ай бұрын
Thanks, there is also a typo for count in the return all(). It has "item.count != count" when it should be "item.count == count". It threw me off for a bit.
@KoenCuijp
@KoenCuijp Жыл бұрын
Thanks for this Arjan! Great tutorial covering all you need to get started :) I wonder though why at 10:07 FastAPI doesn't crash with a validation error for you. Your return type of the function doesn't cover list[Item] which the "selection" part of your return value / response contains. I'd expect FastAPI to validate the data through Pydantic and failing to do so because of it containing a list of Item in the dict. Locally I do see this expected behaviour. Anyway, thanks again and greetings from Utrecht :)
@tascsolutions6483
@tascsolutions6483 Жыл бұрын
Have been recently playing around with flask and a little Django in the past. The learning curve and setup time is less steep with FastAPI. I like that templates (jinja2) can be added later.
@ScrobAlex
@ScrobAlex Жыл бұрын
Hey Arjan, thank you for making this video I'm a big fan of FastAPI! I noticed some problems: - at Path and query parameters, I got a JSONDecoder error, more exactly there was a problem at the return type, instead of dict[str, Selection] it should be dict[str, Selection | list[Item]] or other alternatives - in the Routing and requests, post and put endpoints had some unraised HttpExceptions I hope you make more videos using this framework in the future, thank you!
@lookingforbino
@lookingforbino Жыл бұрын
Thanks so much, i got the sam error repeatedly, fixed when added list[Item]. Why Arjan got no issue at all, a bit skeptical here
@akotronis
@akotronis Жыл бұрын
This is really great! Pydantic seems easier to use that marshmallow and enforces type-hints as best practice. Really love your videos about best practices/architecture stuff. A similar tutorial about Git best practices would be really nice!
@ArjanCodes
@ArjanCodes Жыл бұрын
Thanks so much! 😊
@panossavvaidis6086
@panossavvaidis6086 Жыл бұрын
Your persistance in consistent type fixing is marvelous
@maleldil1
@maleldil1 Жыл бұрын
Every Python programmer should do that. You can start by typing new functions and slowly typing legacy code, gradually increasing coverage in the codebase. Type hints improve everything, from catching trivial bugs to helping your IDE make better suggestions, not to mention living documentation that can't get out of date if you have a type checker in your CI.
@Asand3r
@Asand3r 9 ай бұрын
Another thanks for such quality content, that's really cool. Keep going, please.
@ArjanCodes
@ArjanCodes 8 ай бұрын
Thank you for the kind comment!
@ameen6768
@ameen6768 11 күн бұрын
great explanation man, I loved the practical example method.
@ArjanCodes
@ArjanCodes 11 күн бұрын
Glad you liked it!
@jdray
@jdray Жыл бұрын
I've been trying to learn Python. I started programming more than forty years ago, and while I'm not a professional developer, I have experience with a dozen or more programming languages, including C# and Perl (to me, Python seems like an illegitimate love child of those two parents). So... trying to learn Python. So many "intro to Python" videos provide the basics of programming along with the rudimentary structures of the language (formatted strings, getting input, etc.), and they're not useful to someone who can glance at a command, recognize its C roots, and move on without several minutes' discussion about how "print" puts a message on the console. This is the first video I've seen that outlines enough of the way a serious piece of software is written (data structures, function calls, API development, etc.) that it has been the most useful video on Python development I've watched. So thank you. I subscribed, am looking forward to more videos, and will refer back to this one a lot.
@ArjanCodes
@ArjanCodes Жыл бұрын
Wow! Thank you for sharing this!
@olgierd245
@olgierd245 Жыл бұрын
Thank you for this so much Arjan. I was just about to learn about FastAPI. There are so many of your vids on my watchlist when I'm going to switch jobs soon. Take care.
@ArjanCodes
@ArjanCodes Жыл бұрын
Glad it was helpful!
@adrien-barret
@adrien-barret Жыл бұрын
a video like this one on api best practices would be really nice, like how to add authentication between two services, a authentication with azure directory, etc...
@alexandrodisla6285
@alexandrodisla6285 Жыл бұрын
Fastapi is mean to following the ASGI specification, same as Unicorn. It doesn't make sens to use Gunicorn who follow WSGI spec. Hypercorn is more adapted, however unicorn is robust enough to stay in production.
@TheSzybas
@TheSzybas Жыл бұрын
What about dataclass_json library? I find it extremely neat to use. Adds a bit to regular Python dataclasses, like including/excluding additional fields, or providing default ones.
@FelippeTadeuA
@FelippeTadeuA Жыл бұрын
fastapi comes with pydantic, this package already have this features
@BlackJacketWasp
@BlackJacketWasp Жыл бұрын
Thanks! It's very concise. I love the part where it provides an ORM-like validation feature.
@LookNumber9
@LookNumber9 Жыл бұрын
Were you using Python 3.11 for this? Would love to see a few FastAPI and HTMX tutorials.
@luizhenrique187
@luizhenrique187 Жыл бұрын
In my current job we are developing a microsservice using fastapi, and everything is flowing nicely, in the next week the microsservice will gonna be deployed and if everything goes well we are gonna using for alot of things. Thanks for video, hope to see more fastapi around here
@ArjanCodes
@ArjanCodes Жыл бұрын
Nice! I'll definitely touch more on FastAPI in the future.
@KhoaTran-tw5gs
@KhoaTran-tw5gs 5 ай бұрын
I have a question about the code in 10:03, you defined the Selection type is a dictionary but why you can return the selection value in the response object with a list :D
@wtfbomb
@wtfbomb 10 ай бұрын
Thanks for yet another awesome video @ArjanCodes❤ I tried to code along some parts of your video without knowing your approach and I struggled a lot on the parameter query part. Even knowing your solution to the problem know, it still feels kinda hard to wrap my head around it. Any tips how I can improve that and solve such problems faster? Thinking about it.. is a video about problem solving something you want to do in the future?
@joaopedrorocha5693
@joaopedrorocha5693 Жыл бұрын
Hi Arjan, thank for the great tutorial! I remember suggesting it for you some time ago ... Thanks for delivering it!
@ArjanCodes
@ArjanCodes Жыл бұрын
Hope you liked it!
@giuliareal3364
@giuliareal3364 11 ай бұрын
Hi Arjan, this is incredible about how easy is to use the fast API compared to other frameworks (especially from Java). With few lines of code, I can get a good structure of an API. Thanks for the amazing tutorial and greetings from Brazil!!
@JacobKasperek
@JacobKasperek Жыл бұрын
Well to be fair the "A Detailed Python Tutorial" seems to be more of a clickbait than real description but thats a really clear and useful intro to FastAPI
@pawjast
@pawjast 17 күн бұрын
With Pydantic and all the input validation, do you still need to write unit tests for the API?
@dorb1337
@dorb1337 Жыл бұрын
Great video! thanks :) I think it could be a really nice addition if you would demonstrate it with Postman for the http requests, or maybe use the Swagger UI built in for the FastAPI ! you still rocks !
@UNgineering
@UNgineering Жыл бұрын
From my experience the "Fast" in FastAPI really shines during development. In practice, when running an optimized (not everything-by-default) application, the speed is comparable to Django or Flask. FastAPI has been my go-to framework for the past 3 years.
@architech5940
@architech5940 Жыл бұрын
Great tips! However, use "Optional" method from "typing" library instead of manually specifying an optional query param with "None=None"👌
@XRay777
@XRay777 Жыл бұрын
typing.Optional does not give you a default value though so you cannot really get around that. The other part is just preference. As of Python 3.10 you can use | instead of Union so specifically importing an additional class to write Optional[int] seems a bit pointless to me if you can simply write int | None.
@untildawn5714
@untildawn5714 Жыл бұрын
Thank you for helping us. learned a lot from you and this tutorial gives me quick knowledge to ace my tech interview today.
@ArjanCodes
@ArjanCodes Жыл бұрын
Best of luck!
@wjhdrew
@wjhdrew Жыл бұрын
The sheer volume of usages of the word 'fast' in the first 20 seconds compelled me to smash that thumbs up button.
@ArjanCodes
@ArjanCodes Жыл бұрын
Haha, thanks!
@marioluizbernardinelli2659
@marioluizbernardinelli2659 Жыл бұрын
Nice video, as always. However, I need to ask you: do you recommend the use of FastAPI over Flask? Do you use it in your projects?
@jonecir
@jonecir Жыл бұрын
Hey, did you figure out about the use of FastAPI over Flask?
@vincentverdugo
@vincentverdugo Жыл бұрын
More FastAPI please. My main backend framework, it's the future and the creator has a sick mustache. Awesome video liked.
@BoyOfTheFuture4987
@BoyOfTheFuture4987 8 ай бұрын
Hi, I have been using javascript for frontend and have a bit of practice of abckend with js. However, i have been thinking of moving to Python for fastapi and use it as my backend solution for any software that i create. I dont have much expreicne in Python. Whay would you suggest? Should i solidify my backend skills in js or move to Python and fast api and use it. I want to have a pleasant experience when bulidng backend and that is very good in security. Your response would be helpful.
@hY-ug8vn
@hY-ug8vn Жыл бұрын
please make a full length tutorial for Typer like this video, working to build a CLI tool that manipulates a yaml / json file for example. You have excellent videos.
@milandean
@milandean Жыл бұрын
Do you have a full length tutorial for using Pydantic? That's something new to me that's quite common and I could use your extremely clean explanations!
@ArjanCodes
@ArjanCodes Жыл бұрын
Not yet! But your suggestion is noted! :)
@MH-oc4de
@MH-oc4de 14 күн бұрын
I've spent several hours today trying to do something that should be simple: use a custom class in the query? parameters with fastapi. The custom class can be instantiated from a string (I realize all parameters in the query are initially string). From searching similar issues on stack overflow there doesn't appear to be a way to do this. Also, what I'd really like to do is create the query params from an application.wadl file (a schema where they are defined). I don't see any way to do this either.
@gerozayas9425
@gerozayas9425 Жыл бұрын
I love your videos! Thanks a lot for the great work and inspiration! Keep up the amazing content!!
@ArjanCodes
@ArjanCodes Жыл бұрын
Thank you! Will do!
@SajanKumar-mx2jg
@SajanKumar-mx2jg Жыл бұрын
How can we intercept those errors when we miss the params or send the the wrong param type? Thank you for the excellent explanation!
@CaptainCsaba
@CaptainCsaba Жыл бұрын
FastAPI is the bets Python framework for building APIs.
@du2xdev530
@du2xdev530 Жыл бұрын
another great advantage is the dependency injection approach
@FelippeTadeuA
@FelippeTadeuA Жыл бұрын
at Grupo Sifra (BR company for credit) all the new python APIs are developed with FastAPI rather than Flask, when well developed they become faster! I already shared your channel with coworks, your videos are amazing
@ArjanCodes
@ArjanCodes Жыл бұрын
Thanks so much for sharing!
@tamles937
@tamles937 Жыл бұрын
Great video! It's a really good intro, but there is so much good stuff yet to cover! What makes me really like this framework are also the way it handles dependency injection, the docs that let you test your app, the async support!! Really a great framework, since I discovered it I've never created an API with another python framework haha!
@naiduanuradha6
@naiduanuradha6 2 ай бұрын
is there any good video that covers all ???
@tamles937
@tamles937 2 ай бұрын
@@naiduanuradha6 Unfortunately I don't have any suggestion. But the official documentation of FastAPI is well written and not too long, you might find all you need to know there!
@phurbagyalzensherpa
@phurbagyalzensherpa Жыл бұрын
Thanks Arjan for presenting a comprehensive look at FastAPI.Utilizing Pydantic's BaseModel allows you to design a request body schema that can accommodate multiple fields, and the validator decorator can be employed to validate each field individually.
@AnDr3vV7
@AnDr3vV7 3 ай бұрын
Trying to run the api and consume with a mock client process. Problem is I'm using docker containers and can't access the api from my client procces. How do you run both at the same time?
@bernidacruz
@bernidacruz Жыл бұрын
as always great video! Your tutorials are alway a pleasure. A tutorial to SQLalchemy would be very much appreciated as well
@whisperingadventurespnw
@whisperingadventurespnw Жыл бұрын
this is awesome. I'm currenty learning fast api, but I've been building apis with django rest so the database part is alluding me. I love your tutorials. could you possibly do another one of these but so a very simple full setup. like one endpoint, the pydantic model, and the database stuff. youtube is definitly missing out on this specific tutorial. currently all the tutorials I've found stop wtih using a dictionary. no one has done the full tutorial yet.
@TangoFoxtrotWhiskey
@TangoFoxtrotWhiskey Жыл бұрын
I used similar to the Gino FastAPI tutorial for my team's implementations. Other than we used SqlAlchemy rather than Gino. The installation instructions are out of date but I like the FastAPI, db, and Alembic setup.
@StrategicCIS
@StrategicCIS Жыл бұрын
Is there a reason not to use SQLModel instead of Pydantic and SQLAlchemy?
@_russell
@_russell Жыл бұрын
Agree, SQLModel seems like the obvious choice if using SQLAlchemy, since SQLModel gives you a pydantic model for free. But not always “instead of” Pydantic. Sometimes the database model is not the same as the HTTP request and response models. In those cases, you’d want to use pydantic to model the request/response, and SQLModel to model what’s in the database.
@Cdaprod
@Cdaprod 2 ай бұрын
Bc Pydantic is all you need :3
@l.kennethwells2138
@l.kennethwells2138 Жыл бұрын
Your style is fire. Where should I go to learn full-stack? What's your recommendation?
@SiricioHernandez
@SiricioHernandez Жыл бұрын
Hi, I'm checking FastAPI and I have to say that it has this kind of genious simplicity. Please, if you can, make a new video touching "Depends" and how FastAPI's async nature affects to db access. I've been having some blocking issues accessing an SQLite database with more than one uvicorn worker (I think they are fighting for the sweet love of the database). So, I'm concern about how the async nature of FastAPI can affect the db access. Thanks.
@ukrainian333
@ukrainian333 Жыл бұрын
Great tutorial! Btw, will be great to see how fast is FastAPI... Something like side by side load tests with NodeJS-based API frameworks, like Express or Fastify, and maybe PHP-based frameworks (idk is there some similar, or not). I use FastAPI for my personal purposes, and small projects for my freelance clients, but I want to now how usable is FastAPI in highload, kinda what limit of this thing?
@ArjanCodes
@ArjanCodes Жыл бұрын
Great suggestion!
@mahmudhasan3093
@mahmudhasan3093 Жыл бұрын
hello arjan! can you do a django tutorial series just like this one?
@김호성-b9z
@김호성-b9z Жыл бұрын
Thank you!! Looking forward more and deep video!!!b
@jonecir
@jonecir Жыл бұрын
Hello Dr. Arjan, I'm glad I found this FastAPI tutorial, very well explained. I have a quick question: where should I install FastAPI? Globally on my PC or inside a Python Project in a virtual environment?
@thegrind9628
@thegrind9628 Жыл бұрын
Its always a good idea to use virtual environments unless you want to pollute the system with several packages.
@DeKeL_BaYaZi
@DeKeL_BaYaZi 4 ай бұрын
BEST TEACHER EVER LIVED !
@kennethgoldswain7302
@kennethgoldswain7302 Жыл бұрын
Can you do a web assembly section with python if at all possible?
@nishantyadav6341
@nishantyadav6341 Жыл бұрын
Love your videos! @ArjanCodes. What is the plugin in your terminal that suggests packages etc.? (timestamp: 1.23)
@jefffields4407
@jefffields4407 Ай бұрын
Might mention prerequisites for fastapi install!
@alimaster89
@alimaster89 Жыл бұрын
Really nice introduction to fastapi! Will you do (or have you done) an introduction to plotly/dash?
@ArjanCodes
@ArjanCodes Жыл бұрын
Last summer I made Dash mini series!
@nixonkutz3018
@nixonkutz3018 Жыл бұрын
Just jam-packed with details and no fluff. Why can't every tutorial be this bandwidth-efficient?!?!
@ArjanCodes
@ArjanCodes Жыл бұрын
Thanks, glad you liked it!
@barutistudio1397
@barutistudio1397 Жыл бұрын
More FastApi with your unique style Arjan
@RosinskyJ
@RosinskyJ Жыл бұрын
Great video! I would love to see a similar Django tutorial
@philippedid
@philippedid 5 ай бұрын
Thank's From France very nice share
@wexwexexort
@wexwexexort Жыл бұрын
Would you do a video on fastapi and async / await?
@gtm559
@gtm559 9 ай бұрын
Hi may I ask you why in category visual studio show error? Thank you
@lookingforbino
@lookingforbino Жыл бұрын
@ArjanCodes At time of 13:42, if you change the item.id to a number that exist in items dict, the code not gonna throw an error, it just adds the item to items. Can you explain why ? Thanks
@lookingforbino
@lookingforbino Жыл бұрын
Fixed, in the code the key word 'raise' missed. Thanks anyway
@davidpoundall769
@davidpoundall769 10 ай бұрын
Can fastapi replace django as a wrapper for production code? Is it appropriate?
@tjanos88
@tjanos88 Жыл бұрын
Great content, thanks a lot and have a nice weekend! 🙂
@ArjanCodes
@ArjanCodes Жыл бұрын
Thanks, you too!
@blanketfish
@blanketfish Жыл бұрын
I really like pydantic models. It's really convenient to be able to enforce models for data. I've worked with fast API before but mostly worked on Django. I really like how lightweight fast API is and the built in validation. I'm curious. Do you know how it validates under the hood? I have a project I'm working on now in which I'm using pydantic models, but I'm verifying by constructing the model objects. I'm sure there's an easier way.
@djangodeveloper07
@djangodeveloper07 Жыл бұрын
postman or similar tool isn't easy to test Apis ? it also saves time
@fernandino1909
@fernandino1909 6 ай бұрын
Do you make these codes available anywhere?
@adid7737
@adid7737 Жыл бұрын
Do you have a video for implementing based AuthN and AuthZ using FastAPI and App registration in Azure?
@lokeishdesaichetty1198
@lokeishdesaichetty1198 Жыл бұрын
simple and sweet explanation
@ArjanCodes
@ArjanCodes Жыл бұрын
Thank you so much 🙂
@tinyentropy
@tinyentropy Жыл бұрын
Which color theme are you using here?
@alexforget
@alexforget 9 ай бұрын
yes: fastapi, then pydantic and starlette and uvicorn and sqlalchemy and then vue.js for the admin and then the api for the communications between all the js and the api backend, then all the crud for all the objects. Or use Django and focus on the actual problem you want to solve.
@bibekjha8129
@bibekjha8129 Жыл бұрын
i wanted to know which formatter you are using for your code.
@apurbabiswas7218
@apurbabiswas7218 Жыл бұрын
Would love to see a pandas-based data engineering course -> including software you've already talked about (pydantic, pandera, fastapi etc...)
@Naresh13Kumar
@Naresh13Kumar Жыл бұрын
Hi need one clarification on function(query_item_by_parameters) you are using '|' what is can you explain about that? (name: str | None = None,)
@HackerCowboy
@HackerCowboy Жыл бұрын
Would like to see detailed tips and tricks on FastAPI
@AlexanderWhillas
@AlexanderWhillas Жыл бұрын
I thought the big deal with FastAPI was that it was async and thats what makes it fast. Wanted to see more on that and how you'd use it with other async libs like sqlalchemy[asyncio].
@mengisi
@mengisi Жыл бұрын
Very explained!
@DennisGeorge-cn3zu
@DennisGeorge-cn3zu 4 ай бұрын
silly question, but in the final product where is fastAPI/Python sitting - in your office or on the server? eg perl is on server
@ArjanCodes
@ArjanCodes 3 ай бұрын
You would typically host an API like this in the cloud. You can then access it remotely by sending requests to it.
@DennisGeorge-cn3zu
@DennisGeorge-cn3zu 3 ай бұрын
@@ArjanCodes Thank you for the reply. I see that we write the app on our PC in Python, upload it to a web host, and the web host server handles requests from two places: a) the HTML running on the same server as the Python - this will be v fast response b) from myself in any location, eg if I want to download daily stats, or change a page of text
@tajomnynominant
@tajomnynominant Жыл бұрын
Is this validation working only with pydantic, or can FastAPI also get the types form dataclasses?
@tecnoloxia137
@tecnoloxia137 Жыл бұрын
nice, do the same example using sqlalchemy. Does it only work with sqlite? why use it over sqlite3?
@RuslanKovtun
@RuslanKovtun Жыл бұрын
You haven't mentioned killer feature of FastAPI which is tight Swagger integration, which allows you to prototype your entire project's API in a single day and give it to both front and back end team. In other words front end team don't have to wait for API to be ready before starting to implement it.
@turokII
@turokII 7 ай бұрын
This was great, thank you!
@ArjanCodes
@ArjanCodes 7 ай бұрын
Glad you enjoyed it!
@wolfeygamedev1688
@wolfeygamedev1688 Жыл бұрын
I like FastAPI, I dont like sqlAlchemy. I tried it and followed all the instructions but I just found it harder to use it then rust’s sqlx. Im going to try duckdb and see how that goes. Otherwise will just use native drivers per db.
@SP-bk7ns
@SP-bk7ns Жыл бұрын
감사합니다.
@yoshcn
@yoshcn Жыл бұрын
Amazing intro to fastapi
@TimTurnquist
@TimTurnquist Жыл бұрын
Rumor has it that this is F-A-S-T! Would that be a reference to the development timeline or performance? Anyway, loved the video (as usual) and can't wait to try it out myself.
@IwoGda
@IwoGda Жыл бұрын
Performance, there are quite a few benchmarks online
@ReRubis
@ReRubis Жыл бұрын
FastAPI is amazing!
Pydantic Tutorial • Solving Python's Biggest Problem
11:07
pixegami
Рет қаралды 272 М.
Python Logging: How to Write Logs Like a Pro!
11:02
ArjanCodes
Рет қаралды 169 М.
🍉😋 #shorts
00:24
Денис Кукояка
Рет қаралды 3 МЛН
SHAPALAQ 6 серия / 3 часть #aminkavitaminka #aminak #aminokka #расулшоу
00:59
Аминка Витаминка
Рет қаралды 1,1 МЛН
Worst flight ever
00:55
Adam W
Рет қаралды 21 МЛН
GraphQL vs REST: What's The Difference And When To Use Which?
26:57
15 Python Libraries You Should Know About
14:54
ArjanCodes
Рет қаралды 390 М.
FastAPI, Flask or Django - Which Should You Use?
9:49
Tech With Tim
Рет қаралды 83 М.
Coding Was HARD Until I Learned These 5 Things...
8:34
Elsa Scola
Рет қаралды 450 М.
Python Decorators: The Complete Guide
27:59
ArjanCodes
Рет қаралды 154 М.
Why You NEED To Learn FastAPI | Hands On Project
21:15
Travis Media
Рет қаралды 162 М.
FastAPI Tutorial - Building RESTful APIs with Python
1:03:10
Amigoscode
Рет қаралды 243 М.
Never install locally
5:45
Coderized
Рет қаралды 1,8 МЛН
25 nooby Python habits you need to ditch
9:12
mCoding
Рет қаралды 1,8 МЛН
Learn to code with an unfair advantage.
15:05
Jason Goodison
Рет қаралды 174 М.
🍉😋 #shorts
00:24
Денис Кукояка
Рет қаралды 3 МЛН