mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 17:47:02 +03:00
19 lines
435 B
ReStructuredText
19 lines
435 B
ReStructuredText
Static providers
|
|
----------------
|
|
|
|
Static providers are family of providers that return their values "as is".
|
|
There are four types of static providers:
|
|
|
|
- ``di.Class``
|
|
- ``di.Object``
|
|
- ``di.Function``
|
|
- ``di.Value``
|
|
|
|
All of them have the same behaviour, but usage of anyone is predicted by
|
|
readability and providing object's type.
|
|
|
|
Example:
|
|
|
|
.. literalinclude:: ../../examples/providers/static.py
|
|
:language: python
|