Skip to content

Commit f4390b1

Browse files
authored
send-to-bot.py: use requests instead of urllib (tldr-pages#6184)
1 parent 65456d0 commit f4390b1

File tree

1 file changed

+9
-14
lines changed

1 file changed

+9
-14
lines changed

scripts/send-to-bot.py

100644100755
+9-14
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33

44
import os
55
import sys
6-
import json
7-
import urllib.request
6+
import requests
87

98
BOT_URL = 'https://tldr-bot.starbeamrainbowlabs.com'
109

@@ -34,22 +33,18 @@ def post_comment(pr_id, body, once):
3433
if once:
3534
endpoint += '/once'
3635

37-
headers = {'Content-Type': 'application/json'}
38-
data = json.dumps({'pr_id': pr_id, 'body': body})
39-
req = urllib.request.Request(endpoint, data.encode(), headers)
36+
data = {'pr_id': pr_id, 'body': body}
4037

4138
try:
42-
resp = urllib.request.urlopen(req)
43-
code = resp.getcode()
44-
except Exception as e:
39+
with requests.post(endpoint, json=data) as r:
40+
if r.status_code != requests.codes.ok:
41+
print('Error: tldr-bot responded with code', r.status_code, file=sys.stderr)
42+
print(r.text, file=sys.stderr)
43+
return False
44+
except requests.exceptions.RequestException as e:
4545
print('Error sending data to tldr-bot:', str(e), file=sys.stderr)
4646
return False
47-
48-
if code != 200:
49-
print('Error: tldr-bot responded with code', code, file=sys.stderr)
50-
print(resp.read(), file=sys.stderr)
51-
return False
52-
47+
5348
return True
5449

5550
def main(action):

0 commit comments

Comments
 (0)