Is there a framework equivalent to Guice (http://code.google.com/p/google-guice) for Python?
|
|
|
I haven't used it, but the Spring Python framework is based on Spring and implements Inversion of Control. There also appears to be a Guice in Python project: snake-guice |
||||
|
|
|
Spring Python is an offshoot of the Java-based Spring Framework and Spring Security, targeted for Python. This project currently contains the following features:
|
||||
|
|
|
As an alternative to monkeypatching, I like DI. A nascent project such as http://code.google.com/p/snake-guice/ may fit the bill. Or see the blog post Dependency Injection in Python by Dennis Kempin (Aug '08). |
||||
|
|
|
Besides that: |
|||
|
|
|
I like this simple and neat framework. http://pypi.python.org/pypi/injector/
|
||||
|
|
|
If you just want to do dependency injection in Python, you don't need a framework. Have a look at Dependency Injection the Python Way. It's really quick and easy, and only c. 50 lines of code. |
|||
|
There is a somewhat Guicey python-inject project. It's quite active, and a LOT less code then Spring-python, but then again, I haven't found a reason to use it yet. |
||||
|
|
|
Here is a small example for a dependency injection container that does constructor injection based on the constructor argument names: http://code.activestate.com/recipes/576609-non-invasive-dependency-injection/ |
|||
|
|
|
If you prefer a really tiny solution there's a little function, it is just a dependency setter. https://github.com/liuggio/Ultra-Lightweight-Dependency-Injector-Python |
|||||
|
|
There's dyject (http://dyject.com), a lightweight framework for both Python 2 and Python 3 that uses the built-in ConfigParser |
|||
|
|