1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
# This relies on each of the submodules having an __all__ variable.
__version__ = '0.17.2'
from . import hdrs # noqa
from .protocol import * # noqa
from .connector import * # noqa
from .client import * # noqa
from .errors import * # noqa
from .helpers import * # noqa
from .parsers import * # noqa
from .streams import * # noqa
from .multidict import * # noqa
from .multipart import * # noqa
from .websocket_client import * # noqa
__all__ = (client.__all__ +
errors.__all__ +
helpers.__all__ +
parsers.__all__ +
protocol.__all__ +
connector.__all__ +
streams.__all__ +
multidict.__all__ +
multipart.__all__ +
websocket_client.__all__ +
('hdrs', '__version__'))
|