Singbox2proxy
🐳 Use sing-box (v2ray, xray) proxies (VLESS + REALITY, VMess, Trojan, Shadowsocks, Hysteria, Hysteria2, TUIC, WireGuard, SSH) directly in your http clients, with chaining support and easy CLI + Relay your traffic to bypass WHITELISTS
Install / Use
/learn @nichind/Singbox2proxyREADME
singbox2proxy
Integrate sing-box proxies into your python applications with ease on any device.
- sing-box auto-install & easy management
- zero dependencies for base functionality
- seamless integration with existing applications
- tuned for best performance and latency in mind
Supported Protocols
This module supports these sing-box protocols:
- VMess (
vmess://) - VLESS (
vless://) - Shadowsocks (
ss://) - Trojan (
trojan://) - Hysteria2* (
hy2://,hysteria2://) - Hysteria* (
hysteria://) - TUIC* (
tuic://) - WireGuard (
wg://) - SSH (
ssh://) - HTTP/HTTPS (
http://,https://) - SOCKS (
socks://,socks4://,socks5://) - NaiveProxy* (
naive+https://)
*: Chaining as a middle proxy not supported, according to the sing-box docs
Installation
with pip
pip install singbox2proxy
with uv
uv pip install singbox2proxy
build from source
git clone https://github.com/nichind/singbox2proxy.git
cd singbox2proxy
pip install -e .
or install directly from GitHub
pip install git+https://github.com/nichind/singbox2proxy.git
Python Usage
Using built-in client powered by curl-cffi or requests
from singbox2proxy import SingBoxProxy
proxy = SingBoxProxy("vless://...")
response = proxy.request("GET", "https://api.ipify.org?format=json") # IF curl-cffi is installed, it will be used; otherwise, requests will be used.
print(response.status_code, response.text) # 200, {"ip":"..."}
Integrating with your own HTTP client
import requests
from singbox2proxy import SingBoxProxy
proxy = SingBoxProxy("hy2://...")
session = requests.Session()
session.proxies = proxy.proxy_for_requests # {"http": "http://127.0.0.1:<port>", "https": "http://127.0.0.1:<port>"}
response = session.get("https://api.ipify.org?format=json")
print(response.status_code, response.text) # 200, {"ip":"..."}
Example with aiohttp
from singbox2proxy import SingBoxProxy
import aiohttp
async def main():
proxy = SingBoxProxy("vmess://...")
async with aiohttp.ClientSession(proxy=proxy.socks5_proxy_url or proxy.http_proxy_url) as session:
async with session.get("https://api.ipify.org?format=json") as response:
print(response.status, await response.text()) # 200, {"ip":"..."}
Chaining
Chained proxies allow you to route your traffic through multiple proxy servers if you'll ever need more privacy or easy restriction bypass. You can chain multiple proxies together by specifying a chain_proxy with a gate SingBoxProxy instance when creating a new SingBoxProxy.
[!NOTE] See what protocols can be used as middleman proxies at supported protocols
from singbox2proxy import SingBoxProxy
proxy1 = SingBoxProxy("vmess://...")
proxy2 = SingBoxProxy("vless://...", chain_proxy=proxy1)
response = proxy2.request("GET", "https://api.ipify.org?format=json")
print(response.status_code, response.text) # 200, {"ip": "<proxy2's IP>"}
# Here, requests made through `proxy2` will first go through `proxy1`, then proxy1 will forward the request to proxy2, and finally proxy2 will send the request to the target server.
TUN Mode (System-Wide VPN)
Create a virtual network interface to route all system traffic through the proxy. This requires root/administrator privileges.
[!IMPORTANT] Very experimental, use at your own risk.
# Requires root/admin privileges
proxy = SingBoxProxy("vless://...", tun_enabled=True)
# All system traffic is now routed through the proxy
# Use like a normal VPN connection
Relay - Share Your Proxy Connection
Create a shareable proxy server that relays traffic through your existing proxy connection or provides direct internet access:
from singbox2proxy import SingBoxProxy
# Relay through an existing proxy
proxy = SingBoxProxy(
"vless://original-proxy-url",
relay_protocol="ss", # Protocol for the relay server
relay_host="192.168.1.100", # Your server's IP (auto-detected if not specified)
relay_port=8443 # Port for the relay server (auto-assigned if not specified)
)
# Or create a direct connection relay (no proxy URL needed)
direct_relay = SingBoxProxy(
None, # No proxy - direct connection
relay_protocol="ss",
relay_host="my-server.com",
relay_port=8443
)
# Get the shareable URL
print(f"Share this URL: {proxy.relay_url}")
# Output: ss://uuid@192.168.1.100:8443?type=tcp&security=none#singbox2proxy-relay
# Keep the proxy running
input("Press Enter to stop...")
proxy.stop()
Supported protocols: vmess, trojan, ss, socks, http
System Proxy Configuration
Automatically configure your OS proxy settings. This is a great alternative to TUN mode when you don't have root access.
[!NOTE] The system proxy settings will be restored to their original state when the
SingBoxProxyinstance is closed or goes out of scope, but multiple instances may interfere with each other, may be better to backup your initial settings before using this feature.
# Automatically sets system proxy and restores on exit
with SingBoxProxy("vless://...", set_system_proxy=True) as proxy:
# Your web browser and other apps will now use the proxy
print(f"System proxy configured to use {proxy.http_proxy_url}")
CLI
[!NOTE] If the
singbox2proxyorsb2pcommand isn't working in your terminal, usepython -m singbox2proxy <command>,uv run -m singbox2proxy <command>, etc. instead.
Basic Commands
Start a single proxy:
sb2p "vmess://eyJ2IjoiMiIsInBzIj..."
Specify custom ports:
sb2p "ss://..." --http-port 8080 --socks-port False # Socks disabled
Test the proxy connection:
sb2p "trojan://..." --test
Proxy Chaining
Chain multiple proxies (traffic flows: you -> proxy1 -> proxy2 -> target):
sb2p "vmess://..." "vless://..." "hy2://..." --chain
[!NOTE] See what protocols can be used as middleman proxies at supported protocols
The first URL becomes the entry point, and the last URL connects to the target server.
Relay - Share Your Proxy Connection
Create a shareable proxy server that relays traffic through your existing proxy connection, or provides direct internet access from your server:
# Relay through an existing proxy
sb2p "ss://original-proxy" --relay ss
# Direct connection relay (no proxy, just share your server's internet)
sb2p --relay ss
# Output includes a shareable URL:
# Relay URL: vless://uuid@your-ip:port?type=tcp&security=none#singbox2proxy-relay
# Share this URL to relay traffic through your server
Supported relay protocols: vmess, trojan, ss/shadowsocks, socks, http
Custom host and port:
sb2p "ss://..." --relay ss --relay-host "myserver.com" --relay-port 8443
# Direct connection with custom settings
sb2p --relay ss --relay-host "myserver.com" --relay-port 8443
Configuration Management
Generate configuration without starting:
sb2p "vless://..." --config-only
Save configuration to file:
sb2p "vmess://..." --output-config config.json
Logging Options
Enable verbose logging:
sb2p "ss://..." --verbose
Disable all logging:
sb2p "hy2://..." --quiet
TUN Mode (System-Wide VPN)
Enable TUN mode to route all system traffic through the proxy.
# Linux/macOS (requires sudo)
sudo sb2p "vless://..." --tun
# Windows (run as Administrator)
sb2p "vless://..." --tun
[!IMPORTANT] Very experimental, use at your own risk.
System Proxy
Automatically configure your OS to use the proxy.
# Set system proxy on start, restore on stop
sb2p "vless://..." --set-system-proxy
[!NOTE] The system proxy settings will be restored to their original state when the
SingBoxProxyinstance is closed or goes out of scope, but multiple instances may interfere with each other, may be better to backup your initial settings before using this feature.
Discaimer
I'm not responsible for possible misuse of this software. Please use it in accordance with the law and respect the terms of service of the services you access through proxies.
Consider leaving a star ⭐
Related Skills
claude-opus-4-5-migration
83.9kMigrate prompts and code from Claude Sonnet 4.0, Sonnet 4.5, or Opus 4.1 to Opus 4.5
model-usage
339.5kUse CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per-model summary from codexbar cost JSON.
openhue
339.5kControl Philips Hue lights and scenes via the OpenHue CLI.
sag
339.5kElevenLabs text-to-speech with mac-style say UX.
