From d63f2d51ce2d1b7bee2cdf9da059d4f3319a8631 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Mon, 18 Jan 2016 02:29:13 +0100 Subject: [PATCH] Send user agent in URL parser requests. --- plomlombot.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plomlombot.py b/plomlombot.py index d6feb93..6031d50 100755 --- a/plomlombot.py +++ b/plomlombot.py @@ -103,8 +103,11 @@ def lineparser_loop(io, nickname): matches = re.findall("(https?://[^\s>]+)", msg) for i in range(len(matches)): url = matches[i] + request = urllib.request.Request(url, headers={ + "User-Agent": "plomlombot" + }) try: - webpage = urllib.request.urlopen(url, timeout=15) + webpage = urllib.request.urlopen(request, timeout=15) except (urllib.error.HTTPError, urllib.error.URLError, UnicodeError, http.client.BadStatusLine) as error: print("TROUBLE FOLLOWING URL: " + str(error)) -- 2.30.2