mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 17:47:02 +03:00
Fix typos in aiohttp tutorial
This commit is contained in:
parent
299a7bca89
commit
45e6b943f6
|
@ -122,7 +122,7 @@ Now it's time to install the project requirements. We will use next packages:
|
||||||
- ``aiohttp-devtools`` - the helper library that will provide a development server with live
|
- ``aiohttp-devtools`` - the helper library that will provide a development server with live
|
||||||
reloading
|
reloading
|
||||||
- ``pyyaml`` - the YAML files parsing library, used for the reading of the configuration files
|
- ``pyyaml`` - the YAML files parsing library, used for the reading of the configuration files
|
||||||
- ``pytest-aiohttp``- the helper library for the testing of the ``aiohttp`` application
|
- ``pytest-aiohttp`` - the helper library for the testing of the ``aiohttp`` application
|
||||||
- ``pytest-cov`` - the helper library for measuring the test coverage
|
- ``pytest-cov`` - the helper library for measuring the test coverage
|
||||||
|
|
||||||
Put next lines into the ``requirements.txt`` file:
|
Put next lines into the ``requirements.txt`` file:
|
||||||
|
@ -223,7 +223,7 @@ Put next into the ``application.py``:
|
||||||
|
|
||||||
|
|
||||||
def create_app():
|
def create_app():
|
||||||
"""Create and return Flask application."""
|
"""Create and return aiohttp application."""
|
||||||
container = ApplicationContainer()
|
container = ApplicationContainer()
|
||||||
|
|
||||||
app: web.Application = container.app()
|
app: web.Application = container.app()
|
||||||
|
@ -426,7 +426,7 @@ Edit ``application.py``:
|
||||||
|
|
||||||
|
|
||||||
def create_app():
|
def create_app():
|
||||||
"""Create and return Flask application."""
|
"""Create and return aiohttp application."""
|
||||||
container = ApplicationContainer()
|
container = ApplicationContainer()
|
||||||
container.config.from_yaml('config.yml')
|
container.config.from_yaml('config.yml')
|
||||||
container.config.giphy.api_key.from_env('GIPHY_API_KEY')
|
container.config.giphy.api_key.from_env('GIPHY_API_KEY')
|
||||||
|
|
|
@ -6,7 +6,7 @@ from .containers import ApplicationContainer
|
||||||
|
|
||||||
|
|
||||||
def create_app():
|
def create_app():
|
||||||
"""Create and return Flask application."""
|
"""Create and return aiohttp application."""
|
||||||
container = ApplicationContainer()
|
container = ApplicationContainer()
|
||||||
container.config.from_yaml('config.yml')
|
container.config.from_yaml('config.yml')
|
||||||
container.config.giphy.api_key.from_env('GIPHY_API_KEY')
|
container.config.giphy.api_key.from_env('GIPHY_API_KEY')
|
||||||
|
|
Loading…
Reference in New Issue
Block a user