Reddit api返回注释或self.text的内容

时间:2012-09-28 10:32:14

标签: reddit

在查看文档后,我仍然无法理解它是如何捆绑的。我想要完成的是简单的:给定一个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 ?

提前致谢。

1 个答案:

答案 0 :(得分:4)

import praw
r = praw.Reddit('<USERAGENT>')
comment_url = ('http://www.reddit.com/r/askscience/comments/10kp2h'
               '/lots_of_people_dont_feel_identified_or_find/c6ec6hf')
comment = r.get_submission(comment_url).comments[0]
print comment.body

我的回复herehere应提供与您的问题相关的其他有用信息。