Skip to main content

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 referance

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 |
|-------------------|-----------------------|
| http_client | HttpClient |
| httpClient | HttpClient |
| HttpClient | HttpClient |
| my_Weird_case | MyWeirdCase |
| client: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

pychkari-0.1.0.tar.gz (3.6 kB view hashes)

Uploaded Source

Built Distribution

pychkari-0.1.0-py3-none-any.whl (6.3 kB view hashes)

Uploaded Python 3

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