4 Tips for Building a Production-Ready FastAPI Backend

  Рет қаралды 71,443

ArjanCodes

ArjanCodes

Күн бұрын

Пікірлер: 155
@ArjanCodes
@ArjanCodes 10 ай бұрын
Get started with Pulumi: www.pulumi.com/?
@ProgressiveDeveloper
@ProgressiveDeveloper 10 ай бұрын
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?
@johanboekhoven
@johanboekhoven 10 ай бұрын
Here's my vote for a oauth flow video, thanks for this one!
@Blablablateelbal
@Blablablateelbal 10 ай бұрын
Yes please!
@claberone
@claberone 10 ай бұрын
Oauth flow video it s a great idea
@sambroderick5156
@sambroderick5156 10 ай бұрын
My vote, too!
@orlanino
@orlanino 9 ай бұрын
Me 4. Also single sign'n. Please with a cherry on the top? 🍒
@gaaligadu148
@gaaligadu148 2 ай бұрын
yes please ! I'd very much like oauth flow video too !
@thefatalis2147
@thefatalis2147 10 ай бұрын
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!
@ArjanCodes
@ArjanCodes 10 ай бұрын
Nice! Thanks for the tip!
@SpoonOfDoom
@SpoonOfDoom 10 ай бұрын
That's good to know!
@aflous
@aflous 10 ай бұрын
Yeah but now, this is what we call premature optimization..
@mrbob806
@mrbob806 10 ай бұрын
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
@Lexaire
@Lexaire 10 ай бұрын
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.
@SpoonOfDoom
@SpoonOfDoom 10 ай бұрын
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.
@iflipphone
@iflipphone 10 ай бұрын
Would love to see an authentication flow for FastAPI tutorial !
@CalicoSeders
@CalicoSeders 10 ай бұрын
Yes, OAuth flow video please!
@mosheglobus1124
@mosheglobus1124 10 ай бұрын
OAuth flow video will be great! Thanks for all your crème de la crème content.
@eltreum1
@eltreum1 10 ай бұрын
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.
@CodeGearMonkey
@CodeGearMonkey 6 ай бұрын
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!
@skysaville
@skysaville 10 ай бұрын
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.
@devilasks
@devilasks 10 ай бұрын
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.
@pramodjingade6581
@pramodjingade6581 10 ай бұрын
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.
@rembautimes8808
@rembautimes8808 5 ай бұрын
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
@inspiredbyrd
@inspiredbyrd 10 ай бұрын
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 ;)
@erikvanraalte4557
@erikvanraalte4557 10 ай бұрын
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.
@erikvanraalte4557
@erikvanraalte4557 9 ай бұрын
@@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
@baldpolnareff7224
@baldpolnareff7224 10 ай бұрын
I really really want to see how you would approach this same example, but using SQLModel, which integrates FastAPI and sqlalchemy
@SunSatlON
@SunSatlON 10 ай бұрын
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_gainz
@deez_gainz 10 ай бұрын
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
@ArjanCodes
@ArjanCodes 10 ай бұрын
I'm glad the video was helpful!
@nulops
@nulops 10 ай бұрын
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.
@_baco
@_baco 10 ай бұрын
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.
@ArjanCodes
@ArjanCodes 9 ай бұрын
I'm glad you enjoyed the video!
@АлександрЗверев-й1х
@АлександрЗверев-й1х 10 ай бұрын
Thank you for the video. Since you are using deploy to the cloud, you can use a service mesh for rate limiting.
@conconmc
@conconmc 10 ай бұрын
The video I have been waiting for!! Thanks Arjan
@ArjanCodes
@ArjanCodes 10 ай бұрын
I'm glad you enjoyed the video!
@it_is_ni
@it_is_ni 10 ай бұрын
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.
@tomhas4442
@tomhas4442 10 ай бұрын
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
@AvihayBar
@AvihayBar 10 ай бұрын
less than 3 minutes into the video I've learned something new :) Thanks!
@ArjanCodes
@ArjanCodes 10 ай бұрын
I'm really glad you learned something new!
@daniels.9533
@daniels.9533 10 ай бұрын
Great video. My vote for the authentication follow-up!
@ifeanyinneji7704
@ifeanyinneji7704 10 ай бұрын
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
@mathijsdejong6416
@mathijsdejong6416 10 ай бұрын
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).
@Rabixter
@Rabixter 9 ай бұрын
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.
@walid7189
@walid7189 10 ай бұрын
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)
@kslader8
@kslader8 10 ай бұрын
I really appreciate the fastapi content. :)
@MusicStylesz
@MusicStylesz 10 ай бұрын
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!
@MuhammadDaif
@MuhammadDaif 10 ай бұрын
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 ?
@herbertpurpora9452
@herbertpurpora9452 2 ай бұрын
Adding docstring will help a ton too
@NovasVilla
@NovasVilla 10 ай бұрын
@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…
@KrzysztofKwlk3593
@KrzysztofKwlk3593 9 ай бұрын
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.
@ramimashalfontenla1312
@ramimashalfontenla1312 10 ай бұрын
Another vote for an oauth flow tutorial!!
@AZ-mi2wj
@AZ-mi2wj 10 ай бұрын
I vote for the options to call C++ code for performance critical sections from python
@DrGreenGiant
@DrGreenGiant 10 ай бұрын
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.
@phen2841
@phen2841 10 ай бұрын
Very insightful video as always Arjan
@ArjanCodes
@ArjanCodes 10 ай бұрын
I'm glad you enjoyed the content!
@M3MYS3LF1979
@M3MYS3LF1979 2 ай бұрын
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.
@joseantonioacevesgarcia2848
@joseantonioacevesgarcia2848 9 ай бұрын
Tests are the best, ship with confidence.
@ishandandekar1808
@ishandandekar1808 10 ай бұрын
Was looking for this yesterday! thank you
@ArjanCodes
@ArjanCodes 10 ай бұрын
Enjoy! ;)
@_DRMR_
@_DRMR_ 10 ай бұрын
Recently I heard of Litestar, which does some comparable things to FastAPI. Would you mind doing a comparison video between the two?
@aflous
@aflous 10 ай бұрын
I second this
@tomasemilio
@tomasemilio 10 ай бұрын
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.
@1986debu
@1986debu 10 ай бұрын
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?
@morkallearns781
@morkallearns781 10 ай бұрын
Another great video Arjan!
@ArjanCodes
@ArjanCodes 10 ай бұрын
Glad you enjoyed the video!
@circuitfever
@circuitfever 2 ай бұрын
Fantastic video. Thank you
@saketkr
@saketkr 5 ай бұрын
This was great! Thanks!
@Mamdouh76
@Mamdouh76 10 ай бұрын
Please do a video about Authentication specially about it being ready for actual production. is it enough to protect my routes with Supabase etc..
@olter1000
@olter1000 7 ай бұрын
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 😁
@Abomin81onVlog
@Abomin81onVlog 9 ай бұрын
Authentication/authorisation would be very nice
@MicheleHjorleifsson
@MicheleHjorleifsson 10 ай бұрын
would love to see an authentication flow video, oauth2 can send junior devs into a cave lol
@lio7652
@lio7652 9 ай бұрын
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 ? ❤
@_theashishbhatt
@_theashishbhatt 10 ай бұрын
Yup, please cover authentication next.
@rogertunnell5764
@rogertunnell5764 10 ай бұрын
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.
@princewillinyang5993
@princewillinyang5993 10 ай бұрын
OAuth2 flow in fastapi >>>>>>>>>>>>>
@rafiullah-zz1lf
@rafiullah-zz1lf 10 ай бұрын
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.
@rogertunnell5764
@rogertunnell5764 10 ай бұрын
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.
@sany2k8
@sany2k8 10 ай бұрын
Add a new video for the OAuth with fastapi please
@M1911Original
@M1911Original 10 ай бұрын
More FastAPI videos please
@gbvtech
@gbvtech 9 ай бұрын
learning fastapi and this was very helpful. just curious what font style are you using for the file explorer and the editor?
@darkbluewalther
@darkbluewalther Ай бұрын
That would be great to have the same examples with SQLModel ;)
@poriaasadipour
@poriaasadipour 8 ай бұрын
thank you sir, it was very helpful.
@ArjanCodes
@ArjanCodes 8 ай бұрын
I'm glad you found it helpful!
@raulvanharmelen7209
@raulvanharmelen7209 10 ай бұрын
I would love to see an authentication flow for FastAPI tutorial !
@buchi8449
@buchi8449 10 ай бұрын
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.
@Lexaire
@Lexaire 10 ай бұрын
When testing you can use app.dependency to override them with mocks and fakes. Abstract as much as you need, but not more.
@Stephane_
@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?
@hbbexxter4666
@hbbexxter4666 10 ай бұрын
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?
@bla7091
@bla7091 4 ай бұрын
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!
@phen2841
@phen2841 10 ай бұрын
Please could you do a video on an OAuth 2.0 authentication flow for microservices :)
@lachhorsley5859
@lachhorsley5859 10 ай бұрын
Please do a video on auth flow!
@djtoon8412
@djtoon8412 10 ай бұрын
Please do a video for authentication flow.
@karocify
@karocify 9 ай бұрын
Thanks for this
@ArjanCodes
@ArjanCodes 9 ай бұрын
Glad you enjoyed it!
@AndreaDalseno
@AndreaDalseno 10 ай бұрын
What about using a decorator to transform a database item into an item?
@plato4ek
@plato4ek 10 ай бұрын
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.
@sgkotmin
@sgkotmin 9 ай бұрын
10:15 what do you think about using with statement in get_db() instead generator?
@larryrowe
@larryrowe 8 ай бұрын
🙂 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.
@michelchaghoury9629
@michelchaghoury9629 10 ай бұрын
very nice tutorial, may i as u something? which one is better in term of performance? fastAPI or ExpressJS?
@Fido1hn
@Fido1hn 10 ай бұрын
Thank you for this video
@ArjanCodes
@ArjanCodes 10 ай бұрын
Thank you for the support!
@pmshadow
@pmshadow 8 ай бұрын
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
@bigoper Ай бұрын
This is amazing ❤ Where can I find the source code? Thank you!!!
@ArjanCodes
@ArjanCodes Ай бұрын
Thanks! Source code is always in the description of the video :), but here you go: git.arjan.codes/2023/fastapi-router
@uday4717
@uday4717 Ай бұрын
Should we beed to use gunicorn+ uvicorn in production
@patrick_kabwe
@patrick_kabwe 10 ай бұрын
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.
@aflous
@aflous 10 ай бұрын
He's not closing the connection only the session
@patrick_kabwe
@patrick_kabwe 10 ай бұрын
@@aflous thanks for the clarity
@Stasyanz
@Stasyanz 10 ай бұрын
let's go Oauth!
@guidodraheim7123
@guidodraheim7123 10 ай бұрын
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.
@rainymatch
@rainymatch 2 ай бұрын
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 🙂
@hubstrangers3450
@hubstrangers3450 10 ай бұрын
Thank you....
@ArjanCodes
@ArjanCodes 10 ай бұрын
Glad you enjoyed the video!
@drewnix3469
@drewnix3469 10 ай бұрын
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.
@vlntsolo
@vlntsolo 10 ай бұрын
For GCP there's fastapi cloud tasks package.
@Lexaire
@Lexaire 10 ай бұрын
FastAPI has BackgroundTasks built-in (check the docs). Otherwise Celery + Redis is a good combo.
@areyoukidig
@areyoukidig 9 күн бұрын
what's the reason to have get_db as depends in views instead of using this depends in the functions itself?
@DrGreenGiant
@DrGreenGiant 10 ай бұрын
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.
@ProgressiveDeveloper
@ProgressiveDeveloper 10 ай бұрын
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?
@matthiasbre
@matthiasbre 10 ай бұрын
Would it be possible to create a video of how to make an API on top of MongoDB using pymongo?
@udaym4204
@udaym4204 6 ай бұрын
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
@adeyemidamilola396
@adeyemidamilola396 10 ай бұрын
How do use session in fastapi
@BlindintheDark
@BlindintheDark 10 ай бұрын
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.
@Lexaire
@Lexaire 10 ай бұрын
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?
@Blackrobe
@Blackrobe 10 ай бұрын
I'm quite new to this, but is tip #2 basically MVC philosophy?
@muzafferckay2609
@muzafferckay2609 10 ай бұрын
İt is not. He talked about clean architecture partially
@eltreum1
@eltreum1 10 ай бұрын
Probably and a S.O.L.I.D thing, for single responsibility functions.
@aflous
@aflous 10 ай бұрын
It's layered architecture
@syedazeemjaved
@syedazeemjaved 10 ай бұрын
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?
@vikaspoddar001
@vikaspoddar001 10 ай бұрын
Well this is the better way to do it
@MagniPL
@MagniPL 10 ай бұрын
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.
@syedazeemjaved
@syedazeemjaved 10 ай бұрын
@@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!
@VictorGoba
@VictorGoba 10 ай бұрын
Do auth!
@mohseneptune
@mohseneptune 10 ай бұрын
authentication flow pleaaaaaaaaaaaaaaaaaase :)
@aldobladimirrodriguezgalle7094
@aldobladimirrodriguezgalle7094 9 ай бұрын
best decision I made was using their AI writing service.
Should You Use Dependency Injection Frameworks?
14:43
ArjanCodes
Рет қаралды 45 М.
COMPLETE No-Nonsense VSCode Setup for Python Devs
26:05
ArjanCodes
Рет қаралды 28 М.
How to Fight a Gross Man 😡
00:19
Alan Chikin Chow
Рет қаралды 15 МЛН
Hoodie gets wicked makeover! 😲
00:47
Justin Flom
Рет қаралды 137 МЛН
Мама у нас строгая
00:20
VAVAN
Рет қаралды 11 МЛН
Why You NEED To Learn FastAPI | Hands On Project
21:15
Travis Media
Рет қаралды 168 М.
FastAPI Internals - How does it work? - Marcelo Trylesinski
31:08
Python Italia
Рет қаралды 3,1 М.
Requests vs HTTPX vs Aiohttp
15:11
ArjanCodes
Рет қаралды 39 М.
How to Use FastAPI: A Detailed Python Tutorial
20:38
ArjanCodes
Рет қаралды 259 М.
SQLModel + FastAPI: Say Goodbye to Repetitive Database Code
19:50
Avoid These BAD Practices in Python OOP
24:42
ArjanCodes
Рет қаралды 74 М.
FastAPI, Flask or Django - Which Should You Use?
9:49
Tech With Tim
Рет қаралды 103 М.
7 Python Code Smells to AVOID at All Costs
22:10
ArjanCodes
Рет қаралды 375 М.
Want to build a good API? Here's 5 Tips for API Design.
10:57
CodeOpinion
Рет қаралды 210 М.
How to Fight a Gross Man 😡
00:19
Alan Chikin Chow
Рет қаралды 15 МЛН