Pyjection is a lightweight python dependency injection library
Project description
Pyjection is a lightweight python dependency injection library
Basic dependency injection
The most import class is DependencyInjector which lets us register classes and retrieve instances.
from pyjection.dependency_injector import DependencyInjector
class OuterClass(object):
def __init__(self, inner_class):
self.inner_class = inner_class
class InnerClass(object):
def __init__(self):
self.foo = "bar"
container = DependencyInjector()
container.register(InnerClass)
container.register(OuterClass)
outer = container.get("outer_class")
print(outer.inner_class.foo) # Will print "bar"
Class bindings
Implicit class bindings
When no id is specified in the register method Pyjection creates implicit bindings for classes. The implicit bindings assume your code follows PEP8 conventions: your classes are named in CamelCase, and your args are named in lower_with_underscores. Pinject transforms class names to injectable arg names by lowercasing words and connecting them with underscores.
Class name |
Arg name |
---|---|
Foo |
foo |
FooBar |
foo_bar |
Explicit class bindings
It is also possible to manually set the id of a class when during its registration by specifying it as a second arguments.
container.register(FooClass, "inner_class")
With the example above, FooClass will later be injected to arguments named inner_class
Instance retrieval
To retrieve an instance of a class from the dependency injector 2 options are available in the get method:
Specify the lower_with_underscores name of the class as a string
Give the class as parameter
from pyjection.dependency_injector import DependencyInjector
class FooClass(object):
pass
container = DependencyInjector()
container.register(FooClass)
container.get("foo_class")
# Same as
container.get(FooClass)
Singleton injection
The dependency injector lets us register a singleton. To register a singleton the method register_singleton may be used. It takes the same arguments as register.
from pyjection.dependency_injector import DependencyInjector
class SingletonClass(object):
pass
container = DependencyInjector()
container.register_singleton(SingletonClass)
# Or we could specify an id
container.register_singleton(SingletonClass, "other_id")
class_1 = container.get("other_id")
class_2 = container.get("other_id")
print(class_1 is class_2) # True
Explicit argument specification
Simple argument specification
Sometimes the argument we need to inject is not an instance of a class. The register and register_singleton methods return a service object that lets us specify what we want to bind to a given argument by using the add_argument method.
from pyjection.dependency_injector import DependencyInjector
class FooClass(object):
def __init__(self, foo):
self.foo = foo
container = DependencyInjector()
service = container.register(FooClass)
service.add_argument("foo", "bar")
foo_class = container.get("foo_class")
print(foo_class.foo) # Will print bar
Reference argument specification
A service argument can also reference another dependency injector service. It is useful when we want to inject a class not matching the argument name.
from pyjection.dependency_injector import DependencyInjector
from pyjection.reference import Reference
class OuterClass(object):
def __init__(self, inner_class):
self.inner_class = inner_class
class FooClass(object):
def __init__(self):
self.foo = "bar"
container = DependencyInjector()
container.register(FooClass)
container.register(OuterClass).add_argument("inner_class", Reference('foo_class'))
instance = container.get(OuterClass)
print(instance.inner_class.foo) # Will print bar
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyjection-1.0.0.tar.gz
.
File metadata
- Download URL: pyjection-1.0.0.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c938945dc0edafab406d1290a6994e81b3a5226bf4cec0e548c80584a1924875 |
|
MD5 | 4cc9230f674629e4005bf268104e42eb |
|
BLAKE2b-256 | 752b5348f61003e88b5cdd5ab124c38ae3390f7084effa624417803ffdb783ed |
File details
Details for the file pyjection-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: pyjection-1.0.0-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db5ee6f31ba0ebc22db3433337c239f4d4e734a2f376ee4b40738ffe303f211f |
|
MD5 | cfe8214337698a0993127c7c9f8294d2 |
|
BLAKE2b-256 | 322329ebe73342c5354c17db56b7ea99ab6671cdc8361658de6888a95d5ec281 |