Fast and easy dependency injection framework.
Project description
Basic usage
Register an injectable
Note: If the class needs dependencies, these will be resolved when the instance is retrieved.
If you wish to inject a singleton, use singleton
decorator.
from injection import singleton
@singleton
class ServiceA:
""" class implementation """
If you wish to inject a new instance each time, use injectable
decorator.
from injection import injectable
@injectable
class ServiceB:
""" class implementation """
If you have a constant (such as a global variable) and wish to register it as an injectable, use set_constant
function.
from injection import set_constant
class ServiceC:
""" class implementation """
service_c = ServiceC()
set_constant(service_c)
Or here is the decorator constant
which is equivalent:
Unlike
@singleton
, dependencies will not be resolved.
from injection import constant
@constant
class ServiceC:
""" class implementation """
Inject an instance
To inject one or several instances, use inject
decorator.
Don't forget to annotate type of parameter to inject.
from injection import inject
@inject
def some_function(service_a: ServiceA):
""" function implementation """
If inject
decorates a class, it will be applied to the __init__
method.
Especially useful for dataclasses:
Note: Doesn't work with Pydantic
BaseModel
because the signature of the__init__
method doesn't contain the dependencies.
from dataclasses import dataclass
from injection import inject
@inject
@dataclass
class SomeDataClass:
service_a: ServiceA = ...
Get an instance
Example with get_instance
function:
from injection import get_instance
service_a = get_instance(ServiceA)
Example with get_lazy_instance
function:
from injection import get_lazy_instance
lazy_service_a = get_lazy_instance(ServiceA)
# ...
service_a = ~lazy_service_a
Inheritance
In the case of inheritance, you can use the decorator parameter on
to link the injection to one or several other
classes.
Warning: if the child class is in another file, make sure that file is imported before injection.
See load_package
function.
Example with one class:
class AbstractService(ABC):
...
@injectable(on=AbstractService)
class ConcreteService(AbstractService):
...
Example with several classes:
class AbstractService(ABC):
...
class ConcreteService(AbstractService):
...
@injectable(on=(AbstractService, ConcreteService))
class ConcreteServiceOverload(ConcreteService):
...
If a class is registered in a package, and you want to override it, there is the mode
parameter:
@injectable
class InaccessibleService:
...
# ...
@injectable(on=InaccessibleService, mode="override")
class ServiceOverload(InaccessibleService):
...
Recipes
A recipe is a function that tells the injector how to construct the instance to be injected. It is important to specify the return type annotation when defining the recipe.
from injection import injectable
@injectable
def service_d_recipe() -> ServiceD:
""" recipe implementation """
Working with type aliases
from injection import injectable, set_constant
type APIKey = str
set_constant("<secret_api_key>", APIKey, alias=True)
@injectable
class Client:
def __init__(self, api_key: APIKey):
...
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 python_injection-0.9.7.tar.gz
.
File metadata
- Download URL: python_injection-0.9.7.tar.gz
- Upload date:
- Size: 13.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.4 Linux/6.5.0-1023-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a426430655f08df4d1510b69e3d4744deaa744e28fec596dfbb7298e31c1a074 |
|
MD5 | 2ba0268fd5cef35a6f235f901e30fcc5 |
|
BLAKE2b-256 | 1e06a8a11c0e7dfb7b6417a9096da5c50b2bd74f85d29e81aa379eb4fd0e91c0 |
File details
Details for the file python_injection-0.9.7-py3-none-any.whl
.
File metadata
- Download URL: python_injection-0.9.7-py3-none-any.whl
- Upload date:
- Size: 16.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.4 Linux/6.5.0-1023-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c31eed9c813f37be623ae8d9031afb518b45f7a401385cf464111e22a1ad4a06 |
|
MD5 | 86fa8ee17c95c3f405e4e1f9d1484ed3 |
|
BLAKE2b-256 | abe8c75e459ea77362714928aa53b9d2b8189b3f568fdaa804716a935e4542ef |