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.0a4.tar.gz
(28.2 kB
view hashes)
Built Distribution
injecta-0.9.0a4-py3-none-any.whl
(58.1 kB
view hashes)
Close
Hashes for injecta-0.9.0a4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f5b8109cd572a132b70cd5dece16fa8356fca1df8f25a960bc0f879b72445fa |
|
MD5 | dcf4ffd9a6b6332abf6c5ecd05fd3811 |
|
BLAKE2b-256 | 38e51b5560d1edcce9094d06ed0da0cf034b5408dbc810603c2a3cdfa9b0c052 |