from aio_tiny_healthcheck.checker import Checker
File ".../lib/python3.7/site-packages/aio_tiny_healthcheck/__init__.py", line 5, in <module>
from .http_server import HttpServer
File ".../lib/python3.7/site-packages/aio_tiny_healthcheck/http_server.py", line 1, in <module>
from aiohttp import web
In my source code, I have only installed this package and this error shows up.
It seems in this package it doesn't specify the aiohttp in relation dependencies of this package.
To solved this error, I suggested that add aiohttp to this package dependencies.
@LittleYenMin, author shouldn't do it, cause aiohttp is not a dependency for this app. Everybody chose server app on hist taste and flavour. Sanic for example :)
ERROR
In my source code, I have only installed this package and this error shows up. It seems in this package it doesn't specify the
aiohttp
in relation dependencies of this package. To solved this error, I suggested that addaiohttp
to this package dependencies.