From c69cade1b7dcecfbdb45a2da59bafa6f1a0bf7ea Mon Sep 17 00:00:00 2001 From: emkael Date: Wed, 21 Feb 2018 15:52:11 +0100 Subject: Migrating from urllib to requests --- jfr_playoff/remote.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'jfr_playoff/remote.py') diff --git a/jfr_playoff/remote.py b/jfr_playoff/remote.py index b6d0a34..f02a8d4 100644 --- a/jfr_playoff/remote.py +++ b/jfr_playoff/remote.py @@ -1,4 +1,4 @@ -import urllib +import requests from bs4 import BeautifulSoup as bs @@ -9,5 +9,5 @@ class RemoteUrl: @classmethod def fetch(cls, url): if url not in cls.url_cache: - cls.url_cache[url] = urllib.urlopen(url).read() + cls.url_cache[url] = requests.get(url).text return bs(cls.url_cache[url], 'lxml') -- cgit v1.2.3