Proxy (HTTP, SOCKS) transports for httpx
Project description
httpx-socks
The httpx-socks
package provides proxy transports for httpx client.
SOCKS4(a), SOCKS5, HTTP (tunneling) proxy supported.
It uses python-socks for core proxy functionality.
Requirements
- Python >= 3.6
- httpx >= 0.13.3
- python-socks[asyncio,trio] >= 1.0.1
Installation
pip install httpx-socks
Usage
sync transport
import httpx
from httpx_socks import SyncProxyTransport
def fetch(url):
transport = SyncProxyTransport.from_url('socks5://user:password@127.0.0.1:1080')
with httpx.Client(transport=transport) as client:
res = client.get(url)
return res.text
async transport (both asyncio and trio supported)
import httpx
from httpx_socks import AsyncProxyTransport
async def fetch(url):
transport = AsyncProxyTransport.from_url('socks5://user:password@127.0.0.1:1080')
async with httpx.AsyncClient(transport=transport) as client:
res = await client.get(url)
return res.text
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
httpx-socks-0.2.10.tar.gz
(7.6 kB
view hashes)
Built Distribution
Close
Hashes for httpx_socks-0.2.10-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c393fde9abe211855c4c1c3de6636280dc2988234134aa803c7ba56e3fe7497 |
|
MD5 | 5649b9f6eb06136bf8a8abaf3ddfe7e1 |
|
BLAKE2b-256 | 82be480a94fd4cb7147d514dfb3abc840537a1aab481bade9f199f0c2c83fd89 |