24 lines
564 B
Python
24 lines
564 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.
|
|
|
|
Compatibility code for using Proxy.py across various versions of Python.
|
|
|
|
.. spelling::
|
|
|
|
compat
|
|
py
|
|
"""
|
|
|
|
import platform
|
|
|
|
|
|
SYS_PLATFORM = platform.system()
|
|
IS_WINDOWS = SYS_PLATFORM == 'Windows'
|