mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-06-15 11:03:26 +03:00
Update README.md
This commit is contained in:
parent
27cf7acc35
commit
b1800bfc08
28
README.md
28
README.md
|
@ -1,5 +1,4 @@
|
||||||
Objects
|
# Objects
|
||||||
=======
|
|
||||||
|
|
||||||
Dependency management tool for Python projects.
|
Dependency management tool for Python projects.
|
||||||
|
|
||||||
|
@ -11,8 +10,7 @@ Dependency management tool for Python projects.
|
||||||
[](https://pypi.python.org/pypi/Objects/)
|
[](https://pypi.python.org/pypi/Objects/)
|
||||||
[](https://pypi.python.org/pypi/Objects/)
|
[](https://pypi.python.org/pypi/Objects/)
|
||||||
|
|
||||||
Introduction
|
## Introduction
|
||||||
------------
|
|
||||||
|
|
||||||
Python ecosystem consists of a big amount of various classes, functions and
|
Python ecosystem consists of a big amount of various classes, functions and
|
||||||
objects that could be used for applications development. Each of them has its
|
objects that could be used for applications development. Each of them has its
|
||||||
|
@ -28,16 +26,24 @@ also increased extremely fast and became hard to maintain.
|
||||||
and their dependencies in formal, pretty way. Main idea of `Objects` is to
|
and their dependencies in formal, pretty way. Main idea of `Objects` is to
|
||||||
keep dependencies under control.
|
keep dependencies under control.
|
||||||
|
|
||||||
Entities
|
## Entities
|
||||||
--------
|
|
||||||
|
|
||||||
- Providers are strategies of accessing objects.
|
Current section describes main `Objects` entities and their interaction.
|
||||||
- Injections are additional instructions, that are used for determining
|
|
||||||
|
### Providers
|
||||||
|
|
||||||
|
Providers are strategies of accessing objects.
|
||||||
|
|
||||||
|
### Injections
|
||||||
|
|
||||||
|
Injections are additional instructions, that are used for determining
|
||||||
dependencies of objects.
|
dependencies of objects.
|
||||||
- Catalogs are named set of providers.
|
|
||||||
|
|
||||||
Example
|
### Catalogs
|
||||||
-------
|
|
||||||
|
Catalogs are named set of providers.
|
||||||
|
|
||||||
|
## Example
|
||||||
|
|
||||||
```python
|
```python
|
||||||
"""Concept example of `Objects`."""
|
"""Concept example of `Objects`."""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user