def get_nextpage_url(self):
match = re.search('(siguientes >|siguientes >)', self.page)
if match:
start = string.rfind(self.page, '<a href="', 0, match.start())
if start >= 0:
return 'http://www.filmaffinity.com/es/' + gutils.before(self.page[start + 9:match.start()], '"')
return None
评论列表
文章目录