A Very Simple Python Dependency Injector
Project description
Pychkari
A Very Simple Python Dependency Injector
Installation
Use pip!
pip install pychkari
Overview
Pychkari (pronounced peach kaa ree) is a simple dependency injector for Python. It is intended to be a no-fuss library that depends on as few packages as possible and just works.
This example should get us started!
# Class definitions for reference
class A:
def __init__(self,
depOne, # casing support
second_dep: "DepTwo", # annotations support
const_dep=3): # not a dependency
self.dep1 = depOne
self.dep2 = second_dep
self.const_d = const_dep
class DepOne:
def __init__(self):
self.timestamp = datetime.now()
class DepTwo:
def __init__(self):
self.timestamp = datetime.now()
class B:
def __init__(self, a, dep_one):
self.a = a
self.dep1 = dep_one
# registration
container = Container.instance()
container.register("MyAwesomeService", B) # explicitly named registration
container.register_class(A) # service name "A" implicit
container.register_class(DepOne) # service name "DepOne" implicit
container.register_class(DepTwo) # service name "DepTwo" implicit
# instantiation
service = container.get("MyAwesomeService") # creates instance of "B" with dependencies injected
Features
Lightweight
Pychkari is barely a few kilobytes. It doesn't have third party dependencies. Just drop it into your project and run with it.
Zero Commitment
Pychkari doesn't require you to change your code. As long as common Python conventions are followed, your existing code just works!
No fancy annotations, no decorations, no commitments. You're free to mix and match with any other framework.
This chart should tell you how dependencies are resolved:
Dependency | Resolved Service Name |
---|---|
underscore_case | UnderscoreCase |
camelCase | CamelCase |
PascalCase | PascalCase |
my_Weird_case | MyWeirdCase |
my_service:HttpClient | HttpClient |
Extensible
Well, sort of! If the conventions don't satisfy your complex naming schemes, you can always make the names explicit by annotating the dependencies.
For example, client:"MyService"
will inject and instance of MyService
in place of client
.
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
Built Distribution
File details
Details for the file pychkari-1.1.2.tar.gz
.
File metadata
- Download URL: pychkari-1.1.2.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.29.0 CPython/3.4.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2eef60f8d9aeec3133f907e7dcea9ed52302e2eedc236d8aaaca242ae1d17970 |
|
MD5 | 1a510b01b14321b9fe16d526711f7b1e |
|
BLAKE2b-256 | 88be99bf186c1d23086f82c2c6a899cd1d0cfb610b0e4b578beca36f9f7ae790 |
File details
Details for the file pychkari-1.1.2-py3-none-any.whl
.
File metadata
- Download URL: pychkari-1.1.2-py3-none-any.whl
- Upload date:
- Size: 17.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.29.0 CPython/3.4.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5550873246cc856d6fc27f07c6d252938d8c8d80223d91c16abd0561b2ef4e03 |
|
MD5 | 07d942a5627d2fb683dc8f4cce299ad4 |
|
BLAKE2b-256 | a8e879bbcc510adc6d0889e36fc63bea7a9fad6491cb5cbf8d6b2a70fd12576a |