-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.py
executable file
·102 lines (74 loc) · 2.28 KB
/
user.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
import time
import requests
import pprint
from pathlib import Path
import toml
credentials = toml.load(Path("credentials.toml"))
id_= credentials['program_credentials']
# you will need to get the user id from the user_filtered function then call this function.
def profile(user_id):
"""
you will need to get the user id from the user_filtered function then call this function.
"""
cookies = {
}
headers = {
'User-Agent': 'SktchyForiPhone/3.0.0 (iPhone; iOS 14.0; Scale/3.00)',
'Content-Type': 'application/x-www-form-urlencoded',
'Accept-Language': 'en-US;q=1',
}
data = {
'_appv': '465',
'id_': f'{user_id}',
'inEmail':id_['inEmail'],
'inPass': id_['inPass'],
'lang': 'en-US',
'zip': '1'
}
response = requests.post('https://api.sktchy.com/api/v1/profile/user', headers=headers, cookies=cookies, data=data)
# pprint.pprint(response.json())
def user_filtered(usrID):
cookies = {
}
headers = {
'User-Agent': 'SktchyForiPhone/3.0.0 (iPhone; iOS 14.0; Scale/3.00)',
'Content-Type': 'application/x-www-form-urlencoded',
'Accept-Language': 'en-US;q=1',
}
data = {
'_appv': '465',
'inEmail':id_['inEmail'],
'inPass': id_['inPass'],
'lang': 'en-US',
'pp': '20',
't': '2',
'usrID': f'{usrID}',
'zip': '1'
}
response = requests.post('https://api.sktchy.com/api/v1/graph/filtered', headers=headers, cookies=cookies, data=data)
return response.json()
# pprint.pprint(response.json())
# for ids in response.json()['graph/filtered']:
# print(ids['_id'])
# return ids['_id']
# pprint.pprint(response.json())
def activity():
cookies = {
}
headers = {
'User-Agent': 'SktchyForiPhone/3.0.0 (iPhone; iOS 14.0; Scale/3.00)',
'Content-Type': 'application/x-www-form-urlencoded',
'Accept-Language': 'en-US;q=1',
}
data = {
'_appv': '465',
'inEmail':id_['inEmail'],
'inPass': id_['inPass'],
'lang': 'en-US',
'pp': '20',
'zip': '1'
}
response = requests.post('https://api.sktchy.com/api/v1/activity/activities', headers=headers, cookies=cookies, data=data)
return response.json()
# pprint.pprint(response.json())
# activity()