Advertisement
Guest User

Untitled

a guest
Jun 1st, 2015
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. for submission in subreddit.get_hot(limit=1):
  2. comments = submission.comments
  3. for comment in comments:
  4. text = comment.body
  5. isMatch = any(string in text for string in wordsToMatch)
  6. if isMatch:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement