Update README.md

This commit is contained in:
Roman 2015-03-17 01:33:53 +02:00
parent bec0a2b80d
commit ccf3e01a46

View File

@ -70,3 +70,13 @@ assert a1 is not a2
assert b1 is not b2
assert a1.db is a2.db is b1.db is b2.db is Catalog.database()
```
More examples:
- [Callable provider.](examples/callable_provider.py)
- [Config provider.](examples/config_provider.py)
- [Delegate.](examples/delegate.py)
- [External dependency.](examples/external_dependency.py)
- [Scoped provider.](examples/scoped_provider.py)
- [Overrides.](examples/overrides.py)
- [Usage.](examples/usage.py)