1"""
2__init__.py
3websocket - WebSocket client library for Python
4
5Copyright 2025 engn33r
6
7Licensed under the Apache License, Version 2.0 (the "License");
8you may not use this file except in compliance with the License.
9You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13Unless required by applicable law or agreed to in writing, software
14distributed under the License is distributed on an "AS IS" BASIS,
15WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16See the License for the specific language governing permissions and
17limitations under the License.
18"""
19
20from ._abnf import * # noqa: F401,F403
21from ._app import ( # noqa: F401
22 WebSocketApp as WebSocketApp,
23 set_reconnect as set_reconnect,
24)
25from ._core import * # noqa: F401,F403
26from ._exceptions import * # noqa: F401,F403
27from ._logging import * # noqa: F401,F403
28from ._socket import * # noqa: F401,F403
29
30__version__ = "1.9.0"