I have been familiarising myself with PRAW for reddit. I am trying to get the top x posts for the week, however I am having trouble changing the limit for the "top" method.
The documentation doesn't seem to mention how to do it, unless I am missing something. I can change the time peroid ok by just passing in the string "week", but the limit has be flummoxed. The image shows that there is a param for limit and it is set to 100.
r = self.getReddit()sub = r.subreddit('CryptoCurrency')results = sub.top("week")for r in results:print(r.title)
DOCS: subreddit.top()
IMAGE: Inspect listing generator params