Skip to main content

diay - a dependency injection library

Project description

# Diay - a dependency injection library

[![Build Status](https://travis-ci.org/anlutro/diay.py.svg?branch=master)](https://travis-ci.org/anlutro/diay.py)
[![Latest version on PyPI](https://img.shields.io/pypi/v/diay.svg?maxAge=2592000)](https://pypi.org/project/diay)
[![Licence](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)

Diay is a [dependency injection](https://en.wikipedia.org/wiki/Dependency_injection)/[inversion of control](https://en.wikipedia.org/wiki/Inversion_of_control) library for Python 3.5 and higher. It leverages the type hints introduced in 3.5 to allow you to easily call functions or construct classes that require specific types of objects to function.

As an extremely basic and somewhat contrived example - the value of the library doesn't really come into play until you have fairly deeply nested dependencies - let's say you want to render a jinja2 template using some data from an API.

```python
injector = diay.Injector()
injector.set_instance(SomeConfigClass, my_config_object)

@injector.provider
def make_jinja_environment() -> jinja2.Environment:
return jinja2.Environment()

@injector.provider
def make_api_client(config: SomeConfigClass) -> some.APIclient:
return some.APIclient(config.api_token)

def render(j2env: jinja2.Environment, apiclient: some.APIclient):
data = apiclient.get('/some/data')
template = j2env.get_template('some-template.html.j2', data=data)
return template.render()

html = injector.call(render)
```

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

diay-0.1.3.tar.gz (4.0 kB view details)

Uploaded Source

File details

Details for the file diay-0.1.3.tar.gz.

File metadata

  • Download URL: diay-0.1.3.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.1 CPython/3.5.3

File hashes

Hashes for diay-0.1.3.tar.gz
Algorithm Hash digest
SHA256 e1f739bb29e7c36d22071fed6843b8ccfc717a015e402bcaa42db2a51e044f4d
MD5 45a990d69512777e78c9917e2fc2ee4e
BLAKE2b-256 16703f0ef4762d9576bf7052d51cbbbb11e90b5c8fb5215bdb108d9d88405374

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