本文整理汇总了Python中extractor.Extractor.extract_comment_author_user_name方法的典型用法代码示例。如果您正苦于以下问题:Python Extractor.extract_comment_author_user_name方法的具体用法?Python Extractor.extract_comment_author_user_name怎么用?Python Extractor.extract_comment_author_user_name使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类extractor.Extractor
的用法示例。
在下文中一共展示了Extractor.extract_comment_author_user_name方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: extract_comments
# 需要导入模块: from extractor import Extractor [as 别名]
# 或者: from extractor.Extractor import extract_comment_author_user_name [as 别名]
def extract_comments(self):
if self.has_soup():
comments = self.soup.find_all("div", class_="comment") or []
for comment in comments:
extractor = Extractor(comment)
author = extractor.extract_comment_author_user_name()
post_url = "" #this needs to be set with the post in scope
date = extractor.extract_comment_date()
score = extractor.extract_comment_score()
body = extractor.extract_comment_body()
self.comments.append(Comment(
author=author,
post_url=post_url,
date=date,
score=score,
body=body
))
return self.comments