socks-hub 0.2.6

Convert http proxy or socks5 proxy to socks5 proxy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python3

from smoke_socks5 import smoke_udp_direct


def main() -> int:
    data = smoke_udp_direct()
    print(f"udp direct smoke ok: {data.decode('utf-8')}")
    return 0


if __name__ == "__main__":
    raise SystemExit(main())