在查看文档后,我仍然无法理解它是如何捆绑的。我想要完成的是简单的:给定一个URL,返回该URL的文本内容。
例如:
import praw
r = praw.Reddit(user_agent='my_cool_app')
post = "http://www.reddit.com/r/askscience/comments/10kp2h\
/lots_of_people_dont_feel_identified_or_find/"
comment = "http://www.reddit.com/r/askscience/comments/10kp2h\
/lots_of_people_dont_feel_identified_or_find/c6ec6hf"
建立哪个是评论,哪个是帖子可以使用正则表达式完成,但如果有更好的方法我会使用它。
所以我的问题是:确定reddit网址性质的最佳方法是什么?如何获取该网址的内容?
到目前为止我尝试了什么:
post=praw.objects.Submission.get_info(r, url).selftext
#returns the self.text of a post regardless if that url is a permalink to a comment
comment_text = praw.objects.?????() # how to do this ?
提前致谢。