diff --git a/websocket/_core.py b/websocket/_core.py index f63fc5c..eef7b26 100644 --- a/websocket/_core.py +++ b/websocket/_core.py @@ -30,19 +30,15 @@ if six.PY3: else: from base64 import encodestring as base64encode -import struct import threading # websocket modules -from ._exceptions import * from ._abnf import * from ._socket import * from ._utils import * -from ._url import * from ._logging import * from ._http import * from ._handshake import * -from ._ssl_compat import * """ websocket python client. diff --git a/websocket/_handshake.py b/websocket/_handshake.py index f795d89..67b16e4 100644 --- a/websocket/_handshake.py +++ b/websocket/_handshake.py @@ -26,14 +26,11 @@ if six.PY3: else: from base64 import encodestring as base64encode -import uuid import hashlib import hmac import os -import sys from ._logging import * -from ._url import * from ._socket import* from ._http import * from ._exceptions import *