proxy.py/proxy/http/websocket/__init__.py

19 lines
521 B
Python

# -*- coding: utf-8 -*-
"""
proxy.py
~~~~~~~~
⚡⚡⚡ Fast, Lightweight, Pluggable, TLS interception capable proxy server focused on
Network monitoring, controls & Application development, testing, debugging.
:copyright: (c) 2013-present by Abhinav Singh and contributors.
:license: BSD, see LICENSE for more details.
"""
from .frame import WebsocketFrame, websocketOpcodes
from .client import WebsocketClient
__all__ = [
'websocketOpcodes',
'WebsocketFrame',
'WebsocketClient',
]