4 Tips for Building a Production-Ready FastAPI Backend

  Рет қаралды 45,924

ArjanCodes

ArjanCodes

Күн бұрын

In this video, I’ll talk about 4 things that you typically won’t find in most FastAPI tutorials online. These tips are really useful, especially if you want to create a backend that’s used in a production setting.
➡️ Get started with Pulumi: www.pulumi.com/?...
🐱‍💻 GitHub repository: git.arjan.codes/2023/fastapi-...
✍🏻 Take a quiz on this topic: www.learntail.com/quiz/evzgkb
💻 ArjanCodes Blog: www.arjancodes.com/blog
🎓 Courses:
The Software Designer Mindset: www.arjancodes.com/mindset
The Software Architect Mindset: Pre-register now! www.arjancodes.com/architect
Next Level Python: Become a Python Expert: www.arjancodes.com/next-level...
The 30-Day Design Challenge: www.arjancodes.com/30ddc
🛒 GEAR & RECOMMENDED BOOKS: kit.co/arjancodes.
👍 If you enjoyed this content, give this video a like. If you want to watch more of my upcoming videos, consider subscribing to my channel!
Social channels:
💬 Discord: discord.arjan.codes
🐦Twitter: / arjancodes
🌍LinkedIn: / arjancodes
🕵Facebook: / arjancodes
📱Instagram: / arjancodes
♪ Tiktok: / arjancodes
👀 Code reviewers:
- Yoriz
- Ryan Laursen
- Dale Hagglund
🎥 Video edited by Mark Bacskai: / bacskaimark
🔖 Chapters:
0:00 Intro
1:57 #1 Split into separate routers
5:22 #2 Move operations out of the endpoint functions
15:58 #3 Optimize the way you deploy your application
22:51 #4 Control access
26:00 Final thoughts
#arjancodes #softwaredesign #python
DISCLAIMER - The links in this description might be affiliate links. If you purchase a product or service through one of those links, I may receive a small commission. There is no additional charge to you. Thanks for supporting my channel so I can continue to provide you with free content each week!

