PySocks icon indicating copy to clipboard operation
PySocks copied to clipboard

A SOCKS proxy client and wrapper for Python.

Results 60 PySocks issues
Sort by recently updated
recently updated
newest added

Hi, Thank you for this package. I'm upgrading my project from using version 1.6.8 to 1.7.0 but the changelog isn't very helpful since it stopped at 1.6.7. Is there any...

I'm using PySocks==1.6.8 in Python 3.6.4 ```Python socks.set_default_proxy(socks.SOCKS5, "127.0.0.1", 8888) socket.socket = socks.socksocket socket.setdefaulttimeout(timeout) ``` I need for connection to PostgreSQL (via asyncpg.create_pool) on port 5432 ignore proxy and go...

After I installed pysocks and started using it I cannot open the Tor Browser any more. When I run tor with python it works fine. When I open the Tor...

When a Brook(https://github.com/txthinking/brook) or Trojan(https://github.com/trojan-gfw/trojan) client is running in my local machine, it provides a SOCKS5 service for my apps. While my Chrome works perfectly, my program using PySocks doesn't...

PySocks fails when used with `asyncore`: - asyncore uses `connect_ex` instead of `connect` which is not implemented by PySocks and silently calls `socket.connect_ex` - `socksocket.connect` fails with non blocking sockets....

Sometimes I use socks5 with username only. proxy = "socks5://test:@127.0.0.1:1080" Please replace socks.py line 510: > if username and password: to > if username: and insert after line 535: >...

From the main README.md, it is not clear if IPv6 is supported (or to what degree it is supported). Clarification of this would help users of the library know what...

planned

**Code:** ``` sock = socks.socksocket sock.set_proxy(socks.SOCKS5, addr="103.216.82.37", port=6667) ``` **Error:** ``` Traceback (most recent call last): File "C:/.../botConnection.py", line 16, in sock.set_proxy(socks.SOCKS5, addr="103.216.82.37", port=6667) File "C:\...\AppData\Local\Programs\Python\Python37-32\lib\site-packages\socks.py", line 372, in set_proxy...

Hi, I was try use pysocks in shadowsocks-server (run socket server in TCP and UDP), but I was noticed that the UDP is not get client requests information. It use...

bug

I have the following I am building: ``` opener = urllib2.build_opener( SocksiPyHandler(socks.PROXY_TYPE_SOCKS5, socks_hostname, socks_port, True, socks_username, socks_password)) request = urllib2.Request(url) response = opener.open(request).read() ``` But how do I pass my:...

bug