Integrate mobile proxies with any Python scraping framework. Our proxies work with Requests, Scrapy, Selenium, Playwright, and any HTTP client. Standard HTTP/SOCKS5 protocol support.
Standard proxy format works with any Python HTTP library. Just plug in your proxy credentials and start scraping.
import requests
proxy = {
"http": "http://user:pass@proxy.proxies.sx:port",
"https": "http://user:pass@proxy.proxies.sx:port"
}
response = requests.get(
"https://example.com",
proxies=proxy
)
print(response.text)# settings.py
DOWNLOADER_MIDDLEWARES = {
'scrapy.downloadermiddlewares.httpproxy.HttpProxyMiddleware': 1,
}
HTTP_PROXY = 'http://user:pass@proxy.proxies.sx:port'
# In spider
def start_requests(self):
yield scrapy.Request(
url='https://example.com',
meta={'proxy': HTTP_PROXY}
)from selenium import webdriver
from selenium.webdriver.chrome.options import Options
options = Options()
options.add_argument(
'--proxy-server=http://user:pass@proxy.proxies.sx:port'
)
driver = webdriver.Chrome(options=options)
driver.get("https://example.com")from playwright.sync_api import sync_playwright
with sync_playwright() as p:
browser = p.chromium.launch(
proxy={
"server": "http://proxy.proxies.sx:port",
"username": "user",
"password": "pass"
}
)
page = browser.new_page()
page.goto("https://example.com")Every proxy supports both HTTP and SOCKS5 protocols. Use whichever your framework prefers - both ports provided.
Full API for programmatic control. Create proxies, rotate IPs, check usage, and manage your account via API.
Configure automatic IP rotation from 5 minutes to 24 hours. Or rotate manually via API call for full control.
Get started with mobile proxies. Works with any Python framework. 92% success rate.