blob: 3a519f6455bcc9b9230d1fdb43a7ae4bdc0d70f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import re
import requests
from bs4 import BeautifulSoup as bs
class RemoteUrl:
url_cache = {}
@classmethod
def fetch(cls, url):
if url not in cls.url_cache:
request = requests.get(url)
encoding_match = re.search(
'content=".*;( )?charset=(.*)"',
request.content, re.IGNORECASE)
if encoding_match:
request.encoding = encoding_match.group(2)
cls.url_cache[url] = request.text
PlayoffLogger.get('remote').info(
'content for %s not in cache: retrieved %d bytes',
url, len(cls.url_cache[url]))
return bs(cls.url_cache[url], 'lxml')
|