我试图为我的Reddit bot运行代码。它没有任何问题登录到Reddit,但当它到达这段代码时,它会抛出一个错误:
all_comments = praw.helpers.flatten_tree(r.get_comments('all'))
它抛出的错误:
AttributeError: 'module' object has no attribute 'helpers'
我已检查过帮助文件是否出现在A:\ Python27 \ Lib \ site-packages \ praw \ models \ helpers.py。
答案 0 :(得分:1)
您正在查看PRAW4之前PRAW版本的示例,但是,您已安装PRAW4。
如果您想使用它,请查看PRAW4文档:https://praw.readthedocs.io/en/latest/getting_started/quick_start.html