File: _types.py

package info (click to toggle)
python-socks 2.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 544 kB
  • sloc: python: 5,191; sh: 8; makefile: 3
file content (7 lines) | stat: -rw-r--r-- 90 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
from enum import Enum


class ProxyType(Enum):
    SOCKS4 = 1
    SOCKS5 = 2
    HTTP = 3