Dependency Injection Container Library
Project description
Injecta
Dependency Injection (DI) Container written in Python. Main component of the Pyfony Framework.
Installation
$ pip install injecta
Simple container initialization
(The following steps are covered in the ContainerInitializerTest)
To start using Injecta, create a simple config.yaml
file to define your DI services:
parameters:
api:
endpoint: 'https://api.mycompany.com'
services:
mycompany.api.ApiClient:
arguments:
- '@mycompany.api.Authenticator'
mycompany.api.Authenticator:
class: mycompany.authenticator.RestAuthenticator
arguments:
- '%api.endpoint%'
- '%env(API_TOKEN)%'
Then, initialize the container:
from injecta.container.ContainerBuilder import ContainerBuilder
from injecta.config.YamlConfigReader import YamlConfigReader
from injecta.container.ContainerInitializer import ContainerInitializer
config = YamlConfigReader().read('/path/to/config.yaml')
containerBuild = ContainerBuilder().build(config)
container = ContainerInitializer().init(containerBuild)
Use container.get()
to finally retrieve your service:
from mycompany.api.ApiClient import ApiClient
apiClient = container.get('mycompany.api.ApiClient') # type: ApiClient
apiClient.get('/foo/bar')
Advanced examples
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
injecta-0.9.0a2.tar.gz
(27.7 kB
view hashes)
Built Distribution
injecta-0.9.0a2-py3-none-any.whl
(57.2 kB
view hashes)
Close
Hashes for injecta-0.9.0a2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e8df4bf37d45ae19fdc41a259518d50bf235a88f2f97de110a34788525190a6 |
|
MD5 | 54884f76f33134da34336c0c2a1383b4 |
|
BLAKE2b-256 | 2886a0fb375f390271e7347b67ca53bbf1a30ecc41ee90bc199bc7b5518beb2e |