Prefer to use the `Annotated` version if possible.
///
```Python hl_lines="17"
{!> ../../docs_src/dependencies/tutorial006.py!}
```
////
These dependencies will be executed/solved the same way as normal dependencies. But their value (if they return any) won't be passed to your *path operation function*.
These dependencies will be executed/solved the same way as normal dependencies. But their value (if they return any) won't be passed to your *path operation function*.
@ -72,69 +44,13 @@ You can use the same dependency *functions* you use normally.
They can declare request requirements (like headers) or other sub-dependencies:
They can declare request requirements (like headers) or other sub-dependencies:
Prefer to use the `Annotated` version if possible.
///
```Python hl_lines="8 13"
{!> ../../docs_src/dependencies/tutorial006.py!}
```
////
### Return values
### Return values
@ -142,35 +58,7 @@ And they can return values or not, the values won't be used.
So, you can reuse a normal dependency (that returns a value) you already use somewhere else, and even though the value won't be used, the dependency will be executed:
So, you can reuse a normal dependency (that returns a value) you already use somewhere else, and even though the value won't be used, the dependency will be executed: