Skip to main content

The Python dependency injector from outer space.

Project description

https://raw.githubusercontent.com/lainproliant/xeno/master/pachimari.jpg

Xeno: The Python dependency injector from outer space.

Xeno is a simple Python dependency injection framework. Use it when you need to manage complex inter-object dependencies in a clean way. For the merits of dependency injection and IOC, see https://en.wikipedia.org/wiki/Dependency_injection.

Xeno should feel pretty familiar to users of Google Guice in Java, as it is somewhat similar, although it is less focused on type names and more on named resources and parameter injection.

Installation

Installation is simple. With python3-pip, do the following:

$ sudo pip install -e .

Or, to install the latest version available on PyPI:

$ sudo pip install xeno

Usage

To use Xeno as a dependency injection framework, you need to create a xeno.Injector and provide it with modules. These modules are regular Python objects with methods marked with the @xeno.provider annotation. This annotation tells the Injector that this method provides a named resource, the same name as the method marked with @provider. These methods should either take no parameters (other than self), or take named parameters which refer to other resources by name, i.e. the providers can also be injected with other resources in order to build a dependency chain.

Once you have an Injector full of resources, you can use it to inject instances, functions, or methods with resources.

To create a new object instance by injecting resources into its constructor, use Injector.create(clazz), where clazz is the class which you would like to instantiate. The constructor of this class is called, and all named parameters in the constructor are treated as resource references. Once the object is instantiated, any methods marked with @inject are invoked with named resources provided.

Resources can be injected into normal functions, bound methods, or existing object instances via Injector.inject(obj). If the parameter is an object instance, it is scanned for methods marked with @inject and these methods are invoked with named resources provided.

Example

In this simple example, we inject an output stream into an object.

import sys
from xeno import *

class OutputStreamModule:
   @provide
   def output_stream(self):
      return sys.stdout

class VersionWriter:
   def __init__(self, output_stream):
      self.output_stream = output_stream

   def write_version(self):
      print('The python version is %s' % sys.version_info,
            file=self.output_stream)

injector = Injector(OutputStreamModule())
writer = injector.create(VersionWriter)
writer.write_version()

Checkout test.py in the git repo for more usage examples.

Change Log

Version 1.4: August 30th, 2016

  • Added cycle detection.

Version 1.3: August 29th, 2016

  • Have the injector offer itself as a named resource named ‘injector’.

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

xeno-1.4.0.tar.gz (6.5 kB view details)

Uploaded Source

File details

Details for the file xeno-1.4.0.tar.gz.

File metadata

  • Download URL: xeno-1.4.0.tar.gz
  • Upload date:
  • Size: 6.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for xeno-1.4.0.tar.gz
Algorithm Hash digest
SHA256 f78d32cd86ca0cf677eff1b21c7636ae9c035115bda2915f266a33ee0ddc8599
MD5 cc8263117c6efdb4b5955449de99b45c
BLAKE2b-256 554dd3b1502942e66ce3b252c36c281df67e267eec1eb8d7e78da2c664046750

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