Skip to main content

tlsreq

English | 简体中文

A single Session / AsyncSession API over four TLS-capable HTTP stacks:

curl_cffi · wreq · niquests + xutls · httpx + xutls

Change backend and impersonate. Request code stays the same.

PyPI Python License: MIT

Install

pip install tlsreq                 # httpx + h2 + brotli + zstd + xutls
pip install "tlsreq[niquests]"     # or wreq / curl_cffi / all

pip install tlsreq pulls the default httpx stack: HTTP/2 (h2), br/zstd body decoding, and Chrome 152 TLS via xutls.

Extra Pulls in Notes
(default) httpx, h2, brotli, zstandard, xutls Chrome 152 TLS + HTTP/2; decodes br/zstd
httpx (already in the default install) Kept so tlsreq[httpx] still works
niquests niquests Chrome 152 TLS + HTTP/2 patches
wreq wreq Python ≥ 3.11 only; skipped on 3.9/3.10
curl_cffi curl_cffi
all niquests, curl_cffi; wreq if Python ≥ 3.11

xutls import name is still utls. Do not also install the upstream utls package — both provide the utls module. To upgrade later: pip install -U xutls.

Quick start

import asyncio
from tlsreq import AsyncSession, Session

async def main():
    async with AsyncSession(
        backend="niquests",
        impersonate="chrome152",
        proxy="http://user:pass@host:port",
        timeout=30,
        extra={"pool_maxsize": 1},
    ) as s:
        r = await s.get("https://tls.peet.ws/api/all")
        print(r.status_code, r.http_version, r.cookies)
        print(r.json()["tls"]["ja4"])

        r = await s.post(
            "https://example.com/login",
            data=b"user=a&pass=b",
            headers={"content-type": "application/x-www-form-urlencoded"},
            header_order=["user-agent", "accept", "content-type"],
        )
        print(r.status_code, r.text)

asyncio.run(main())

with Session("wreq", "chrome149", proxy="http://127.0.0.1:7890") as s:
    r = s.get("https://example.com")
    print(r.status_code, r.headers)

The native client is on session.raw when you need a backend-specific knob.

Backends

backend Default impersonate Latest Chrome alias Sync Async
niquests chrome:152 chrome152 yes yes
httpx chrome:152 chrome152 yes yes
curl_cffi chrome150 chrome150 yes yes
wreq Chrome149 chrome149 yes yes

Unknown backend or impersonate values raise. There is no silent fallback to another profile.

chrome / chromestable map to that backend’s current default. wreq also accepts its native names (Firefox151, Safari18_5, Edge148, Opera131, OkHttp5, …). curl_cffi accepts firefox, safari, edge, chrome_android, tor, and the library’s versioned profiles.

httpx / niquests offer both HTTP/2 and HTTP/1.1. The protocol is chosen from the negotiated TLS ALPN (h2 vs http/1.1); an HTTP/1.1-only origin falls back instead of failing.

Chrome 152 (niquests / httpx)

These two backends apply Chrome 152 HTTP/2 framing on top of xutls ClientHello impersonation:

Signal Value
SETTINGS 1:65536;2:0;4:6291456;6:262144
WINDOW_UPDATE 15663105
HEADERS priority exclusive, weight 256
Pseudo-header order m,a,s,p
JA4 t13d1517h2_8daaf6152771_cb7bf5808d99
Akamai fingerprint 1:65536;2:0;4:6291456;6:262144|15663105|0|m,a,s,p

Checked against tls.peet.ws.

curl_cffi and wreq use their own stacks; they do not take this HTTP/2 patch.

API

Session / AsyncSession

Session(
    backend: BackendName = "httpx",
    impersonate: ImpersonateName | None = None,
    *,
    proxy: str | None = None,
    timeout: float = 30,
    verify: bool = True,
    headers: Mapping[str, str] | None = None,
    cookies: Mapping[str, str] | None = None,
    allow_redirects: bool = True,
    extra: dict[str, Any] | None = None,
)

Context-manager safe. AsyncSession methods are coroutines.

Requests

get / post / put / patch / delete / head / options all call request.

Argument Meaning
headers Per-request headers
params Query string
data Form dict or raw body (str / bytes)
json JSON body
cookies Per-request cookies
timeout Override session timeout
allow_redirects Override session redirect flag
header_order Wire order of header names, when the backend supports it
extra Backend-specific kwargs for this call

extra on the session is merged into the underlying constructor; extra on a request is merged into that call. Later keys win.

Response

Body is fully read when the response is wrapped. .text and .json() are synchronous on both Session types.

Attribute Type
status_code int
content bytes
text str
headers dict[str, str]
cookies dict[str, str]
url str
http_version str | None
raw native response

session.cookies is the cookie jar as a dict. session.set_cookies(dict, url=None) writes into it.

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tlsreq-0.1.7.tar.gz (28.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tlsreq-0.1.7-py3-none-any.whl (26.9 kB view details)

Uploaded Python 3

File details

Details for the file tlsreq-0.1.7.tar.gz.

File metadata

  • Download URL: tlsreq-0.1.7.tar.gz
  • Upload date:
  • Size: 28.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.14

File hashes

Hashes for tlsreq-0.1.7.tar.gz
Algorithm Hash digest
SHA256 c2acb8d6e67a103c053bc8d8661b2521cb839647916c605519c76f3847db7851
MD5 97daf2789016c746133c211b84195770
BLAKE2b-256 8e8718406c2de2c84b533ffeb6cb931c2fce9fa842ad91b17a7ad42a3f541146

See more details on using hashes here.

File details

Details for the file tlsreq-0.1.7-py3-none-any.whl.

File metadata

  • Download URL: tlsreq-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 26.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.14

File hashes

Hashes for tlsreq-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 21894a59b24152c2f0659ac53066cf39ceab0f0f2aacd3b84e1bdf9c8826bbe1
MD5 08ad58510e12101976afa57a26c2f44b
BLAKE2b-256 60332797e6e1d7108983f8902caa6176a86a7775557c53b0cbddfa93940ef674

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.7 This release

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page