-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.py
126 lines (118 loc) · 5.43 KB
/
list.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
125
126
from setup import *
def postListComment(code, comment):
nonce = uuid.uuid4()
timestamp = int(time.time())
method = "POST"
url = f'https://api.letterboxd.com/api/v0/list/{code}/comments?apikey={apikey}&nonce={nonce}×tamp={timestamp}'
body = {'comment':comment}
body = json.dumps(body)
bytestring = b"\x00".join(
[str.encode(method), str.encode(url), str.encode(body)]
)
signature = hmac.new(
str.encode(apisecret), bytestring, digestmod=hashlib.sha256
)
signature = signature.hexdigest()
r = requests.post(f'https://api.letterboxd.com/api/v0/list/{code}/comments?apikey={apikey}&nonce={nonce}×tamp={timestamp}&signature={signature}', headers={'Content-Type': 'application/json', 'Accept': 'application/json', 'Authorization': bearertoken}, data=body, verify=False)
def getListInfo(code):
nonce = uuid.uuid4()
timestamp = int(time.time())
method = "GET"
url = f'https://api.letterboxd.com/api/v0/list/{code}?apikey={apikey}&nonce={nonce}×tamp={timestamp}'
bytestring = b"\x00".join(
[str.encode(method), str.encode(url), str.encode("")]
)
signature = hmac.new(
str.encode(apisecret), bytestring, digestmod=hashlib.sha256
)
signature = signature.hexdigest()
r = requests.get(f'https://api.letterboxd.com/api/v0/list/{code}?apikey={apikey}&nonce={nonce}×tamp={timestamp}&signature={signature}', verify=False)
resultJSON = r.json()
return resultJSON
def getListComments(code):
nonce = uuid.uuid4()
timestamp = int(time.time())
method = "GET"
url = f'https://api.letterboxd.com/api/v0/list/{code}/comments?apikey={apikey}&nonce={nonce}×tamp={timestamp}'
bytestring = b"\x00".join(
[str.encode(method), str.encode(url), str.encode("")]
)
signature = hmac.new(
str.encode(apisecret), bytestring, digestmod=hashlib.sha256
)
signature = signature.hexdigest()
r = requests.get(f'https://api.letterboxd.com/api/v0/list/{code}/comments?apikey={apikey}&nonce={nonce}×tamp={timestamp}&signature={signature}', verify=False)
resultJSON = r.json()
return resultJSON
def getListEntries(code):
nonce = uuid.uuid4()
timestamp = int(time.time())
method = "GET"
url = f'https://api.letterboxd.com/api/v0/list/{code}/entries?apikey={apikey}&nonce={nonce}×tamp={timestamp}'
bytestring = b"\x00".join(
[str.encode(method), str.encode(url), str.encode("")]
)
signature = hmac.new(
str.encode(apisecret), bytestring, digestmod=hashlib.sha256
)
signature = signature.hexdigest()
r = requests.get(f'https://api.letterboxd.com/api/v0/list/{code}/entries?apikey={apikey}&nonce={nonce}×tamp={timestamp}&signature={signature}', verify=False)
resultJSON = r.json()
return resultJSON
def getListStats(code):
nonce = uuid.uuid4()
timestamp = int(time.time())
method = "GET"
url = f'https://api.letterboxd.com/api/v0/list/{code}/statistics?apikey={apikey}&nonce={nonce}×tamp={timestamp}'
bytestring = b"\x00".join(
[str.encode(method), str.encode(url), str.encode("")]
)
signature = hmac.new(
str.encode(apisecret), bytestring, digestmod=hashlib.sha256
)
signature = signature.hexdigest()
r = requests.get(f'https://api.letterboxd.com/api/v0/list/{code}/statistics?apikey={apikey}&nonce={nonce}×tamp={timestamp}&signature={signature}', verify=False)
resultJSON = r.json()
return resultJSON
def createList(name, description, entries, tags, ranked):
entrieslist = []
count = 1
for entry in entries:
entriesdict = {
"rank": count,
"containsSpoilers": False,
"film": entry,
}
count = count + 1
entrieslist.append(entriesdict)
nonce = uuid.uuid4()
timestamp = int(time.time())
method = "POST"
url = f'https://api.letterboxd.com/api/v0/lists?apikey={apikey}&nonce={nonce}×tamp={timestamp}'
body = {"published":True,"tags":tags,"name":name,"entries":entrieslist,"ranked":ranked,"description":description}
body = json.dumps(body)
headers = {'Content-Type': 'application/json', 'Accept': 'application/json', 'Authorization': bearertoken}
bytestring = b"\x00".join(
[str.encode(method), str.encode(url), str.encode(body)]
)
signature = hmac.new(
str.encode(apisecret), bytestring, digestmod=hashlib.sha256
)
signature = signature.hexdigest()
r = requests.post(f'https://api.letterboxd.com/api/v0/lists?apikey={apikey}&nonce={nonce}×tamp={timestamp}&signature={signature}', headers=headers, data=body, verify=False)
def getListsByTag(tagger, query):
query = query.replace(" ", "%20")
nonce = uuid.uuid4()
timestamp = int(time.time())
method = "GET"
url = f'https://api.letterboxd.com/api/v0/lists?tagCode={query}&sort=Date&tagger={tagger}&includeTaggerFriends=None&perPage=300&apikey={apikey}&nonce={nonce}×tamp={timestamp}'
bytestring = b"\x00".join(
[str.encode(method), str.encode(url), str.encode("")]
)
signature = hmac.new(
str.encode(apisecret), bytestring, digestmod=hashlib.sha256
)
signature = signature.hexdigest()
r = requests.get(f'https://api.letterboxd.com/api/v0/lists?tagCode={query}&sort=Date&tagger={tagger}&includeTaggerFriends=None&perPage=300&apikey={apikey}&nonce={nonce}×tamp={timestamp}&signature={signature}', verify=False)
resultJSON = r.json()
return resultJSON