Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

tundish / aiohttp   python

Repository URL to install this package:

/ aiohttp / __init__.py

# This relies on each of the submodules having an __all__ variable.

__version__ = '0.17.4'


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__'))