Skip to content

Gakido

High-performance CPython HTTP client with browser impersonation, HTTP/2, optional native fast-path, async support, and WebSockets.

Quick start

from gakido import Client

with Client(impersonate="chrome_120") as c:
    r = c.get("https://example.com")
    print(r.status_code, r.text[:200])

Features