Last active
November 13, 2024 16:17
-
-
Save gdamjan/084bd43f1677fd6045feee9b2dbaf80c to your computer and use it in GitHub Desktop.
use the ssh socks5 proxy with aiohttp, requests, httpx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env -S uv run | |
# /// script | |
# requires-python = ">=3.12" | |
# dependencies = [ | |
# "aiohttp", | |
# "aiohttp-socks", | |
# ] | |
# /// | |
from aiohttp_socks import ProxyType, ProxyConnector, ChainProxyConnector | |
import aiohttp | |
import asyncio | |
import os | |
async def main(): | |
if socks_proxy := os.environ.get("SOCKS_PROXY"): | |
# usage with `ssh ec2-server… -D 9999` to enable a socks5 proxy | |
connector = ProxyConnector.from_url(socks_proxy) | |
else: | |
connector = None | |
async with aiohttp.ClientSession(connector=connector) as session: | |
async with session.get("https://httpbin.rs/ip") as resp: | |
print(f"Status: {resp.status}") | |
print(await resp.json()) | |
if __name__ == "__main__": | |
asyncio.run(main()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env -S uv run | |
# /// script | |
# requires-python = ">=3.12" | |
# dependencies = [ | |
# "httpx[socks]", | |
# ] | |
# /// | |
import httpx | |
import os | |
def main(): | |
# usage with `ssh ec2-server… -D 9999` to enable a socks5 proxy | |
proxy = os.environ.get("SOCKS_PROXY") | |
resp = httpx.get("https://httpbin.rs/ip", proxy=proxy) | |
print(f"Status: {resp.status_code}") | |
print(resp.json()) | |
if __name__ == "__main__": | |
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env -S uv run | |
# /// script | |
# requires-python = ">=3.12" | |
# dependencies = [ | |
# "requests[socks]", | |
# ] | |
# /// | |
import requests | |
import os | |
def main(): | |
if proxy := os.environ.get("SOCKS_PROXY"): | |
# usage with `ssh ec2-server… -D 9999` to enable a socks5 proxy | |
proxies = dict(http=proxy, https=proxy) | |
else: | |
proxies = None | |
resp = requests.get("https://httpbin.rs/ip", proxies=proxies) | |
print(f"Status: {resp.status_code}") | |
print(resp.json()) | |
if __name__ == "__main__": | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
two usages: