Skip to main content

A thoughtful dependency injection framework 💉

Project description

https://img.shields.io/badge/license-public%20domain-ff69b4.svg https://img.shields.io/badge/pypi-v0.3.0-blue.svg

Outline

  1. Overview

  2. Installation

  3. Usage

  4. License

Overview

Nurse is a dependency injection framework with a small API that uses type annotations to manage dependencies in your codebase.

Installation

Nurse is a Python3-only module that you can install via Poetry

poetry add nurse

It can also be installed with pip

pip3 install nurse

Usage

Nurse stores the available dependencies into a service catalog, that needs to be filled-in generally at the startup of your application.

import nurse

# A user defined class that will be used accross your application
class Player:

    def name(self, name) -> str:
        return "John Doe"

# Now, add it to nurse service catalog in order to use it later in your application
nurse.serve(Player())

Nurse allows you to abstract dependencies through an optional name parameter allowing you to refer your class instance through its interface.

import nurse

# A user defined class that will be used accross your application
class Player(User):

    def name(self) -> str:
        return "John Doe"

# Now, add it to nurse service catalog in order to use it later in your application
nurse.serve(Player(), name=User)

Once you filled-in the service catalog with your different component, your can declare them as dependencies to any of your class.

import nurse

@nurse.inject
class Game:
    player: Player

    def response(self) -> str:
        return f"Hello {self.player.name()} !"


Game = Game()
game.response()
# Hello John Doe !

License

Nurse is released into the Public Domain. 🎉

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

nurse-0.3.0.tar.gz (2.8 kB view hashes)

Uploaded Source

Built Distribution

nurse-0.3.0-py3-none-any.whl (4.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