Skip to main content

Fast and easy dependency injection framework.

Project description

Basic usage

Create 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 = set_constant(ServiceC())

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 """

Project details


Release history Release notifications | RSS feed

This version

0.8.4

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python_injection-0.8.4.tar.gz (11.5 kB view details)

Uploaded Source

Built Distribution

python_injection-0.8.4-py3-none-any.whl (14.7 kB view details)

Uploaded Python 3

File details

Details for the file python_injection-0.8.4.tar.gz.

File metadata

  • Download URL: python_injection-0.8.4.tar.gz
  • Upload date:
  • Size: 11.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.10.14 Linux/6.5.0-1021-azure

File hashes

Hashes for python_injection-0.8.4.tar.gz
Algorithm Hash digest
SHA256 6442a461c43d7f9263c23937c3c01d62bd899e8910950ef375a9e88fbd910bd8
MD5 a606426a5a2003ec43195bc43caf4b85
BLAKE2b-256 ee1cc252462f9f5ff1180da0e38b0d3b0483b729608ecab328276f9bccbd4ece

See more details on using hashes here.

File details

Details for the file python_injection-0.8.4-py3-none-any.whl.

File metadata

  • Download URL: python_injection-0.8.4-py3-none-any.whl
  • Upload date:
  • Size: 14.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.10.14 Linux/6.5.0-1021-azure

File hashes

Hashes for python_injection-0.8.4-py3-none-any.whl
Algorithm Hash digest
SHA256 ff16942ccfe004a865cb49fc4581d0d84cc9b81319889903b11d337680ba6168
MD5 3b6dbc29ed3ffdcb9fd7488afc7ee668
BLAKE2b-256 0002a1b7ab7f6c3ec3fb97abbdb8827edd5b4d8c91bc0e02c5a0ad26c40e9ab0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page