Python dependency injection library for your projects or for dependency injection in Django!!
Project description
Injector API
The Injector API is a lightweight dependency injection library designed to simplify the management of dependencies in Python projects.
Prerequisites
- Python 3.7 or higher
- A proper environment (virtualenv or conda recommended)
Installation
To install the Injector API, simply run the following pip command:
pip install injector-api
Usage
Initial Configuration
First, call configure in your main file app configuration to set up the Injector API:
import injector_api
injector_api.configure(module_application="your_directory_name_here")
or
Configuration injectorConfig.json
After installation, configure the library to suit your project by creating an injectorConfig.json at the project's root. This file should define the following variable:
{
"MODULE_APPLICATION": "your_directory_name_here"
}
Replace your_directory_name_here with the name of the directory where your module.py resides.
Defining and Registering Dependencies in module.py
The module.py file plays a pivotal role in the Injector API library structure. Here, you define and register the dependencies you wish to inject into your application.
Dependency Registration
To register dependencies, first import the container from the library. Then, use the register method. This method takes the interface you wish to implement and its concrete implementation as arguments.
from injector_api.container import container # absolute routes, DO NOT USE RELATIVE ROUTES from aplicacion.src.interfaces import IExampleService from aplicacion.src.interfaces import ExampleServiceImpl1 from aplicacion.src.interfaces import ExampleServiceImpl2 from aplicacion.src.interfaces import InterfaceWithoutOtherServiceYour interfaces and classes here
container.register(IExampleService, ExampleServiceImpl1, override=True) container.register(IExampleService, ExampleServiceImpl2, override=True) container.register(InterfaceWithoutOtherService, ImplInterface, override=True)
or
from injector_api.container import container
# absolute routes, DO NOT USE RELATIVE ROUTES
from aplicacion.src.interfaces import IExampleService
# Your interfaces and classes here
container.register(IExampleService, implementation_name='ExampleServiceImpl1', override=True)
container.register(IExampleService, implementation_name='ExampleServiceImpl2', override=True)
container.register(InterfaceWithoutOtherService, implementation_name='ImplInterface')
Override Explanation
The override parameter is optional and its default value is False. If set to True, it allows a new registration to replace an existing one for the specified interface. This is useful when you want to change the implementation for an interface without removing the previous registration manually.
Injecting into Functions and Methods
With dependencies registered in module.py, you can utilize the @inject decorator to inject these dependencies into functions or methods.
from injector_api.dynamically import inject""" Use @inject() only when specifying the type of implementation. For correct usage, employ @inject() with the format {interface:0}, where 0 corresponds to the first registered injection. Without specifying the type of implementation, simply use @inject """
@inject({IExampleService: 0}) def some_function(service: IExampleService): return service.do_something()
@inject() def some_function_two(service: InterfaceWithoutOtherService): return service.do_something()
In the example above, the IExampleService dependency will be injected into some_function, granting access to its methods and properties.
Location of module.py
Ensure the module.py file is located in the directory you've specified in injectorConfig.json. This file will be automatically read by the library during execution to load and manage dependencies.
Usage with Django
In Django, call configure in your app configuration:
application/apps.py
from django.apps import AppConfig import injector_api class ApplicationConfig(AppConfig): default_auto_field = 'django.db.models.BigAutoField' name = 'application' # Ensure to use the correct name of your app here def ready(self): """ It should be intuited that the new_src must be in the same apps.py directory, with new_src being a dywan """ injector_api.configure(module_application="new_src")application/init.py
default_app_config = 'application.apps.ApplicationConfig'
Use the common library as if it were your own project
If you're integrating the Injector API within a Django project, you have the option to use the ScopeMiddleware to manage scoped dependencies. This middleware ensures that dependencies with a "scoped" lifecycle are correctly managed within the context of a web request.
However, do note that using scoped dependencies requires your Django application to run in a server mode where each request is handled by a separate thread or process (e.g., using gunicorn with threaded workers). Using scoped dependencies in a single-threaded server (like Django's default development server) might lead to unexpected behaviors.
To use the middleware, add it to your Django project's middleware list:
MIDDLEWARE = [
...
'path_to_your_library.ScopeMiddleware',
...
]
Security Recommendations
While the Injector API simplifies dependency management, there are potential security risks when using dynamic loading. We recommend the following precautions:
- Always validate dynamically loaded information or modules.
- Avoid loading modules from locations that can be manipulated by untrusted users.
- Use a secure, isolated environment for your application.
- Keep the library and all its dependencies up to date.
- If you're using the optional
ScopeMiddlewarein Django, ensure your server is configured correctly for scoped dependencies.
Contribute
Contributions are welcome! Please submit pull requests or open issues on our GitHub repository.
License
This library is licensed under the MIT License. See the LICENSE file for details.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file injector_api-0.2.0.tar.gz.
File metadata
- Download URL: injector_api-0.2.0.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b55b67f241e3bb387c39cc0aa69d6987b34a98f61c9a5edf3bdd35f425598e6
|
|
| MD5 |
8fbd6f6882e699b885f413bfba7e12e3
|
|
| BLAKE2b-256 |
97185b8d04bb114ae3daf32657b16f27ef4fe51dc53b76c76a55d7ecbf9fb063
|
File details
Details for the file injector_api-0.2.0-py3-none-any.whl.
File metadata
- Download URL: injector_api-0.2.0-py3-none-any.whl
- Upload date:
- Size: 12.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
259a2fa582411356f6ca9add78b3d7ce3651ba12749805e70c511f8536917b57
|
|
| MD5 |
e0bc3e58bb299e502f74690e1a1686d4
|
|
| BLAKE2b-256 |
f636c4acf96fee26594d6615b886f706e81f3cbf8d688f0e0b78f1bf8597ef10
|