-
Notifications
You must be signed in to change notification settings - Fork 164
Expand file tree
/
Copy pathsettings.py
More file actions
77 lines (76 loc) · 1.5 KB
/
settings.py
File metadata and controls
77 lines (76 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
from typing_extensions import Literal, TypeAlias
ClientIdentifiers: TypeAlias = Literal[
# Chrome
"chrome_103",
"chrome_104",
"chrome_105",
"chrome_106",
"chrome_107",
"chrome_108",
"chrome_109",
"chrome_110",
"chrome_111",
"chrome_112",
"chrome_116_PSK",
"chrome_116_PSK_PQ",
"chrome_117",
"chrome_120",
"chrome_124",
"chrome_131",
"chrome_131_PSK",
"chrome_133",
"chrome_133_PSK"
# Safari
"safari_15_6_1",
"safari_16_0",
# iOS (Safari)
"safari_ios_15_5",
"safari_ios_15_6",
"safari_ios_16_0",
"safari_ios_17_0",
"safari_ios_18_0"
# iPadOS (Safari)
"safari_ipad_15_6",
# FireFox
"firefox_102",
"firefox_104",
"firefox_105",
"firefox_106",
"firefox_108",
"firefox_110",
"firefox_117",
"firefox_120",
"firefox_123",
"firefox_132",
"firefox_133",
"firefox_135",
# Opera
"opera_89",
"opera_90",
"opera_91",
# OkHttp4
"okhttp4_android_7",
"okhttp4_android_8",
"okhttp4_android_9",
"okhttp4_android_10",
"okhttp4_android_11",
"okhttp4_android_12",
"okhttp4_android_13",
# Custom
"zalando_ios_mobile",
"zalando_android_mobile",
"nike_ios_mobile",
"nike_android_mobile",
"mms_ios",
"mms_ios_2",
"mms_ios_3",
"mesh_ios",
"mesh_ios_1",
"mesh_ios_2",
"mesh_android",
"mesh_android_1",
"mesh_android_2",
"confirmed_ios",
"confirmed_android",
"cloudscraper",
]