我正在尝试创建一个脚本,它会通知我 sub-reddit 中的新帖子。代码的核心是这样的:
sub = r.get_subreddit('indianwriters',fetch=True)
time.sleep(5)
posts = sub.get_new()
while True:
try:
time.sleep(2.5)
post = next(posts)
print post.id,post.title
但是,这缺少第一篇文章。但是当我按如下方式逐行输入时:
sub = r.get_subreddit('indianwriters',fetch=True)
time.sleep(5)
posts = sub.get_new()
post = next(posts)
print post.id,post.title
这可以正常工作。那么为什么它在脚本中不起作用呢?