PythonスクリプトですばらしいRequestsライブラリを使用しています。
import requests
r = requests.get("some-site.com")
print r.text
ソックスプロキシを使用したいのですが。ただし、Requestsは現在HTTPプロキシのみをサポートしています。
どうやってやるの?
回答:
現代的な方法:
pip install -U requests[socks]
その後
import requests
resp = requests.get('http://go.to',
proxies=dict(http='socks5://user:pass@host:port',
https='socks5://user:pass@host:port'))
bash -c "pip install -U requests[socks]"
代わりに使用する必要がありzsh: no matches found: requests[socks]
ます。そうしないと、zshが文句を言います。
pip install 'requests[socks]'
十分であろう
pip install -U requests[socks]
is
requests
、のバージョンをSOCKS(> 2.10.0)をサポートするバージョンに手動でアップグレードするには、pip :(pip install requests==2.18.4
これを書いている時点では2.18.4)を実行しますが、チェック:pypi。最新バージョンのpython.org/pypi/requests(このページでは、最新の安定版が何であるかを上部ヘッダーに表示する必要があります)。
socks
モジュール名がと競合しているqBittorrent
ので、エラーメッセージを解決するために、それぞれ削除/移動~/.local/share/data/qBittorrent/nova3/socks.py
して削除する必要があります。socks.pyc
module 'socks' has no attribute 'create_connection'
bad magic number in 'socks':
誰かがこれらの古い答えをすべて試しても、まだ次のような問題が発生している場合。
requests.exceptions.ConnectionError:
SOCKSHTTPConnectionPool(host='myhost', port=80):
Max retries exceeded with url: /my/path
(Caused by NewConnectionError('<requests.packages.urllib3.contrib.socks.SOCKSConnection object at 0x106812bd0>:
Failed to establish a new connection:
[Errno 8] nodename nor servname provided, or not known',))
これは、デフォルトで、接続のローカル側でrequests
DNSクエリを解決するように構成されていることが原因である可能性があります。
プロキシURLをからsocks5://proxyhost:1234
に変更してみてくださいsocks5h://proxyhost:1234
。余分なものに注意してくださいh
(ホスト名解決を表します)。
PySocksパッケージモジュールのデフォルトはリモート解決を行うことであり、リクエストが統合をこれほどあいまいに発散させた理由はわかりませんが、ここにあります。
socks5h
アプローチは、以前にやらなければならないと心配していたモンキーパッチの回避策よりもはるかにクリーンです。
socks5h://
プロキシに関するPythonドキュメントの場所が見つかりませんでした。間違った場所を探していたに違いありません。お奨めはSOが大好きです。
pysocksをインストールする必要があります。私のバージョンは1.0で、コードは機能します。
import socket
import socks
import requests
ip='localhost' # change your proxy's ip
port = 0000 # change your proxy's port
socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, ip, port)
socket.socket = socks.socksocket
url = u'http://ajax.googleapis.com/ajax/services/search/images?v=1.0&q=inurl%E8%A2%8B'
print(requests.get(url).text)
Pythonrequests
がSOCKS5
プルリクエストとマージされるとすぐに、proxies
辞書を使用するのと同じくらい簡単になります。
#proxy
# SOCKS5 proxy for HTTP/HTTPS
proxies = {
'http' : "socks5://myproxy:9191",
'https' : "socks5://myproxy:9191"
}
#headers
headers = {
}
url='http://icanhazip.com/'
res = requests.get(url, headers=headers, proxies=proxies)
SOCKSプロキシサポートを参照してください
組み込みモジュールrequest
がないためrequesocks
にGoogleAppEngineのように、使用できないときに準備が整うのを待つことができない場合の別のオプションは、上記のPySockspwd
を使用することです。
socks.py
レポからファイルをして、ルートフォルダにコピーを置きます。import socks
してimport socket
この時点urllib2
で、次の例で-を使用する前に、ソケットを構成してバインドします。
import urllib2
import socket
import socks
socks.set_default_proxy(socks.SOCKS5, "myprivateproxy.net",port=9050)
socket.socket = socks.socksocket
res=urllib2.urlopen(url).read()
# SOCKS5 proxy for HTTP/HTTPS
proxiesDict = {
'http' : "socks5://1.2.3.4:1080",
'https' : "socks5://1.2.3.4:1080"
}
# SOCKS4 proxy for HTTP/HTTPS
proxiesDict = {
'http' : "socks4://1.2.3.4:1080",
'https' : "socks4://1.2.3.4:1080"
}
# HTTP proxy for HTTP/HTTPS
proxiesDict = {
'http' : "1.2.3.4:1080",
'https' : "1.2.3.4:1080"
}
requesocks
?
次のように、pysocksとモンキーパッチを適用したcreate_connectionをurllib3にインストールしました。
import socks
import socket
socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS4, "127.0.0.1", 1080)
def create_connection(address, timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
source_address=None, socket_options=None):
"""Connect to *address* and return the socket object.
Convenience function. Connect to *address* (a 2-tuple ``(host,
port)``) and return the socket object. Passing the optional
*timeout* parameter will set the timeout on the socket instance
before attempting to connect. If no *timeout* is supplied, the
global default timeout setting returned by :func:`getdefaulttimeout`
is used. If *source_address* is set it must be a tuple of (host, port)
for the socket to bind as a source address before making the connection.
An host of '' or port 0 tells the OS to use the default.
"""
host, port = address
if host.startswith('['):
host = host.strip('[]')
err = None
for res in socket.getaddrinfo(host, port, 0, socket.SOCK_STREAM):
af, socktype, proto, canonname, sa = res
sock = None
try:
sock = socks.socksocket(af, socktype, proto)
# If provided, set socket level options before connecting.
# This is the only addition urllib3 makes to this function.
urllib3.util.connection._set_socket_options(sock, socket_options)
if timeout is not socket._GLOBAL_DEFAULT_TIMEOUT:
sock.settimeout(timeout)
if source_address:
sock.bind(source_address)
sock.connect(sa)
return sock
except socket.error as e:
err = e
if sock is not None:
sock.close()
sock = None
if err is not None:
raise err
raise socket.error("getaddrinfo returns an empty list")
# monkeypatch
urllib3.util.connection.create_connection = create_connection
多分これは助けることができます: