Skip to main content

Python Dependency Inversion made simple so you can focus on creating amazing code.

Project description

Bevy

Bevy makes using Dependency Injection a breeze so that you can focus on creating amazing code.

Installation

pip install bevy

Documentation

Dependency Injection

Put simply, Dependency Injection is a design pattern where the objects that your class depends on are instantiated outside of the class. Those dependencies are then injected into your class when it is instantiated. This promotes loosely coupled code where your class doesn’t require direct knowledge of what classes it depends on or how to create them. Instead your class declares what class interface it expects and an outside framework handles the work of creating the class instances with the correct interface.

Interfaces

Python doesn’t have an actual interface implementation like many other languages. Class inheritance, however, can be used in a very similar way since subclasses will likely have the same fundamental interface as their base class.

Why Do I Care?

Dependency Injection and its reliance on abstract interfaces makes your code easier to maintain:

  • Changes can be made without needing to alter implementation details in unrelated code, so long as the interface isn’t modified in a substantial way.
  • Tests can provide mock implementations of dependencies without needing to jump through hoops to inject them. They can provide the mock to the context and Bevy will make sure it is used where appropriate.

How It Works

Bevy is an object oriented dependency injection framework. Similar to Pydantic, it relies on Python 3's class annotations, using them to determine what dependencies a class has.

Example

from bevy.injection import AutoInject, detect_dependencies
@detect_dependencies
class Example(AutoInject):
    dependency: Dependency

Each dependency when instantiated is added to a context repository for reuse. This allows many classes to share the same instance of each dependency. This is handy for sharing things like database connections, config files, or authenticated API sessions.

Bevy Constructors

To instantiate classes and have Bevy inject their dependencies it is necessary to bind them to a bevy.injection.Context. This will give a callable that will build instances that are bound to the context.

Example

import bevy.injection
context = bevy.injection.Context()
builder = context.bind(Example)
example = builder()  # An instance of Example will be created

Configuring Dependencies

When the Context encounters a dependency that is not in its repository it will attempt to create the dependency. The approach is very naive, it will just call the dependency with no arguments. If it succeeds it will be added to the repository for later use and injected into the class.

This behavior can be changed by passing an instantiated dependency to Context.add. Example

context.add(Dependency("foobar"))

Getting Instances

You can get an instance of a class by using Context.get or Context.get_or_create. get_or_create will naively create an instance of the requested class if it is not found. Example

inst = context.get(Dependency)

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Bevy-1.3.6.tar.gz (10.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

Bevy-1.3.6-py3-none-any.whl (14.5 kB view details)

Uploaded Python 3

File details

Details for the file Bevy-1.3.6.tar.gz.

File metadata

  • Download URL: Bevy-1.3.6.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.10.4 Linux/5.13.0-1025-azure

File hashes

Hashes for Bevy-1.3.6.tar.gz
Algorithm Hash digest
SHA256 e1122b3a7ce8a9cd1c3a601b1aeec9b1201b4954dfc3acc851777617b69df7df
MD5 bbeadd5b9d3fc02530c059ce7565371d
BLAKE2b-256 8c1af13770a8a73f33c56a1a3063b13974856f525130a9f31cd0906bf52734f5

See more details on using hashes here.

File details

Details for the file Bevy-1.3.6-py3-none-any.whl.

File metadata

  • Download URL: Bevy-1.3.6-py3-none-any.whl
  • Upload date:
  • Size: 14.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.10.4 Linux/5.13.0-1025-azure

File hashes

Hashes for Bevy-1.3.6-py3-none-any.whl
Algorithm Hash digest
SHA256 f1fcfabe83796bd469f2c5e711cb38b39d60400dd9003b90fd85e992314f2330
MD5 56f95c2b77636fc39c8e7bc2a12b897b
BLAKE2b-256 849595a1b35d11bda95907dafc49e44a9c56aee4835444667382adcc373d834f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page