-
Notifications
You must be signed in to change notification settings - Fork 210
/
redditchaosbot.py
executable file
·35 lines (26 loc) · 1.16 KB
/
redditchaosbot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import praw
'''Authenticated instance of Reddit'''
# --------------------------------------------------------------------
# https://praw.readthedocs.io/en/latest/getting_started/installation.html
# https://www.reddit.com/prefs/apps
reddit = praw.Reddit(user_agent='Chaosbot social experiment',
client_id='KbKcHMguzNRKUw', client_secret="n-2lxQYOKtJinlJUWJr_Zv7g1rw",
username='redditchaosbot', password='cha0sb0t')
reddit.read_only = True
submission = reddit.submission(id='6criij')
subreddit = reddit.subreddit('programming')
# --------------------------------------------------------------------
'''WHAT ARE PEOPLE SAYING ABOUT CHAOSBOT?'''
# --------------------------------------------------------------------
# in reddit thread: https://goo.gl/5ETNmF
submission.comment_sort = 'new'
top_level_comments = list(submission.comments)
newcom = top_level_comments[1]
print(newcom.body)
'''FIND COMMENTS ABOUT CHAOS'''
# --------------------------------------------------------------------
# TBD
# for comment in reddit.subreddit('programming').comments(limit=5):
# import pdb; pdb.set_trace()