def crawl_for_reviews_and_summary(self, input_file):
"""
Crawl the input dataset
:param input_file: The location of the file containing the txt file dataset
:return: None
"""
self.raw_data_file = input_file
self.df = pd.DataFrame()
self.df['Review'] = self.__crawl_review()
self.df['Summary'] = self.__crawl_summary()
评论列表
文章目录