这是代码 - 我尝试谷歌但没有找到解决方案:(
array (size=5)
':UID' => string '66' (length=2)
':ORDER_BY' => string 'id' (length=2)
':ORDER_TYPE' => string 'asc' (length=3)
':START' => string '0' (length=1)
':DATA_LENGTH' => string '25' (length=2)
答案 0 :(得分:2)
没有praw.objects
子模块。你想要的是praw.models
,你应该可能在顶部显式导入。以下可能适合您。干杯!
import praw
import praw.models
import sys
AUTOREPLY_MSG = """\
Hey there, I'm on a vacation for x days.
I won't check this account till then. Happy Holidays! """
def main():
r = praw.Reddit('bot1', user_agent='bot1 user agent')
for msg in r.inbox.unread(mark_read=True):
if isinstance(msg, praw.models.Message):
msg.reply(AUTOREPLY_MSG)
msg.mark_as_read()
print(msg, file=sys.stderr)
if __name__ == '__main__':
main()