python-dependency-injector/examples/miniapps/aiohttp/giphynavigator/application.py
2021-10-31 17:46:23 -04:00

24 lines
450 B
Python

"""Application module."""
from aiohttp import web
from .containers import Container
from . import handlers
def create_app() -> web.Application:
container = Container()
container.config.giphy.api_key.from_env("GIPHY_API_KEY")
app = web.Application()
app.container = container
app.add_routes([
web.get("/", handlers.index),
])
return app
if __name__ == "__main__":
app = create_app()
web.run_app(app)