예제 #1
0
	def review_content(self):
		if self.tc:
			text = self.tc['body']
		else:
			text = self.reviewer_tag.find('div', class_='entry').p.strings
			text = ' '.join(text)
		return TAutil.process_text(text)
예제 #2
0
	def review_title(self):
		if self.tc:
			text = self.tc['name']
		else:
			text = str(self.reviewer_tag.find('div', class_='quote').string)
		return TAutil.process_text(text)