praw

    1熱度

    1回答

    我希望看到一個給定subreddit的訂戶列表或個人用戶訂閱的subreddits列表。這些信息有哪些可用?在PRAW文檔中,我看到了my_reddits(),但這似乎意味着您只能以已登錄的用戶身份檢索自己的訂閱列表。 我也在Reddit API文檔中看到這個:https://www.reddit.com/dev/api#GET_subreddits_mine_subscriber 這也似乎假設您

    0熱度

    1回答

    我想寫一個遞歸函數,可以從Reddit提交中檢索嵌套註釋。我使用Python + PRAW def _get_comments(comments, ret = []): for comment in comments: if len(comment._replies) > 0: return _get_comments(tail(comments), ret +

    0熱度

    2回答

    Basic代碼: import praw r = praw.Reddit(user_agent='Getting the data!!') r.login("username","password",disable_warning=True) results=r.search('whatever', subreddit=None, sort=None, syntax=None, period

    0熱度

    1回答

    我試圖按照教程做在Python Reddit和Twitter的殭屍。我使用的Python(2.7.10),因爲我相信這是在教程中使用的版本,但我有以下錯誤: Traceback (most recent call last): File "C:\Python27\twitterbot.py", line 82, in <module> main() File "C:

    2熱度

    1回答

    我試圖從subreddit刮所有評論。我找到了一個名爲PRAW的圖書館。舉例 import praw r = praw.Reddit('Comment parser example by u/_Daimon_') subreddit = r.get_subreddit("python") comments = subreddit.get_comments() 但是,這隻返回最近的25條評

    1熱度

    1回答

    我正在使用praw模塊,並且我發現我的對象有時有一個屬性subreddit,有時是一個字符串,有時候是一個對象擁有自己的特性。我已經處理它使用以下內容: for c in comments: if isinstance(c.subreddit, str): subreddit_name = c.subreddit else: subreddit_name

    0熱度

    1回答

    import praw import time r = praw.Reddit(user_agent = "A bot by /u/") r.login() print("Logging in...") cache = [] def run_bot(): print("Grabbing subreddit...") subreddit = r.get_sub

    0熱度

    1回答

    我一直在試圖安裝praw與PIP安裝praw但不斷收到此錯誤信息: Exception: Traceback (most recent call last): File "/usr/local/lib/python2.7/dist-packages/pip/basecommand.py", line 223, in main status = self.run(options

    1熱度

    1回答

    Python版本:2.7 我想從Reddit用戶檢索帖子並將它們存儲在python中的變量。下面是我想要完成的一個例子。它應該獲得用戶的所有帖子。請注意,下面的大部分代碼,屬性和命令都是不正確的;只是爲了說明我的意圖。 ... r = praw.Reddit(user_agent=user_agent) uname : "/u/test" count = r.get_total_amount_

    1熱度

    1回答

    我需要從任何時候抓取subreddit中的頂級評論。 我試圖抓住所有的意見,並通過他們迭代,但不幸的帖子,你可以得到的數量被限制在1000 我一直在使用Subreddit.get_comments嘗試,但它僅返回25的意見。 所以我正在尋找一種方法。 你能幫我嗎?