Hey, Arjan it's been a while now following your design guide videos. But the real problem is that, is it good to place more than one class in a single file, I have been coding in PHP where every class takes its own file, the code is simple to refactor in that way. What are thoughts i python?
@johanboekhoven10 ай бұрын
Here's my vote for a oauth flow video, thanks for this one!
@Blablablateelbal10 ай бұрын
Yes please!
@claberone10 ай бұрын
Oauth flow video it s a great idea
@sambroderick515610 ай бұрын
My vote, too!
@orlanino9 ай бұрын
Me 4. Also single sign'n. Please with a cherry on the top? 🍒
@gaaligadu1482 ай бұрын
yes please ! I'd very much like oauth flow video too !
@thefatalis214710 ай бұрын
Quick tip 💡Always declare functions used by Depends(...) as async. FastAPI runs synchronous dependencies in a separate thread with asyncio.to_thread, which considerably slows down your application when the request rate is high due to the overhead of spawning a new thread!
@ArjanCodes10 ай бұрын
Nice! Thanks for the tip!
@SpoonOfDoom10 ай бұрын
That's good to know!
@aflous10 ай бұрын
Yeah but now, this is what we call premature optimization..
@mrbob80610 ай бұрын
You should only use async if you understand async and know that it's right. If you put it on a CPU-blocking function, it'll block your event loop. FastAPI has great docs on this to learn, but if you DON'T know what async is, it's safer to not use it
@Lexaire10 ай бұрын
Not a good tip because you didn't explain when not to do it! Only declare dependencies as async if they don't make synchronous connections. If you have a synchronous call inside the dependency, you want it running in the thread pool! So don't declare it as async! In fact if you don't know what you're doing, you're better off making them all NOT async because then you're guaranteed to not break things.
@SpoonOfDoom10 ай бұрын
In the router, you can use response_model (which takes a pydantic model you define), and then when you return the database item, FastAPI does the JSON conversion for you.
@iflipphone10 ай бұрын
Would love to see an authentication flow for FastAPI tutorial !
@CalicoSeders10 ай бұрын
Yes, OAuth flow video please!
@mosheglobus112410 ай бұрын
OAuth flow video will be great! Thanks for all your crème de la crème content.
@eltreum110 ай бұрын
Thanks Arjan. I like that you always set up more complete example projects and talk about the real-world use cases and considerations. Security is an important aspect that is not easily understood so an Oauth/JWT vid would be cool.
@CodeGearMonkey6 ай бұрын
The FastAPI videos are awesome! One thing I haven't found much at all about and I find myself frustrated with a lot is setting up FastAPI with SQLModel using more complex databases with many-to-many relationships and properly using TYPE_CHECKING and other things to avoid circular imports when breaking the application into separate components. A video covering this would be GREATLY appreciated! Thanks again for all the work you do!
@skysaville10 ай бұрын
Been working on a CLI to scaffold out my microservice architecture, defaulting to FastAPI-based services. I’m glad to see I’m on the right track. There were definitely a few points I will start implementing from now on.
@devilasks10 ай бұрын
I'd love videos that address scalability, multi-tenant architecture and caching strategies for applications that work with larger amounts of data in the backend - like when there is a time series and maybe some complicated statistical computation retrieved from a database. I find that too many tutorials focus on the eCommerce bubble or - if they deal with more complicated data structures - they focus on the presentation layer. For example, I would love to see how you design a backend for the plotly/Dash dashboards that can handle large amounts of data.
@pramodjingade658110 ай бұрын
One small correction (if I dare say) to 4:22, fastAPI does care how you name your functions when you enable swagger coz your function sort of become the description of the API endpoint. Love your videos btw
@οδυσσεαςφατουρος10 ай бұрын
Hi Arjan, thanks for the grest video. I also think that having a look at SQLModel makes sense. Both FastAPI and SQLModel where created by Sebastian Ramirez amd the purpose of SQLModel is exactly to not have to struggle with Pydantic models and sqlalchemy (database mmodels). An SQLModel class inherits bith from pydantic and sqlalchemy. So you would have only one Item object in the project.
@rembautimes88085 ай бұрын
Good on pulumi to sponsor this video. Just recently stumbled on this channel and it’s really good. I’ll definitely be giving a pulumi a try very soon
@inspiredbyrd10 ай бұрын
Love your content as always Arjan. Can you do a video about how to implement multi-tenancy in fast-api, especially regarding the difference in services each tenant wil use? So which folder stucture and which design patterns for difference in price calculation or language etc. Might be a nice challenge for an architect like you ;)
@erikvanraalte455710 ай бұрын
7:32, one remark: - instead of doing **db_item.__dict__, you can do model_validate(_json) to "cast" the (I surmise) SQLAlchemy object from the db to your Pydantic type. (Assuming you are using Pydantic >2, otherwise you can do .from_orm) I also see patterns where you inject a db and pass it to the crud method quite often. Why not define a db interface, create a class that implements that IF and construct/use it here? e.g. db.read_item(item_id). You could still use dependency injection and also completely change the impelmentation, as long as you adhere to the interface. Curious to hear your thoughts on it.
@erikvanraalte45579 ай бұрын
@@superjcvd that’s a nice feature yes. However, I think it’s more readable when the conversion is explicit. It also creates clear separation, as I want nothing to do with sqlalchemy types outside of my crud
@baldpolnareff722410 ай бұрын
I really really want to see how you would approach this same example, but using SQLModel, which integrates FastAPI and sqlalchemy
@SunSatlON10 ай бұрын
Slight remark, Update with PUT HTTP method should contain the full object in the request (Not optional). If you're want individual field update, you should opt for PATCH
@deez_gainz10 ай бұрын
Thanks a lot Arjan, what took me 1+ year to figure out at my work with trial and error, you summed up in sub 30 min hahahah
@ArjanCodes10 ай бұрын
I'm glad the video was helpful!
@nulops10 ай бұрын
Hi thanks for this excellent video. A video on the folder structure of a fastapi project would be great. Thank you for your Fastapi videos, they help me make progress.
@_baco10 ай бұрын
Great video!!! Loved all the tips on structuring a not-example project. I am really used to Django, which helps enforcing the structure; but it's absolutely true that no other FastAPI tutorial online tells where to put parts.
@ArjanCodes9 ай бұрын
I'm glad you enjoyed the video!
@АлександрЗверев-й1х10 ай бұрын
Thank you for the video. Since you are using deploy to the cloud, you can use a service mesh for rate limiting.
@conconmc10 ай бұрын
The video I have been waiting for!! Thanks Arjan
@ArjanCodes10 ай бұрын
I'm glad you enjoyed the video!
@it_is_ni10 ай бұрын
4:30: wrt naming the functions, I’d just use “delete”, “add” and “update”. The context makes it clear what things we’re performing those operations on. And then you don’t have items.delete_items but the nicer items.delete.
@tomhas444210 ай бұрын
Is there a specific reason you used __dict__ instead of, e.g. pydantic 2’s model_dump (to_dict in v1)? I see its a neat quick solution but for prod would probably do it more explicitly to not run knto issues when changing Item or DBItems properties. PS: Another excellent video and nice demo of orm and iaas in action with good tips! Two very crucial things in SWE, which often have to be acquired on the job, so tutorials like these are much appreciated. My suggestion for pt2: authentication and semver/automatic version bumping
@AvihayBar10 ай бұрын
less than 3 minutes into the video I've learned something new :) Thanks!
@ArjanCodes10 ай бұрын
I'm really glad you learned something new!
@daniels.953310 ай бұрын
Great video. My vote for the authentication follow-up!
@ifeanyinneji770410 ай бұрын
Wow what a nice tutorial. The automation part is definitely what I've been looking for. I have a webscraper built using selenium and it's meant to be used by multiple users at a time. I think I'll try this pulumi method. Looks similar to what apify does
@mathijsdejong641610 ай бұрын
Great video, very helpful! Thank you Arjan! Very interested in a video on setting up OAuth (specifically behind a corporate VPN) or asynchronous task queues (e.g., with Celery and Flower).
@Rabixter9 ай бұрын
This is very useful. I am trying to figure out how to use sqlmodel and fastapi together in the neatest possible way. One thing I find weird is creating multiple classes for what seems like the same thing. For example, a pydantic base model plus a sqlmodel. And then separate classes for the CRUD functionality. I see people do this in different way, and would like to know if there is a "correct" way of doing it.
@walid718910 ай бұрын
Hi, awesome video. I would definitely like to see an in-depth video about an authentication flow, hierarchy management of permissions of more than one service, etc. In addition, I would like to see some sort of an example of multiple services that use an auth service (I just hope this is not too much to ask :D)
@kslader810 ай бұрын
I really appreciate the fastapi content. :)
@MusicStylesz10 ай бұрын
Related to point 3: what is your viewpoint on serverless? Instead of using FastAPI as a framework you would use serverless services like API gateway for routing and lambda functions as your business logic. All of this can then also be defined in IaC and moved between cloud vendors to reduce vendor lock-in. I see this way of working gaining more popularity as it drastically reduces the operational overhead and also often is more cost-efficient. Certainly for applications which don't have a continuous load. Would be very interesting to get your thoughts on this!
@MuhammadDaif10 ай бұрын
Great video as usual ! I think how to build a production ready application is missing from the most tutorials of most tools. What I've found particularly challenging with async programming and python (using Sanic not FastAPI), is that unfortunately not every library supports async ops. The common wisdom is to move those blocking libraries to a different event loop/ thread and then you can use it asynchronously. The challenge here is python threading doesn't play nice with that approach. I've seen that approach leading to serious memory leaks in production. Do you have experience with such scenarios ?
@herbertpurpora94522 ай бұрын
Adding docstring will help a ton too
@NovasVilla10 ай бұрын
@ArjanCodes Nice 😊 Video. Question: How the limiter works to keep the persistence in a distributed environment like Cloud Run, just by pressing F5 we can swap from one instance to another…
@KrzysztofKwlk35939 ай бұрын
Some time ago you did perfect video about 'routing testing' but in this video you add 'rate limitation'. How should we test 'rate limitation'? I also vote for video about OAuth.
@ramimashalfontenla131210 ай бұрын
Another vote for an oauth flow tutorial!!
@AZ-mi2wj10 ай бұрын
I vote for the options to call C++ code for performance critical sections from python
@DrGreenGiant10 ай бұрын
I've been using pybind11 for this recently. And used boost before. It's not quick and not easy to wrap your head around, particularly the building of the module when you pip install.
@phen284110 ай бұрын
Very insightful video as always Arjan
@ArjanCodes10 ай бұрын
I'm glad you enjoyed the content!
@M3MYS3LF19792 ай бұрын
Excellent video! Definitely interested in how you secure your prod APIs with authentication. Been putting off trying Unkey, but right now I just use basic auth which in turn generates a session token.
@joseantonioacevesgarcia28489 ай бұрын
Tests are the best, ship with confidence.
@ishandandekar180810 ай бұрын
Was looking for this yesterday! thank you
@ArjanCodes10 ай бұрын
Enjoy! ;)
@_DRMR_10 ай бұрын
Recently I heard of Litestar, which does some comparable things to FastAPI. Would you mind doing a comparison video between the two?
@aflous10 ай бұрын
I second this
@tomasemilio10 ай бұрын
I like having an Item and then in the endpoint I add resonse_model=ItemResponse or something like that, it does it automatically for you.
@1986debu10 ай бұрын
From a separation of responsibility perspective, would it not be better to have the DB dependency injection in the function dealing with application logic rather than the router function?
@morkallearns78110 ай бұрын
Another great video Arjan!
@ArjanCodes10 ай бұрын
Glad you enjoyed the video!
@circuitfever2 ай бұрын
Fantastic video. Thank you
@saketkr5 ай бұрын
This was great! Thanks!
@Mamdouh7610 ай бұрын
Please do a video about Authentication specially about it being ready for actual production. is it enough to protect my routes with Supabase etc..
@olter10007 ай бұрын
I would highly appreciate if you will make video about nice way to implement auth in Fast API. They have so poor way to manage role based authorization, I was shocked after .Net. Like forget about attributes or other handy stuff, use dependency injection instead! That's sick. I thought Python is kind of modern cool language and has all topics covered in a stylish manner 😁
@Abomin81onVlog9 ай бұрын
Authentication/authorisation would be very nice
@MicheleHjorleifsson10 ай бұрын
would love to see an authentication flow video, oauth2 can send junior devs into a cave lol
@lio76529 ай бұрын
I would love to see the production setup for FastAPI project using Docker on Virtual Machine. I mean the production Dockerfile, docker-compose. The production FastAPI code no super example, but real good example. Listed things what to do on the docker side to secure, develop FastAPI project. Listed things to do on VM how to secure your app. From ground up. Does your course cover that ? ❤
@_theashishbhatt10 ай бұрын
Yup, please cover authentication next.
@rogertunnell576410 ай бұрын
nit: there's a lot of unnecessary memory usage. Creating dictionaries solely for the sake of using kwargs doubles the memory per resource. Would recommend: a.) explicitly passing the arguments - more typing but better runtime performance b.) creating or using an existing factory method like from_orm - don't love the coupling here though, or c.) use transformer functions - a function that accepts, for example, a DBItem and returns an Item and this function's inverse. There's a small overhead to the call stack, but uses pass by reference so no doubling memory consumption per resource and now there's is a well defined, singular place to manage the relationship between the two objects.
@princewillinyang599310 ай бұрын
OAuth2 flow in fastapi >>>>>>>>>>>>>
@rafiullah-zz1lf10 ай бұрын
Thanks your videos are by far the most intelligently crafted to the point and love your teaching skills. I have a question for you what is tge thought process for tackling any problem how are softwares built. Is it from top to bottom are from bottom to top? Suppose building a website for school should i start from a student or from school to student.
@rogertunnell576410 ай бұрын
slowapi is cool, I just wish they would create types for the units. Strings are sloppy and error-prone. Something like a RateLimit class w/ args like magnitude: int, per_unit: RateLimitUnit, where RateLimitUnit is an abc or protocol w/ impls like Second, Minute, etc. would be super simple, much cleaner and extensible. Granted, an enterprise application will be running multiple app instances and capabilities like rate limiting should be delegated to an API gateway or service mesh.
@sany2k810 ай бұрын
Add a new video for the OAuth with fastapi please
@M1911Original10 ай бұрын
More FastAPI videos please
@gbvtech9 ай бұрын
learning fastapi and this was very helpful. just curious what font style are you using for the file explorer and the editor?
@darkbluewaltherАй бұрын
That would be great to have the same examples with SQLModel ;)
@poriaasadipour8 ай бұрын
thank you sir, it was very helpful.
@ArjanCodes8 ай бұрын
I'm glad you found it helpful!
@raulvanharmelen720910 ай бұрын
I would love to see an authentication flow for FastAPI tutorial !
@buchi844910 ай бұрын
I commented similarly before, but why do you inject DB sessions instead of functions or service objects implementing operations into routers? A problem with this approach is that the routers have hard references to actual implementations of operations. Once operations are extracted from a router, the router's responsibility is only interaction between HTTP clients and the extracted operations. But if the router is hard-linked to implementations of the operations, it is impossible to write "unit" tests of the router for testing this responsibility. On the other hand, if you inject implementations of operations instead, you can write the unit tests testing interaction between HTTP clients and the operations by injecting mocks of the operations. A classic approach is injecting a service object. Or you can define an operation as a function taking a DB session as an argument, then inject a partial function created from the function and a DB session. FastAPI's DI should work for both cases.
@Lexaire10 ай бұрын
When testing you can use app.dependency to override them with mocks and fakes. Abstract as much as you need, but not more.
@Stephane_7 ай бұрын
Thank you, Arjan, for this very informative video! I have a question. You have moved operations out of the endpoint functions and put them in model files, just below existing models as methods. In my case, I have created files containing utils classes containing static methods that can be called inside endpoint functions. Is that a bad practice?
@hbbexxter466610 ай бұрын
What type of keyboard do you use in your videos? Looks like a Keychron 65%? In general: what sort of keyboards do you use for programming? Do you guys go for mechanical gaming keyboards, ergonomic ones or just the standard ANSI layout?
@bla70914 ай бұрын
I wonder, at 10:10 would it be possible to use a context manager instead? Something like "with session_local() as db: yield db Just curious, I'm learning loads from your videos!
@phen284110 ай бұрын
Please could you do a video on an OAuth 2.0 authentication flow for microservices :)
@lachhorsley585910 ай бұрын
Please do a video on auth flow!
@djtoon841210 ай бұрын
Please do a video for authentication flow.
@karocify9 ай бұрын
Thanks for this
@ArjanCodes9 ай бұрын
Glad you enjoyed it!
@AndreaDalseno10 ай бұрын
What about using a decorator to transform a database item into an item?
@plato4ek10 ай бұрын
10:00 Same here. Shouldn't the `session_local()` call also be inside the try-finally block? Looks like `yield database` cannot throw an exception by its own.
@sgkotmin9 ай бұрын
10:15 what do you think about using with statement in get_db() instead generator?
@larryrowe8 ай бұрын
🙂 From a very old school programmer from the dark ages on IBM mainframe between web/all types of terminals, etc If you want to use high speed volume computer background things like Rusk/etc. that deal with terminals/and/or HTML then Python is ok, but also consider Java running as the HTML and terminal handler relative to the internet to talk to things like RUST/etc. Let Java talk to the background RUST/C/etc. The Java classes are good performers and allow the heavy lifters to focus on the basic high performance data sources and databases, etc. to ignore all the web/etc. display/input nonsense, html, etc.
@michelchaghoury962910 ай бұрын
very nice tutorial, may i as u something? which one is better in term of performance? fastAPI or ExpressJS?
@Fido1hn10 ай бұрын
Thank you for this video
@ArjanCodes10 ай бұрын
Thank you for the support!
@pmshadow8 ай бұрын
Hi Arjan, do you provide consulting services? I am solo developer for a small company, and I use FastAPI for the backend. Some best practices to streamline development would come in very handy. Thanks
@bigoperАй бұрын
This is amazing ❤ Where can I find the source code? Thank you!!!
@ArjanCodesАй бұрын
Thanks! Source code is always in the description of the video :), but here you go: git.arjan.codes/2023/fastapi-router
@uday4717Ай бұрын
Should we beed to use gunicorn+ uvicorn in production
@patrick_kabwe10 ай бұрын
Hi Arjan, Regarding closing a connection for each request is this best practice? if yes doesnt this introduces latency? i.e each time there is a new request first need to connect to the database and then execute the query.
@aflous10 ай бұрын
He's not closing the connection only the session
@patrick_kabwe10 ай бұрын
@@aflous thanks for the clarity
@Stasyanz10 ай бұрын
let's go Oauth!
@guidodraheim712310 ай бұрын
Again, no authorisation. I have criticized that in the comments of every video about web applications. There is no such thing as production-ready without it. However you do not need to present the OAuth part for that. A simple basicauth with roles in a file is good enough. Older application had moved that part to the frontend web server like Apache. However in Python and FastAPI we tend to run the http server directly on a port, so we are free to run it locally or in a cloud.
@rainymatch2 ай бұрын
4:25 "FastAPI does not care what the names of these functions are" - I believe they end up being the endpoint names which you can access like this: ```python endpoint_name = request.scope["endpoint"].__name__ ``` I find that handy when building some custom logic in the templates ... feel free to correct me / explain why this is not the right approach 🙂
@hubstrangers345010 ай бұрын
Thank you....
@ArjanCodes10 ай бұрын
Glad you enjoyed the video!
@drewnix346910 ай бұрын
Do you use or recommend any kind of queue or scheduler to go along with FastAPI? I've been debating using Celery/RabbitMQ a back-end scheduler for a API I am building. If you don't have one already would be cool subject for another video. BTW Love your channel. Cheers.
@vlntsolo10 ай бұрын
For GCP there's fastapi cloud tasks package.
@Lexaire10 ай бұрын
FastAPI has BackgroundTasks built-in (check the docs). Otherwise Celery + Redis is a good combo.
@areyoukidig9 күн бұрын
what's the reason to have get_db as depends in views instead of using this depends in the functions itself?
@DrGreenGiant10 ай бұрын
I've been using fastapi for several months now on an embedded sensor, after seeing one of your videos. The thing I don't like, which is a nightmare to find how-to's on is actually a python syntax issue relating to decorators. Globals give me the ick, especially as an ex C++ guy. So having @app.get, which requires a globally scoped app (or router) makes me very uneasy, particularly when multiple processes import this file. Therefore i don't use the fastapi decorators and have a factory function that returns an app or router instead. Would be interested to hear your thoughts on this.
@ProgressiveDeveloper10 ай бұрын
Hey, Arjan it's been a while now following your design guide videos. But the real problem is that, is it good to place more than one class in a single file, I have been coding in PHP where every class takes its own file, the code is simple to refactor in that way. What are thoughts i python?
@matthiasbre10 ай бұрын
Would it be possible to create a video of how to make an API on top of MongoDB using pymongo?
@udaym42046 ай бұрын
i use sqlalchemy should i use every code in try catch to handle error most of error i return responce like i get error like datebase is down or should i handle global error
@adeyemidamilola39610 ай бұрын
How do use session in fastapi
@BlindintheDark10 ай бұрын
11:53 Optional is a misnomer and should be called "Nullable", providing a default value makes it optional. If you actually look at Optional all it is is typing that includes a None, and it has nothing to do with the default.
@Lexaire10 ай бұрын
He uses it correctly. It's Optional with a default value of None, and then he filters out the Nones for the update call. Or maybe you linked to the wrong timestamp?
@Blackrobe10 ай бұрын
I'm quite new to this, but is tip #2 basically MVC philosophy?
@muzafferckay260910 ай бұрын
İt is not. He talked about clean architecture partially
@eltreum110 ай бұрын
Probably and a S.O.L.I.D thing, for single responsibility functions.
@aflous10 ай бұрын
It's layered architecture
@syedazeemjaved10 ай бұрын
I generally tend to manage all business logic in the routing files, and all crud functions have separate files. Is there a better way to do it?
@vikaspoddar00110 ай бұрын
Well this is the better way to do it
@MagniPL10 ай бұрын
You could introduce another layer, let's call it services that would handle the business logic. The need for it depends on the complexity. One of the benefits could be ability to tests logic without the API or API without logic.
@syedazeemjaved10 ай бұрын
@@MagniPL this is an interesting thought, that would decouple the business logic from the routes and could be reused for let's say create and update separately. Will definitely give it a try!
@VictorGoba10 ай бұрын
Do auth!
@mohseneptune10 ай бұрын
authentication flow pleaaaaaaaaaaaaaaaaaase :)
@aldobladimirrodriguezgalle70949 ай бұрын
best decision I made was using their AI writing service.