使用praw permalink()时出现“ TypeError:'str'对象不可调用”

时间:2019-01-13 18:05:38

标签: python praw

我想使用Praw获取子r / DJBluntztestzone中的reddit帖子的链接。这是我遇到麻烦的代码:

for post in reddit.subreddit('DJBluntztestzone').top('all'):
     link = post.permalink()
     print(link)

每当我尝试运行TypeError时,都会收到该TypeError。有人知道我在做什么错吗?

1 个答案:

答案 0 :(得分:2)

您正在调用永久链接,但这不是一个函数 您需要使用此

for post in reddit.subreddit('DJBluntztestzone').top('all'):
     link = post.permalink
     print(link)