-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.py-example.py
124 lines (122 loc) · 2.49 KB
/
variables.py-example.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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#
# Rename the file to variables.py
#
# cookeis file exported from EditThisCookie chrome extension in format:
# cookies = [
# {
# "domain": ".memrise.com",
# "expirationDate": 1541160876,
# "hostOnly": false,
# "httpOnly": false,
# "name": "ajs_anonymous_id",
# "path": "/",
# "sameSite": "no_restriction",
# "secure": false,
# "session": false,
# "storeId": "0",
# "value": "xxxxxx",
# "id": 1
#},
#
# Manual changes in the file:
# - add "cookies = " in begginning of the 1st line
# - change true -> True
# - change false -> False
cookies = [
{
"domain": ".memrise.com",
"expirationDate": 1541160840,
"hostOnly": False,
"httpOnly": False,
"name": "ajs_anonymous_id",
"path": "/",
"sameSite": "no_restriction",
"secure": False,
"session": False,
"storeId": "0",
"value": "xxxx",
"id": 1
},
{
"domain": ".memrise.com",
"expirationDate": 1541449140,
"hostOnly": False,
"httpOnly": False,
"name": "ajs_group_id",
"path": "/",
"sameSite": "no_restriction",
"secure": False,
"session": False,
"storeId": "0",
"value": "null",
"id": 2
},
{
"domain": ".memrise.com",
"expirationDate": 1541449140,
"hostOnly": False,
"httpOnly": False,
"name": "ajs_user_id",
"path": "/",
"sameSite": "no_restriction",
"secure": False,
"session": False,
"storeId": "0",
"value": "23978049",
"id": 3
},
{
"domain": ".memrise.com",
"expirationDate": 1512492840,
"hostOnly": False,
"httpOnly": False,
"name": "mp_super_properties",
"path": "/",
"sameSite": "no_restriction",
"secure": False,
"session": False,
"storeId": "0",
"value": "xxxxx",
"id": 4
},
{
"domain": "www.memrise.com",
"hostOnly": True,
"httpOnly": False,
"name": "csrftoken",
"path": "/",
"sameSite": "no_restriction",
"secure": False,
"session": True,
"storeId": "0",
"value": "xxx",
"id": 5
},
{
"domain": "www.memrise.com",
"hostOnly": True,
"httpOnly": False,
"name": "i18next",
"path": "/",
"sameSite": "no_restriction",
"secure": False,
"session": True,
"storeId": "0",
"value": "en",
"id": 6
},
{
"domain": "www.memrise.com",
"expirationDate": 1514745900,
"hostOnly": True,
"httpOnly": True,
"name": "sessionid",
"path": "/",
"sameSite": "no_restriction",
"secure": False,
"session": False,
"storeId": "0",
"value": "xxx",
"id": 7
}
]