我想使用Praw获取子r / DJBluntztestzone中的reddit帖子的链接。这是我遇到麻烦的代码:
for post in reddit.subreddit('DJBluntztestzone').top('all'):
link = post.permalink()
print(link)
每当我尝试运行TypeError时,都会收到该TypeError。有人知道我在做什么错吗?
答案 0 :(得分:2)
您正在调用永久链接,但这不是一个函数 您需要使用此
for post in reddit.subreddit('DJBluntztestzone').top('all'):
link = post.permalink
print(link)