2015-11-22 00:59:36 +03:00
|
|
|
"""`Factory` providers example."""
|
2015-06-05 11:29:36 +03:00
|
|
|
|
2016-06-08 16:39:53 +03:00
|
|
|
import collections
|
2016-06-06 11:54:05 +03:00
|
|
|
import dependency_injector.providers as providers
|
2015-06-05 11:29:36 +03:00
|
|
|
|
|
|
|
|
2016-06-08 16:39:53 +03:00
|
|
|
User = collections.namedtuple('User', [])
|
2015-06-05 11:29:36 +03:00
|
|
|
|
|
|
|
# Factory provider creates new instance of specified class on every call.
|
2015-11-22 00:59:36 +03:00
|
|
|
users_factory = providers.Factory(User)
|
2015-06-05 11:29:36 +03:00
|
|
|
|
2015-06-10 12:00:43 +03:00
|
|
|
# Creating several User objects:
|
2016-06-08 16:39:53 +03:00
|
|
|
user1 = users_factory() # Same as: user1 = User()
|
|
|
|
user2 = users_factory() # Same as: user2 = User()
|