Операционная система - Windows
Нужно чтобы я мог делать запросы с прокси из тора
Вот сам код:
import requests
def get_tor_session():
session = requests.session()
# Tor uses the 9050 port as the default socks port
session.proxies = {'http': 'socks5://127.0.0.1:9051',
'https': 'socks5://127.0.0.1:9051'}
return session
# Make a request through the Tor connection
# IP visible through Tor
session = get_tor_session()
print(session.get("http://httpbin.org/ip").text)
# Above should print an IP different than your public IP
# Following prints your normal public IP
print(requests.get("http://httpbin.org/ip").text)
Но я не знаю как настроить тор. Как выставить пароль, порт и т.д.