-
Notifications
You must be signed in to change notification settings - Fork 0
/
contributions.py
38 lines (31 loc) · 1.49 KB
/
contributions.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
from setup import *
def getContributor(code):
nonce = uuid.uuid4()
timestamp = int(time.time())
method = "GET"
url = f'https://api.letterboxd.com/api/v0/contributor/{code}?sort=FilmPopularity&perPage=20&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/contributor/{code}?sort=FilmPopularity&perPage=20&apikey={apikey}&nonce={nonce}×tamp={timestamp}&signature={signature}', verify=False)
resultJSON = r.json()
return resultJSON
def getContributions(code):
nonce = uuid.uuid4()
timestamp = int(time.time())
method = "GET"
url = f'https://api.letterboxd.com/api/v0/contributor/{code}/contributions?sort=FilmPopularity&perPage=20&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/contributor/{code}/contributions?sort=FilmPopularity&perPage=20&apikey={apikey}&nonce={nonce}×tamp={timestamp}&signature={signature}', verify=False)
resultJSON = r.json()
return resultJSON