25 lines
744 B
Python
Executable File
25 lines
744 B
Python
Executable File
# -*- coding: utf-8 -*-
|
|
"""
|
|
proxy.py
|
|
~~~~~~~~
|
|
⚡⚡⚡ Fast, Lightweight, Programmable Proxy Server in a single Python file.
|
|
|
|
:copyright: (c) 2013-present by Abhinav Singh and contributors.
|
|
:license: BSD, see LICENSE for more details.
|
|
"""
|
|
from .proxy import entry_point
|
|
from .proxy import main, start
|
|
from .proxy import TestCase
|
|
|
|
__all__ = [
|
|
# PyPi package entry_point. See
|
|
# https://github.com/abhinavsingh/proxy.py#from-command-line-when-installed-using-pip
|
|
'entry_point',
|
|
# Embed proxy.py. See
|
|
# https://github.com/abhinavsingh/proxy.py#embed-proxypy
|
|
'main', 'start',
|
|
# Unit testing with proxy.py. See
|
|
# https://github.com/abhinavsingh/proxy.py#unit-testing-with-proxypy
|
|
'TestCase'
|
|
]
|