Skip to main content

Fast and easy dependency injection framework.

Project description

Injection

CI PyPI Black

Fast and easy dependency injection framework.

Quick start

⚠️ Requires Python 3.10 or higher

pip install python-injection

How to use

Create an injectable

If you wish to inject a singleton, use unique decorator.

from injection import unique

@unique
class MyClass:
    """ class implementation """

If you wish to inject a new instance each time, use new decorator.

from injection import new

@new
class MyClass:
    """ 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 my_function(instance: MyClass):
    """ function implementation """

Inheritance

In the case of inheritance, you can use the decorator parameters reference or references 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.

reference parameter example:

from injection import unique

class A:
    ...

@unique(reference=A)
class B(A):
    ...

references parameter example:

from injection import unique

class A:
    ...

class B(A):
    ...

@unique(references=(A, B))
class C(B):
    ...

Recipes

A recipe is a function that tells the injector how to construct the instance to be injected. It is important to specify the reference class(es) when defining the recipe.

from injection import unique

@unique(reference=MyClass)
def my_recipe() -> MyClass:
    """ recipe implementation """

Utils

load_package

Useful for put in memory injectables hidden deep within a package. Example:

package
├── sub_package
│   ├── __init__.py
│   └── module2.py
│       └── class Injectable2
├── __init__.py
└── module1.py
    └── class Injectable1

To load Injectable1 and Injectable2 into memory you can do the following:

from injection.utils import load_package

import package

load_package(package)

Project details


Release history Release notifications | RSS feed

This version

0.2.5

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.2.5.tar.gz (4.0 kB view details)

Uploaded Source

Built Distribution

python_injection-0.2.5-py3-none-any.whl (5.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: python_injection-0.2.5.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.13 Linux/6.2.0-1012-azure

File hashes

Hashes for python_injection-0.2.5.tar.gz
Algorithm Hash digest
SHA256 356fb51f23f1ddff12e9f0733db32f775ca0cd57fb3cea23a0507156155ed8d5
MD5 5b775d0eba48e9354deaf996b0bee765
BLAKE2b-256 4254f68eff734672125865c582375dcb032bff05604497421b7cd16a369d9d6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: python_injection-0.2.5-py3-none-any.whl
  • Upload date:
  • Size: 5.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.10.13 Linux/6.2.0-1012-azure

File hashes

Hashes for python_injection-0.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 86631203622b8c9fc47956516f66c9f8fa70a9e854eef8ac901033ab993a1a83
MD5 5abda07a87d97371f933bfbec55e9952
BLAKE2b-256 a10886afd71207c50284eb7071fe429f0e7e9e4ee4d08ef9610e54824855d9b0

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