A dependency injection framework for Python
Project description
import zuice
class BlogPostLister(zuice.Base):
_fetcher = zuice.dependency(BlogPostFetcher)
def all(self):
return ", ".join(post.name for post in self._fetcher.fetch_all())
bindings = zuice.Bindings()
bindings.bind(BlogPostFetcher).to_instance(blog_post_fetcher)
injector = zuice.Injector(bindings)
assert injector.get(BlogPostFetcher) is blog_post_fetcher
injector.get(BlogPostLister) # constructs BlogPostLister using the bound instance of BlogPostFetcher
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
zuice-0.3.0-pre2.tar.gz
(9.6 kB
view details)
File details
Details for the file zuice-0.3.0-pre2.tar.gz.
File metadata
- Download URL: zuice-0.3.0-pre2.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0bd692de6f515ca945ee17b510eee7d358a2bfaae67fbc5d817c5c2c03a0977
|
|
| MD5 |
7cf95d804d4b9a9d575637ca3cf45947
|
|
| BLAKE2b-256 |
fe790216c682140d9c39c88c0cf204bfa68beb2f8799259718bf155812014664
|