You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Enso-Bot/venv/Lib/site-packages/websockets/__init__.py

18 lines
383 B
Python

4 years ago
# This relies on each of the submodules having an __all__ variable.
from .client import *
from .exceptions import *
from .protocol import *
from .server import *
from .uri import *
from .version import version as __version__ # noqa
4 years ago
__all__ = (
client.__all__ +
exceptions.__all__ +
protocol.__all__ +
server.__all__ +
uri.__all__
)