|
|
|
|
|
by minimaxir
2879 days ago
|
|
You can also use the Pushshift real-time feed in BigQuery to query for keywords in submissions in real time (unfortunately the comments feed broke last month) Example query which searches for 'f5bot' in the past day and correctly finds the corresponding posts on Reddit: #standardSQL
SELECT title, subreddit, permalink
FROM `pushshift.rt_reddit.submissions`
WHERE created_utc > TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL 1 DAY)
AND REGEXP_CONTAINS(LOWER(title), r'f5bot')
|
|