Пікірлер: 140
@ArjanCodes
@ArjanCodes 4 ай бұрын
Get started with Pulumi: www.pulumi.com/?
@ScorpusMugnes
@ScorpusMugnes 4 ай бұрын
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 4 ай бұрын
Here's my vote for a oauth flow video, thanks for this one!
@Blablablateelbal
@Blablablateelbal 4 ай бұрын
Yes please!
@claberone
@claberone 4 ай бұрын
Oauth flow video it s a great idea
@sambroderick5156
@sambroderick5156 4 ай бұрын
My vote, too!
@orlanino
@orlanino 3 ай бұрын
Me 4. Also single sign'n. Please with a cherry on the top? 🍒
@SpoonOfDoom
@SpoonOfDoom 4 ай бұрын
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.
@thefatalis2147
@thefatalis2147 4 ай бұрын
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 4 ай бұрын
Nice! Thanks for the tip!
@SpoonOfDoom
@SpoonOfDoom 4 ай бұрын
That's good to know!
@aflous
@aflous 4 ай бұрын
Yeah but now, this is what we call premature optimization..
@mrbob806
@mrbob806 4 ай бұрын
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 4 ай бұрын
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.
@iflipphone
@iflipphone 4 ай бұрын
Would love to see an authentication flow for FastAPI tutorial !
@user-lj1kz8ee9p
@user-lj1kz8ee9p 4 ай бұрын
Yes, OAuth flow video please!
@mosheglobus1124
@mosheglobus1124 4 ай бұрын
OAuth flow video will be great! Thanks for all your crème de la crème content.
@eltreum1
@eltreum1 4 ай бұрын
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.
@devilasks
@devilasks 4 ай бұрын
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.
@erikvanraalte4557
@erikvanraalte4557 4 ай бұрын
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 3 ай бұрын
@@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
@user-os1zs7dn1b
@user-os1zs7dn1b 4 ай бұрын
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.
@baldpolnareff7224
@baldpolnareff7224 4 ай бұрын
I really really want to see how you would approach this same example, but using SQLModel, which integrates FastAPI and sqlalchemy
@skysaville
@skysaville 4 ай бұрын
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.
@pramodjingade6581
@pramodjingade6581 4 ай бұрын
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
@inspiredbyrd
@inspiredbyrd 4 ай бұрын
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 ;)
@tomhas4442
@tomhas4442 4 ай бұрын
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
@ishandandekar1808
@ishandandekar1808 4 ай бұрын
Was looking for this yesterday! thank you
@ArjanCodes
@ArjanCodes 4 ай бұрын
Enjoy! ;)
@nulops
@nulops 4 ай бұрын
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.
@conconmc
@conconmc 4 ай бұрын
The video I have been waiting for!! Thanks Arjan
@ArjanCodes
@ArjanCodes 4 ай бұрын
I'm glad you enjoyed the video!
@walid7189
@walid7189 4 ай бұрын
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)
@_baco
@_baco 3 ай бұрын
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 3 ай бұрын
I'm glad you enjoyed the video!
@user-tv2hs5rs4t
@user-tv2hs5rs4t 4 ай бұрын
Thank you for the video. Since you are using deploy to the cloud, you can use a service mesh for rate limiting.
@mathijsdejong6416
@mathijsdejong6416 4 ай бұрын
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 2 ай бұрын
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.
@morkallearns781
@morkallearns781 4 ай бұрын
Another great video Arjan!
@ArjanCodes
@ArjanCodes 4 ай бұрын
Glad you enjoyed the video!
@nielsbom5558
@nielsbom5558 4 ай бұрын
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.
@phen2841
@phen2841 4 ай бұрын
Very insightful video as always Arjan
@ArjanCodes
@ArjanCodes 4 ай бұрын
I'm glad you enjoyed the content!
@AvihayBar
@AvihayBar 3 ай бұрын
less than 3 minutes into the video I've learned something new :) Thanks!
@ArjanCodes
@ArjanCodes 3 ай бұрын
I'm really glad you learned something new!
@kslader8
@kslader8 4 ай бұрын
I really appreciate the fastapi content. :)
@ifeanyinneji7704
@ifeanyinneji7704 4 ай бұрын
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
@joseantonioacevesgarcia2848
@joseantonioacevesgarcia2848 3 ай бұрын
Tests are the best, ship with confidence.
@poriaasadipour
@poriaasadipour 2 ай бұрын
thank you sir, it was very helpful.
@ArjanCodes
@ArjanCodes 2 ай бұрын
I'm glad you found it helpful!
@SunSatlON
@SunSatlON 3 ай бұрын
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
@NovasVilla
@NovasVilla 4 ай бұрын
@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…
@deez_gainz
@deez_gainz 4 ай бұрын
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 4 ай бұрын
I'm glad the video was helpful!
@daniels.9533
@daniels.9533 4 ай бұрын
Great video. My vote for the authentication follow-up!
@user-gj8jl1wq4r
@user-gj8jl1wq4r 3 ай бұрын
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.
@1986debu
@1986debu 4 ай бұрын
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?
@Fido1hn
@Fido1hn 4 ай бұрын
Thank you for this video
@ArjanCodes
@ArjanCodes 4 ай бұрын
Thank you for the support!
@michelchaghoury9629
@michelchaghoury9629 4 ай бұрын
very nice tutorial, may i as u something? which one is better in term of performance? fastAPI or ExpressJS?
@MuhammadDaif
@MuhammadDaif 4 ай бұрын
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 ?
@karocify
@karocify 3 ай бұрын
Thanks for this
@ArjanCodes
@ArjanCodes 3 ай бұрын
Glad you enjoyed it!
@ramimashalfontenla1312
@ramimashalfontenla1312 4 ай бұрын
Another vote for an oauth flow tutorial!!
@rafiullah-zz1lf
@rafiullah-zz1lf 4 ай бұрын
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.
@hubstrangers3450
@hubstrangers3450 4 ай бұрын
Thank you....
@ArjanCodes
@ArjanCodes 4 ай бұрын
Glad you enjoyed the video!
@rogertunnell5764
@rogertunnell5764 4 ай бұрын
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.
@tomasemilio
@tomasemilio 4 ай бұрын
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.
@Abomin81onVlog
@Abomin81onVlog 3 ай бұрын
Authentication/authorisation would be very nice
@gbvtech
@gbvtech 3 ай бұрын
learning fastapi and this was very helpful. just curious what font style are you using for the file explorer and the editor?
@Mamdouh76
@Mamdouh76 4 ай бұрын
Please do a video about Authentication specially about it being ready for actual production. is it enough to protect my routes with Supabase etc..
@_DRMR_
@_DRMR_ 4 ай бұрын
Recently I heard of Litestar, which does some comparable things to FastAPI. Would you mind doing a comparison video between the two?
@aflous
@aflous 4 ай бұрын
I second this
@olter1000
@olter1000 Ай бұрын
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 😁
@lio7652
@lio7652 2 ай бұрын
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 ? ❤
@Stephane_
@Stephane_ Ай бұрын
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?
@MusicStylesz
@MusicStylesz 4 ай бұрын
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!
@sgkotmin
@sgkotmin 3 ай бұрын
10:15 what do you think about using with statement in get_db() instead generator?
@hbbexxter4666
@hbbexxter4666 4 ай бұрын
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?
@AZ-mi2wj
@AZ-mi2wj 4 ай бұрын
I vote for the options to call C++ code for performance critical sections from python
@DrGreenGiant
@DrGreenGiant 4 ай бұрын
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.
@plato4ek
@plato4ek 4 ай бұрын
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.
@rogertunnell5764
@rogertunnell5764 4 ай бұрын
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.
@MicheleHjorleifsson
@MicheleHjorleifsson 4 ай бұрын
would love to see an authentication flow video, oauth2 can send junior devs into a cave lol
@lachhorsley5859
@lachhorsley5859 4 ай бұрын
Please do a video on auth flow!
@raulvanharmelen7209
@raulvanharmelen7209 4 ай бұрын
I would love to see an authentication flow for FastAPI tutorial !
@phen2841
@phen2841 4 ай бұрын
Please could you do a video on an OAuth 2.0 authentication flow for microservices :)
@_theashishbhatt
@_theashishbhatt 4 ай бұрын
Yup, please cover authentication next.
@pmshadow
@pmshadow Ай бұрын
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
@AndreaDalseno
@AndreaDalseno 4 ай бұрын
What about using a decorator to transform a database item into an item?
@M1911Original
@M1911Original 4 ай бұрын
More FastAPI videos please
@drewnix3469
@drewnix3469 4 ай бұрын
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 4 ай бұрын
For GCP there's fastapi cloud tasks package.
@Lexaire
@Lexaire 4 ай бұрын
FastAPI has BackgroundTasks built-in (check the docs). Otherwise Celery + Redis is a good combo.
@patrick_kabwe
@patrick_kabwe 4 ай бұрын
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 4 ай бұрын
He's not closing the connection only the session
@patrick_kabwe
@patrick_kabwe 4 ай бұрын
@@aflous thanks for the clarity
@djtoon8412
@djtoon8412 4 ай бұрын
Please do a video for authentication flow.
@princewillinyang5993
@princewillinyang5993 4 ай бұрын
OAuth2 flow in fastapi >>>>>>>>>>>>>
@DrGreenGiant
@DrGreenGiant 4 ай бұрын
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.
@ScorpusMugnes
@ScorpusMugnes 4 ай бұрын
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?
@larryrowe
@larryrowe 2 ай бұрын
🙂 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.
@matthiasbre
@matthiasbre 4 ай бұрын
Would it be possible to create a video of how to make an API on top of MongoDB using pymongo?
@udaym4204
@udaym4204 10 күн бұрын
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
@sany2k8
@sany2k8 4 ай бұрын
Add a new video for the OAuth with fastapi please
@syedazeemjaved
@syedazeemjaved 4 ай бұрын
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?
@vikaspoddar9456
@vikaspoddar9456 4 ай бұрын
Well this is the better way to do it
@MagniPL
@MagniPL 4 ай бұрын
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 4 ай бұрын
@@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!
@Stasyanz
@Stasyanz 3 ай бұрын
let's go Oauth!
@adeyemidamilola396
@adeyemidamilola396 4 ай бұрын
How do use session in fastapi
@Blackrobe
@Blackrobe 4 ай бұрын
I'm quite new to this, but is tip #2 basically MVC philosophy?
@muzafferckay2609
@muzafferckay2609 4 ай бұрын
İt is not. He talked about clean architecture partially
@eltreum1
@eltreum1 4 ай бұрын
Probably and a S.O.L.I.D thing, for single responsibility functions.
@aflous
@aflous 4 ай бұрын
It's layered architecture
@buchi8449
@buchi8449 4 ай бұрын
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 4 ай бұрын
When testing you can use app.dependency to override them with mocks and fakes. Abstract as much as you need, but not more.
@mohseneptune
@mohseneptune 4 ай бұрын
authentication flow pleaaaaaaaaaaaaaaaaaase :)
@BlindintheDark
@BlindintheDark 4 ай бұрын
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 4 ай бұрын
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?
@VictorGoba
@VictorGoba 4 ай бұрын
Do auth!
@guidodraheim7123
@guidodraheim7123 4 ай бұрын
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.
@aldobladimirrodriguezgalle7094
@aldobladimirrodriguezgalle7094 3 ай бұрын
best decision I made was using their AI writing service.
@krzysztofkrol5374
@krzysztofkrol5374 4 ай бұрын
@mateusz.radzikowski to kot
@auroragb
@auroragb 4 ай бұрын
Biggest weakness of fastAPI is lack of stateful sessions. This means using it for anything more complicated than crud is difficult.
@vlntsolo
@vlntsolo 4 ай бұрын
What about Starlette's Session Middleware? Didn't use it yet, but isn't statefull?
@auroragb
@auroragb 4 ай бұрын
@@vlntsolo that's the point, it should be part of fastAPI. Stateful API is a common API scenario, but lack of support means Dev needs to find other solutions and those may not be well maintained and supported. Also, once done, documentation becomes more complicated as different API often use different documentation. Making maintenance difficult and complicated
@Lexaire
@Lexaire 4 ай бұрын
FastAPI does support WebSockets which are long-lived, stateful sessions. See the docs for examples.
@miriamsaucedo7439
@miriamsaucedo7439 3 ай бұрын
painless writing!
@jeffrey5602
@jeffrey5602 3 ай бұрын
havnt watched in a while because of those toxic ai hype videos. Feels like the quality degraded a lot and just made to pump out a sponsored video. tip 1 & 2 basically useless. Anyone who would write a single file complex api should probably not be allowed to do so in the first place. Tip 3 is sponsorship placement. Tip 4 also useless, auth is not a "tip", its a neccessity for a produciton api. How can this be a 27 minute video, like for real?
Refactoring Conway's Game of Life | ArjanCodes Code Roast
31:49
ArjanCodes
Рет қаралды 28 М.
Requests vs HTTPX vs Aiohttp | Which One to Pick?
15:11
ArjanCodes
Рет қаралды 33 М.
where is the ball to play this?😳⚽
00:13
LOL
Рет қаралды 14 МЛН
Кәріс тіріма өзі ?  | Synyptas 3 | 8 серия
24:47
kak budto
Рет қаралды 1,7 МЛН
ОДИН ДОМА #shorts
00:34
Паша Осадчий
Рет қаралды 6 МЛН
Build an AI app with FastAPI and Docker - Coding Tutorial with Tips
35:18
GraphQL vs REST: What's The Difference And When To Use Which?
26:57
Best Practice to Make HTTP Request in FastAPI Application
3:02
Code Collider
Рет қаралды 2,6 М.
How to Use FastAPI: A Detailed Python Tutorial
20:38
ArjanCodes
Рет қаралды 204 М.
8 Python Coding Tips - From The Google Python Style Guide
17:12
ArjanCodes
Рет қаралды 152 М.
15 Python Libraries You Should Know About
14:54
ArjanCodes
Рет қаралды 352 М.
Logging in FastAPI Apps / Writing a FastAPI Middleware
31:01
Better Stack
Рет қаралды 12 М.
Good APIs Vs Bad APIs: 7 Tips for API Design
5:48
ByteByteGo
Рет қаралды 194 М.
5 Good Python Habits
17:35
Indently
Рет қаралды 318 М.
where is the ball to play this?😳⚽
00:13
LOL
Рет қаралды 14 МЛН