File: __init__.py

package info (click to toggle)
python-aiohttp-proxy 0.1.1%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, trixie
  • size: 148 kB
  • sloc: python: 735; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 640 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- coding: utf-8 -*-
from .connector import ProxyConnector
from .errors import (
    SocksError, NoAcceptableAuthMethods, UnknownAuthMethod,
    LoginAuthenticationFailed, InvalidServerVersion, InvalidServerReply,
    SocksConnectionError
)
from .helpers import open_connection, create_connection
from .proto import ProxyType

__version__ = '0.1.1'

__all__ = ('ProxyConnector', 'ProxyType',
           'SocksError', 'NoAcceptableAuthMethods', 'UnknownAuthMethod',
           'LoginAuthenticationFailed', 'InvalidServerVersion',
           'InvalidServerReply', 'SocksConnectionError', 'open_connection',
           'create_connection')