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.2.1.tar.gz
(10.7 kB
view details)
File details
Details for the file zuice-0.2.1.tar.gz.
File metadata
- Download URL: zuice-0.2.1.tar.gz
- Upload date:
- Size: 10.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f35f7c244367d0baba9b768ba761bc0d3ccd789c2818394413bf06cae7adee1
|
|
| MD5 |
2af87bd91892fbd9c0205a961d58031d
|
|
| BLAKE2b-256 |
12300c9eb21a28cc852ce5ea1974090b1c6b32973912fee321d60c48f22a23ad
|