File: __init__.py

package info (click to toggle)
python-tiny-proxy 0.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 212 kB
  • sloc: python: 1,154; makefile: 3
file content (27 lines) | stat: -rw-r--r-- 646 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from ._errors import ProxyError
from ._stream import SocketStream
from ._tunnel import create_tunnel

from ._proxy.abc import AbstractProxy
from ._proxy.socks5 import Socks5Proxy
from ._proxy.socks4 import Socks4Proxy
from ._proxy.http import HttpProxy

from ._handlers.http import HttpProxyHandler
from ._handlers.socks4 import Socks4ProxyHandler
from ._handlers.socks5 import Socks5ProxyHandler

__version__ = '0.2.1'

__all__ = (
    'ProxyError',
    'SocketStream',
    'create_tunnel',
    'AbstractProxy',
    'Socks5Proxy',
    'Socks4Proxy',
    'HttpProxy',
    'HttpProxyHandler',
    'Socks4ProxyHandler',
    'Socks5ProxyHandler',
)