MCPcopy Create free account
hub / github.com/VitoHowe/glm-coding / BrowserProfile

Class BrowserProfile

app/browser_profiles.py:10–22  ·  view source on GitHub ↗

A coherent browser profile: stored id, curl-cffi TLS profile, UA, and Client Hints.

Source from the content-addressed store, hash-verified

8 "chrome",
9 "edge",
10 "firefox",
11)
12
13DEFAULT_BROWSER_IMPERSONATE = "chrome"
14
15DEFAULT_USER_AGENTS: dict[str, str] = {
16 "chrome": (
17 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) "
18 "AppleWebKit/537.36 (KHTML, like Gecko) "
19 "Chrome/136.0.0.0 Safari/537.36"
20 ),
21 "edge": (
22 "Mozilla/5.0 (Windows NT 10.0; Win64; x64) "
23 "AppleWebKit/537.36 (KHTML, like Gecko) "
24 "Chrome/136.0.0.0 Safari/537.36 Edg/136.0.0.0"
25 ),

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected