pferd/PFERD/__init__.py
Joscha dfddc93039 Move norbert from aiohttp to requests
Also fix streaming (when downloading) in the other classes.
2019-04-25 19:15:36 +00:00

13 lines
242 B
Python

from .ffm import *
from .ilias import *
from .norbert import *
from .utils import *
__all__ = []
__all__ += ffm.__all__
__all__ += ilias.__all__
__all__ += norbert.__all__
__all__ += utils.__all__
LOG_FORMAT = "[%(levelname)s] %(message)s"