python-dependency-injector/docs/containers/dynamic.rst

26 lines
780 B
ReStructuredText
Raw Normal View History

Dynamic container
-----------------
2015-11-16 14:28:27 +03:00
.. currentmodule:: dependency_injector.containers
2015-11-26 14:39:42 +03:00
:py:class:`DynamicContainer` is a collection of the providers defined in the runtime.
2015-11-26 14:39:42 +03:00
You create the dynamic container instance and put the providers as attributes.
2015-11-26 14:39:42 +03:00
.. literalinclude:: ../../examples/containers/dynamic.py
2015-11-26 14:39:42 +03:00
:language: python
:lines: 3-
The dynamic container is good for the case when your application structure depends on the
configuration file or some other source that you can reach only after application is already
running (database, api, etc).
2015-11-26 14:39:42 +03:00
In this example we use the configuration to fill in the dynamic container with the providers:
2015-11-26 14:39:42 +03:00
.. literalinclude:: ../../examples/containers/dynamic_runtime_creation.py
2015-11-26 14:39:42 +03:00
:language: python
:lines: 3-
.. disqus::