Ways to scrape subreddits based on keywords?

Shibbi90

Regular Member
Joined
Mar 3, 2011
Messages
484
Reaction score
236
Is there any bot or method to scrape subreddits based on keywords? The search function on Reddit sucks when it comes to finding new subs.
Can I make google search only return results of different subs?

Would be nice to get members and members online stats for each sub, but not required.
 
You can use google dorks to scrape specific URLs and domains. For example, you can search the sub r/AskReddit for the keyword movies as:
Code:
"movies" inurl:r/AskReddit site:reddit.com
 
You can use google dorks to scrape specific URLs and domains. For example, you can search the sub r/AskReddit for the keyword movies as:
Code:
"movies" inurl:r/AskReddit site:reddit.com
Yeah, I know that but I dont know how to use it to find new subs. Im not looking to search inside a sub. Any suggestions?
 
Code:
"movies" site:reddit.com inurl:/comments/ intext:r/

A modified version, which searches the comments for subreddits, as new subreddits are most likely posted in comments for promotion.
 
Back
Top