Metadata-Version: 2.1
Name: yapic.di
Version: 2.0.11
Summary: Very fast Dependency Injection library
Home-page: https://github.com/zozzz/yapic.di
Author: Zoltán Vetési
Author-email: vetesi.zoltan@gmail.com
License: BSD
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: Unix
Classifier: Programming Language :: C++
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Python: >=3.7
License-File: LICENSE
Provides-Extra: benchmark
Requires-Dist: pytest ; extra == 'benchmark'
Requires-Dist: pytest-benchmark ; extra == 'benchmark'

Dependency Injector
===================

.. image:: https://img.shields.io/appveyor/ci/zozzz/yapic-di/release.svg?label=windows&style=flat-square
      :alt: AppVeyor
      :target: https://ci.appveyor.com/project/zozzz/yapic-di

.. image:: https://img.shields.io/circleci/project/github/zozzz/yapic.di/release.svg?label=linux&style=flat-square
      :alt: CircleCI
      :target: https://circleci.com/gh/zozzz/yapic.di

.. image:: https://img.shields.io/travis/com/zozzz/yapic.di/release.svg?label=sdist&style=flat-square
      :alt: Travis
      :target: https://travis-ci.com/zozzz/yapic.di

.. image:: https://img.shields.io/pypi/dm/yapic.di.svg?style=flat-square
      :alt: PyPI - Downloads
      :target: https://pypi.org/project/yapic.di/


Very fast `Dependency Injection <https://en.wikipedia.org/wiki/Dependency_injection>`_
for Python, which is highly uses typing features. Sometimes faster
then similar call in Python.

Requirements
------------

- Only works with Python 3.7 or greater
- c++ 11 comaptible compiler. *(only if u want to build from source)*

  Wheels provided for windows x86/x64 and linux x86/x64

Usage
~~~~~

.. code-block:: python

   from typing import Generic, TypeVar
   from yapic.di import *


   T = TypeVar("T")

   class Car(Generic[T]):
      engine: T

      def __init__(self, engine: T):
         self.engine = engine

   # simplified Car class
   class Car(Generic[T]):
      engine: Inject[T]

   class Gasoline:
      pass

   class Diesel:
      pass

   class Electronic:
      pass

   class DieselCar(Car[Diesel]):
      pass

   ELECTRONIC_CAR = Token("ELECTRONIC_CAR")

   injector = Injector()
   injector.provide(Gasoline)
   injector.provide(Diesel)
   injector.provide(Electronic)
   injector.provide(DieselCar)
   injector.provide(ELECTRONIC_CAR, Car[Electronic])

   diesel = injector[DieselCar]
   assert isinstance(diesel, DieselCar)
   assert isinstance(diesel.engine, Diesel)

   electronic = injector[ELECTRONIC_CAR]
   assert isinstance(electronic, Car)
   assert isinstance(electronic.engine, Electronic)

   def drive_diesel(car: DieselCar):
      assert isinstance(car, DieselCar)
      assert isinstance(car.engine, Diesel)

   injector.exec(drive_diesel)

   # you can set constant values, like a dict
   MEANING_OF_LIFE = Token("MEANING_OF_LIFE")
   injector[MEANING_OF_LIFE] = 42
   assert injector[MEANING_OF_LIFE] == 42

   def question(q: MEANING_OF_LIFE):
      assert q == 42

   injector.exec(question)

   # cached injectable
   life_q = Injectable(question)

   # this is same as with injector.exec(question), but injectable is precached
   life_q(injector)


Keyword Only Arguments
----------------------

.. code-block:: python

   class Config(dict):
      def __init__(self):
         super().__init__(some_key=42)

   def get_kwarg(config: Config, *, name, type):
         if name == "some_key":
            return config[name]
         else:
            raise NoKwOnly()

    def fn(*, some_key: str):
        assert some_key == 42

   injector = Injector()
   injector.provide(Config)
   injector.provide(fn, provide=[KwOnly(get_kwarg)])


For more info see `Python Stub file <https://github.com/zozzz/yapic.di/blob/master/src/_di.pyi>`_ or `test files <https://github.com/zozzz/yapic.di/tree/master/tests>`_


Release Process
~~~~~~~~~~~~~~~

- change ``VERSION`` in ``setup.py``
- ``git add setup.py``
- ``git commit -m "chore(bump): VERSION"``
- ``git checkout release``
- ``git merge master``
- ``git tag -a VERSION -m "chore(bump): VERSION"``
- ``git push && git push --tags``
- ``git checkout master``
- ``git merge release``
