Skip to main content

Simple DI Library

Project description

# haps [![PyPI](https://badge.fury.io/py/haps.svg)](https://pypi.python.org/pypi/haps/) [![Build Status](https://travis-ci.org/ekiro/haps.svg?branch=master)](https://travis-ci.org/ekiro/haps)
Haps [χaps] is a simple DI library, with IoC container included. It is written in pure Python with no external dependencies.

Look how easy it is to use:

```python
from haps import Container as IoC, Inject, inject

# import interfaces
from my_application.core import IDatabase, IUserService


class MyApp:
db: IDatabase = Inject() # dependency as a property

@inject # or passed to the constructor
def __init__(self, user_service: IUserService) -> None:
self.user_service = user_service

IoC.autodiscover('my_application') # find all interfaces and implementations

if __name__ == '__main__':
app = MyApp()
assert isinstance(app.db, IDatabase)
assert isinstance(app.user_service, IUserService)
```

# Installation

pip install haps

# Documentation

See https://haps.readthedocs.io/en/latest/

# Usage examples

See https://github.com/ekiro/haps/tree/master/samples

# Testing

Install `requirements.test.txt` and run `py.test` in main directory.

# Changelog

## 1.0.5 (2018-07-12)
@egg decorator can be used without function invocation

## 1.0.4 (2018-06-30)
Add support for python 3.7
Fix autodiscover sample

## 1.0.0 (2018-06-15)

First stable release



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

haps-1.1.0.tar.gz (10.0 kB view hashes)

Uploaded Source

Built Distribution

haps-1.1.0-py3-none-any.whl (17.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