I'm currently working on scraping users' past comments on Reddit with Praw/Python, and I would love to go beyond the upper bound (1k) when I make my query.
I've read something on Cloudsearch Syntax where you can make timestamp and query multiple times, but I couldn't fully digest what's going on there. Can someone shed some light on? Thanks!
What I'm currently going for:
dh = reddit.redditor(USERNAME)
count = 0
for c in dh.comments.new(limit = None):
print c.subreddit
This would always give me count = 1000...