/
ilya.petrash
/
SimplePyScripts
Обзор
Документация
Войти
/
ilya.petrash
/
SimplePyScripts
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
using_tor/with_module_requests.py
17 строк
344 B
gil9red
Refactoring. Using black code style
28 июн 2023, 13:51
28 июн 2023, 13:51
e2f9954
Код
Авторство
О чём код?
#!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = "ipetrash" # NOTE: tor должен быть запущен # pip install -U requests[socks] import requests proxies = { "http": "socks5://localhost:9050", "https": "socks5://localhost:9050", } url = "http://httpbin.org/ip" print(requests.get(url, proxies=proxies).text)