mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 01:56:58 +03:00
24 lines
578 B
Python
24 lines
578 B
Python
"""Declarative catalog example."""
|
|
|
|
from dependency_injector import catalogs
|
|
from dependency_injector import providers
|
|
|
|
|
|
class Catalog(catalogs.DeclarativeCatalog):
|
|
"""Providers catalog."""
|
|
|
|
factory1 = providers.Factory(object)
|
|
""":type: providers.Provider -> object"""
|
|
|
|
factory2 = providers.Factory(object)
|
|
""":type: providers.Provider -> object"""
|
|
|
|
# Creating some objects:
|
|
object1 = Catalog.factory1()
|
|
object2 = Catalog.factory2()
|
|
|
|
# Making some asserts:
|
|
assert object1 is not object2
|
|
assert isinstance(object1, object)
|
|
assert isinstance(object2, object)
|