PythonでTor

Torサーバーの起動

前の記事をご参考に

Window + Chrome で Tor を使う
はじめに Twitterでエロ垢の運営を試みるも、何度もBANされ、挙句には新規登録もロクに出来ない有様になり、そろそろVPN系の勉強をしようと思い立つも、生来の怠け癖により先延ばしして、Torで間に合わせることにした。まあTorもVPN...

SOCKSプロキシーで通信するための準備

よくわからないですが

pip install pysocks

で出来ます。

参考サイト : Python’s requests “Missing dependencies for SOCKS support”……

設定

シェルで

set https_proxy=socks5://localhost:9050
set http_proxy=socks5://localhost:9050

または、Pythonのコード内で

os.environ["https_proxy"]="socks5://localhost:9050"
os.environ["http_proxy"]="socks5://localhost:9050"、

Pythonのrequestsモジュールなら

proxies={
  "https_proxy":"socks5://localhost:9050",
  "http_proxy":"socks5://localhost:9050"
}

requests.get(url,proxies=proxies)

で出来ます。

 

おわりに

以上!!!!!!!!!!

コメント

タイトルとURLをコピーしました