将正则表达式应用于 urlopen 请求

Apply regexp to urlopen request

我正在尝试在 urlopen(req) 的结果页面上应用正则表达式过滤器:

from urllib.request import urlopen, Request
import re
from contextlib import closing

req = Request('https://yts-subs.com/movie-imdb/tt1483013')
req.add_header('User-Agent', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36')
webpage = urlopen(req)
encoding = webpage.headers.get_content_charset('charset')

# page = str(webpage.read(), encoding)
page = webpage.read().decode('utf-8')

pattern = re.compile(r'<tr data-id=".*?"(?: class="((?:high|low)-rating)")?>\s*<td class="rating-cell">\s*.*</span>\n\s*</td>\n\s*<td class.*\n\s*<span.*>.*</span>\n\s*<span class="sub-lang">(.*)?</span>\n\s*</td>\n\s*<td>\n\s*<a href="(.*)?">'
                     ,re.UNICODE)
print(pattern.findall(page))

但由于某些原因,它不匹配任何内容。模式应该没问题,我单独测试了一下,读取的页面是存在的。怀疑编码错误,我尝试 str() 或解码它但没有成功。 令我困惑的奇怪事情是:如果我写一个中间文件并读取它,它就可以工作...

在模式之前添加它使其起作用:

with open('temp.data', 'w') as data:
  data.write(page)
page = ''
with open('temp.data','r') as data:
  page=''.join(data.readlines())

显然我做错了什么,希望得到一些提示!

好的,原来是我的正则表达式模式有问题。 通过更精确地重写它,它起作用了。 这是好的模式:

pattern = re.compile(r'<tr data-id=".*?"(?: class="((?:high|low)-rating)")?>\s*<td class="rating-cell">\s*.*</span>\s*</td>\s*<td class.*\s*<span.*>.*</span>\s*<span class="sub-lang">(.*)?</span>\s*</td>\s*<td>\s*<a href="([^">]*)?')

和错误的比较:

pattern = re.compile(r'<tr data-id=".*?"(?: class="((?:high|low)-rating)")?>\s*<td class="rating-cell">\s*.*</span>\n\s*</td>\n\s*<td class.*\n\s*<span.*>.*</span>\n\s*<span class="sub-lang">(.*)?</span>\n\s*</td>\n\s*<td>\n\s*<a href="(.*)?">'
                     ,re.UNICODE)

感谢您的帮助,我将调查已回答的备选方案!