praw

    1熱度

    1回答

    我在閱讀doc for get_comments,我無法弄清楚time參數的正確輸入是什麼。我知道默認是「全部」,但是我輸入了具體的日期,還是必須是像「日」,「星期」等字? 說我想要得到的意見在本週內做出的用戶,這將是這樣的: r = praw.Reddit(user_agent='blah') user = r.get_redditor(username) comments = user.g

    0熱度

    1回答

    假設我需要從2014年12月和2015年1月最受歡迎的分紅點獲得文本(帖子和所有評論)。如何使用PRAW完成這項工作?我想知道,就像Twitter不讓我們抓取超過一週的推文一樣,在Reddit的情況下是否有這樣的時間限制?

    0熱度

    1回答

    所以我有一個簡單的reddit機器人設置,我使用praw框架編寫的。代碼如下: import praw import time import numpy import pickle r = praw.Reddit(user_agent = "Gets the Daily General Thread from subreddit.") print("Logging in...") r

    3熱度

    2回答

    我想寫一個reddit機器人,需要單詞「他媽的」,看看有多少人在reddit上說。這裏是代碼: import praw import time import re import sqlite3 username = "LewisTheRobot" password = "lewismenelaws" conn = sqlite3.connect('reddit') c = con

    1熱度

    1回答

    我正在嘗試爲我的測試subreddit編寫一個bot,但在我運行之前,我正在測試PRAW中的提交方法。要提交文本文章,請使用以下行: r.submit('Subreddit', 'Post Tile', text='Body') 但是如果您不想要身體?我在shell中寫這行,但只要我用None或''替換'Body',我就會得到這個我不明白的長錯誤。 The PRAW documentation

    0熱度

    1回答

    在praw,我要遍歷某些領域並打印出結果的第一個域後,得到他們的最新提交 import praw r = praw.Reddit("test") r.login(username=uname, password=pass) domains = ['example.com', 'google.com'] for domain in domains: recents = r.ge

    1熱度

    2回答

    我正在構建一個實踐的reddit機器人,將美元轉換爲其他常用貨幣,並且我設法讓轉換部分正常工作,但現在我有點卡住試圖傳遞字符直接跟隨美元符號到轉換器。 這是那種我怎麼想它的工作: def run_bot(): subreddit = r.get_subreddit("randomsubreddit") comments = subreddit.get_comments(limi

    0熱度

    1回答

    因此,我正在嘗試開發一款將遊戲日線程發佈到/ r/KontinentalHL subreddit的Bot,但每當我嘗試登錄時,都會收到以下錯誤消息: Traceback (most recent call last): File "startBot.py", line 12, in <module> r.login(Username,Password) File "C

    2熱度

    1回答

    我怎樣才能得到praw下載大於頂部標題的1000多個在reddit的子?下面的最小工作示例停止在1000: import praw subreddit_name = "todayilearned" user_agent = "TopHITS v0.1" agent = praw.Reddit(user_agent=user_agent) sub = agent.get_subreddit

    0熱度

    1回答

    我正在開發與PRAW的Reddit機器人,我想擁有機器人回覆的人的用戶名。 for comment in comments: comment_text = comment.body.lower() isMatch = any(string in comment_text for string in words_to_match) if comment.id not i