Pre-release
This release is a pre-release and may not be stable for production use.
A simple Python CDI ( Code Dependency Injection) Library.
See the code of conduct.
Install
Install stable pycdi
pip install pycdi
Install latest pycdi
pip install git+https://github.com/ettoreleandrotognoli/python-cdi
Usage
Python2 & Python3
You can see more examples in the examples folder (examples/common).
import logging
from logging import Logger
from pycdi import Inject, Singleton, Producer
from pycdi.shortcuts import call
@Producer(str, _context='app_name')
def get_app_name():
return 'PyCDI'
@Singleton(produce_type=Logger)
@Inject(app_name=str, _context='app_name')
def get_logger(app_name):
return logging.getLogger(app_name)
@Inject(name=(str, 'app_name'), logger=Logger)
def main(name, logger):
logger.info('I\'m starting...')
print('Hello World!!!\nI\'m a example of %s' % name)
logger.debug('I\'m finishing...')
call(main)
Python 3
With Python 3 it is possible to define the types of injection with Python type hints.
You can see more examples in the examples folder( examples/py3/ ).
import logging
from logging import Logger
from pycdi import Inject, Singleton, Producer
from pycdi.shortcuts import call
@Producer(_context='app_name')
def get_app_name() -> str:
return 'PyCDI'
@Singleton()
@Inject(logger_name='app_name')
def get_logger(logger_name: str) -> Logger:
return logging.getLogger(logger_name)
@Inject(name='app_name')
def main(name: str, logger: Logger):
logger.info('I\'m starting...')
print('Hello World!!!\nI\'m an example of %s' % name)
logger.debug('I\'m finishing...')
call(main)
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pycdi-0.1.dev1669730582.tar.gz.
File metadata
- Download URL: pycdi-0.1.dev1669730582.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e821e220e9a65069bd8fb4cf7ffa1fc3a9370df9eb8e42112445a5f641cf3c4c
|
|
| MD5 |
4ea8219ffed50a9aa096459fc576a46a
|
|
| BLAKE2b-256 |
a4a6deac72a05596ff6646a5ea69851c347a832af9ebf6934af469552c49df78
|