-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheaders.py
34 lines (33 loc) · 1.57 KB
/
headers.py
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
project_fetch_headers = {
'authority': 'www.artstation.com',
'pragma': 'no-cache',
'cache-control': 'no-cache',
'sec-ch-ua': '" Not;A Brand";v="99", "Google Chrome";v="97", "Chromium";v="97"',
'sec-ch-ua-mobile': '?0',
'sec-ch-ua-platform': '"Windows"',
'upgrade-insecure-requests': '1',
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36',
'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
'sec-fetch-site': 'none',
'sec-fetch-mode': 'navigate',
'sec-fetch-user': '?1',
'sec-fetch-dest': 'document',
'accept-language': 'de-DE,de;q=0.9',
'authority': 'api.reddit.com'
}
image_request_headers = [
('authority', 'cdna.artstation.com'),
('pragma', 'no-cache'),
('cache-control', 'no-cache'),
('sec-ch-ua', '" Not;A Brand";v="99", "Google Chrome";v="97", "Chromium";v="97"'),
('sec-ch-ua-mobile', '?0'),
('sec-ch-ua-platform', '"Windows"'),
('upgrade-insecure-requests', '1'),
('user-agent', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36'),
('accept', 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9'),
('sec-fetch-site', 'none'),
('sec-fetch-mode', 'navigate'),
('sec-fetch-user', '?1'),
('sec-fetch-dest', 'document'),
('accept-language', 'de-DE,de;q=0.9')
]