I discovered PRAW this morning and got the idea to track the most used words in a subreddit over time. To do this, I first need to get the submissions with this line:
new_posts = list(reddit.subreddit('AnySubreddit').new(limit=1000))
The issue is that I only get the 1000 newest posts even if I set the limit to 5000 for example.
I know it's no longer possible to get submissions by date but is it possible to get more than the 1000 newest submissions?