Update README.rst

This commit is contained in:
Roman Mogylatov 2020-08-10 21:43:30 -04:00 committed by GitHub
parent 6152e5390c
commit 408ba1e66c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,8 +61,13 @@ It stands on two principles:
How does it different from the other frameworks?
- The framework does NOT do any autowiring / autoresolving of the dependencies. You need to specify everything explicitly. Because *"Explicit is better than implicit" (PEP20)*.
- Your application code does NOT know about the framework and does NOT depend on it. No ``@inject`` decorators, annotations, patching or any other magic tricks.
- **No autowiring.** The framework does NOT do any autowiring / autoresolving of the dependencies. You need to specify everything explicitly. Because *"Explicit is better than implicit" (PEP20)*.
- **Your code does not know about the Dependency Injector** .Your application does NOT depend on the framework. No ``@inject`` decorators, annotations, patching or any other magic tricks.
``Dependency Injector`` follows a simple contract with you:
- You tell the framework how to build you code
- The framework does it for you
``Dependency Injector`` is a simple tool for the powerful concept.