Skip to content

Instantly share code, notes, and snippets.

@gdamjan
Last active November 13, 2024 16:17
Show Gist options
  • Save gdamjan/084bd43f1677fd6045feee9b2dbaf80c to your computer and use it in GitHub Desktop.
Save gdamjan/084bd43f1677fd6045feee9b2dbaf80c to your computer and use it in GitHub Desktop.
use the ssh socks5 proxy with aiohttp, requests, httpx
#!/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())
#!/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()
#!/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()
@gdamjan
Copy link
Author

gdamjan commented Nov 13, 2024

two usages:

uv run aiohttp-socks-proxy.py

# or

ssh ec2-user -N -D 1080
SOCKS_PROXY=socks5://127.0.0.1:1080 uv run aiohttp-socks-proxy.py

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment