Skip to main content

Very simple dependency injection

Project description

build workflow License: MIT uv-managed

INJECTINATOR

Very Simple Dependency Injection.

Here's the function, just paste it where you need it:

def injectinator(func):
    def wrapper(*args, **kwargs):
        replacements = dict(zip(
            func.__code__.co_varnames[:func.__code__.co_argcount],
            list(([None] * func.__code__.co_argcount) + list(func.__defaults__ or []))[-func.__code__.co_argcount:]
        ))
        for position, default in enumerate(replacements.keys()):
            if position >= len(args):
                if default not in kwargs and isinstance(replacements[default], type):
                    kwargs[default] = replacements[default]()
        return func(*args, **kwargs)
    return wrapper

Need some kind of dependency injection but don't want a massive library adding to your dependency graph that introduces potential supply chain attacks? Well, this is what you need.

This also doesn't need any imports to work. Just paste the script above here's an example of how to use it:

class BaseClass:
    # You don't really need this base class, but for the sake of method contracts it's here 
    def print(self):
        ...

class InjectedClass(BaseClass):
    # This will be the default injected class if nothing is provided in a call
    def print(self):
        print("Default class")


class SuppliedClass(BaseClass):
    # This will be a supplied class
    def print(self):
        print("Supplied class")


@injectinator
def test(injected=InjectedClass):
    # Can have as many parameters as you like, note that the class is a reference to the class, not an instance
    injected.print()

# Two calls, first creates an instance of InjectedClass and passes it to the function, second supplies an instance of SuppliedClass
test()
test(SuppliedClass())

Wait I hear you say: Can't we just create an instance of the class in the function specification like this?

def test(injected=InjectedClass()):
    ...

You can, but the instantiation is performed when Python creates the definition of the function, not at the time you run the function. Which means that the object it creates is re-used every time you call the function, which is not desirable.

Also, if you need to debug this, you might need to change it to:

import functools

def injectinator(func):
    @functools.wraps(func)
    def wrapper(*args, **kwargs):
        ...

This will retain the call stack and debugging easier. But as the script is below, you can add it without imports.

Can I Just Install This As A Dependency?

For sure, this is available on pypi:

pip install injectinator

And then in your code

from injectinator import injectinator

@injectinator
def myfun(...):
    ...

Notes on this script

  • It relies on dunder methods on func itself, so these could change in the future. They've all been clumped up together for this reason to make it obvious when it fails because the Python foundation changed their usage of dunders
  • There is no parameter support on the injected class, it could be adjusted to support them
  • All the config for the injection is in the function specification rather than the decorator
  • I have not timed this. It could be wildly inefficient. There's an iteration enumerating over the function parameter list so its O(n)
  • This script does work with arbitrary length argument specifications like adding *args to the end
  • Although it is DI in 11 lines, I've no interest in code golf
  • There is a typed version of this in typed.py, just in case your type checked is getting a little nervous around it.

Operation

  1. Figure out what the default values are for each argument, dump the results in replacements
  2. Skip supplied positional values
  3. For arguments with a default value that do not have a keyword supplied value and the default is a class type, create an instance and add to the keyword argument dictionary
  4. Invoke the wrapped function/method with positional and keyword values

Project details


Download files

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

Source Distribution

injectinator-0.4.0.tar.gz (4.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

injectinator-0.4.0-py3-none-any.whl (4.3 kB view details)

Uploaded Python 3

File details

Details for the file injectinator-0.4.0.tar.gz.

File metadata

  • Download URL: injectinator-0.4.0.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for injectinator-0.4.0.tar.gz
Algorithm Hash digest
SHA256 3a56e16d05c9ac3abb87214f2e466c8821caafcd23ac0b44721fadbbfb53adc6
MD5 0f2c07eacc3f2a5300d3ecc1c36fe0e8
BLAKE2b-256 2a72907466d9c16e73c4bd79f029235b627dd120b3548c9cb21c8b2951cce44b

See more details on using hashes here.

File details

Details for the file injectinator-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: injectinator-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 4.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for injectinator-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 81ed2992a5e4afdcfaad9bbcf0b857a0bf8fccdc5f264c13ec9a6d293c8d2374
MD5 5259aca13c813e0c8e609e2137517351
BLAKE2b-256 3b8589c1321b43ff5b2109599dba51742788847364d7b2412cd0c3f9554a4be8

See more details on using hashes here.

Supported by

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