Skip to main content

A simple IOC / Dependency injection micro framework for Python.

Project description

Injecty

A simple IOC / Dependency injection micro framework for Python.

What Problem does this try and solve?

Suppose you are tasked with implementing a library which does some task, the specification for which is...

  • Long and complicated,
  • Possibly unknown.
  • May even have contradictory methods depending on the context

For the purpose of your library, you only need to implement part of the specification, but you want to leave it open ended so other libraries / programs can extend what you have done to fit their needs.

This is what injecty is for!

Installation

pip install injecty

Example

Take the task of processing lists containing hashes representing 2D shapes and calculate the area of each:

[
  {"type": "Circle", radius: 2.0},
  {"type": "Square", length: 3},
  ...
]

You create a python library for this task - let's call it shape_area_calculator.

You may start by defining an abstract base class with a method for calculating area

Your main method for parsing the shapes may look like this

Next, you might define implementations for circle and square

With injecty, your code for a parser may look like this.

  • Get all implementations of shape
  • Find the one where the name matches the type from the input
  • Initialize the implementation

Injecty finds implementations using config modules. These are any top level module with a name matching injecty_config_* (e.g.: injecty_config_shapes.py). Each config module must have:

  • A configure method, which is used to register / deregister impls with a context.
  • A priority - this determines the order of processing, with higher numbers processed after lower ones, so they can
  • override / deregister impls if required

So in this example, the author of a program could add a dependency on this library and define their own processors for any other shape (e.g.: Rectangle) by defining their class and creating a config module for it (e.g.: injecty_config_rectangle.py)

Ordering of Implementations

Often - the ordering of implementations is important. Taking the shape example above - suppose the input data did not contain an explicit type attribute. In that case, the program would have to examine the other attributes to determine if a type is suitable. It is considered to be a circle if the input has a radius. If the input has a length, it is a square. If the input has both a length and a height, it is a rectangle.

In order to make sure that we don't confuse a rectangle for a square, we would need to make sure the rectangle check is done BEFORE the square check. Remember, the original program has no knowledge of rectangles. So we accomplish this using implementation ordering.

You can pass a sort_key into any of the injecty get_impl methods. If no explicit sort_key is given, Injecty examines the base class to see if there is an integer priority attribute, and sorts implementations in descending order. So in this case, simply by giving Rectangle a higher priority than Square, we would ensure that processing occurs correctly.

Release Procedure

status

The typical process here is:

  • Create a PR with changes. Merge these to main (The Quality workflows make sure that your PR meets the styling, linting, and code coverage standards).
  • New releases created in github are automatically uploaded to pypi

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

injecty-0.0.7.tar.gz (4.0 kB view details)

Uploaded Source

Built Distribution

injecty-0.0.7-py3-none-any.whl (4.4 kB view details)

Uploaded Python 3

File details

Details for the file injecty-0.0.7.tar.gz.

File metadata

  • Download URL: injecty-0.0.7.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.12.7 Linux/6.5.0-1025-azure

File hashes

Hashes for injecty-0.0.7.tar.gz
Algorithm Hash digest
SHA256 cc6a4ac56509bb5cc55bbdf752223d2b523c10cb75819931cca0425e89b4bf8c
MD5 9fb9d07f32f7d384c3ad8e564f09f07e
BLAKE2b-256 b2af5f317d03b50767617a6aab7f47f47b4d655a0ed12bb2ecd29beee1a7cac2

See more details on using hashes here.

File details

Details for the file injecty-0.0.7-py3-none-any.whl.

File metadata

  • Download URL: injecty-0.0.7-py3-none-any.whl
  • Upload date:
  • Size: 4.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.12.7 Linux/6.5.0-1025-azure

File hashes

Hashes for injecty-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 3220a3e6eee457d9199a96a1d3e1ca5715249c144cdb5e4d837155afb72a2621
MD5 0813941ea3b793b5538b8bd1e3764605
BLAKE2b-256 bf9092d5b17de34528a6a4d3fa8d845e624e5752a6d7bf5a98378bfbed51bd4f

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