An open API service indexing awesome lists of open source software.

https://github.com/r007/rredditsocialmonitoring

A custom Reddit social monitoring script
https://github.com/r007/rredditsocialmonitoring

r reddit reddit-api reddit-crawler scraper scraping-websites

Last synced: 8 months ago
JSON representation

A custom Reddit social monitoring script

Awesome Lists containing this project

README

          

# RRedditSocialMonitoring

This is the backend scraper script to monitor submissions with specific words or phrases. To see mentions the moment they're made. Tracker search all of Reddit by default.

## How it works?

It scraps every post from Reddit in real time. Reddit gets about 500,000 new posts and 4,000,000 new comments every day. Combined, that's about 50/second. The posts don't come in at a contant rate, though, so we'd better be able to handle a few hundred a second.

Reddit offers a nice JSON API. We'll just use that to grab the most recent posts. It's at https://www.reddit.com/r/all/new/.json, and I recommend you open that up in your browser to follow along.