aboutsummaryrefslogtreecommitdiffstats
path: root/archive_posts.py
diff options
context:
space:
mode:
authorjwansek <eddie.atten@yahoo.co.uk>2019-01-01 12:34:50 +0000
committerjwansek <eddie.atten@yahoo.co.uk>2019-01-01 12:34:50 +0000
commitc8087aea0dbff1a2abf474a987465e817e5ad611 (patch)
tree358366a592908882defa932c0c3ed706218f2fb8 /archive_posts.py
parentbebe783ec55d789b11343a621acc9c89df91a673 (diff)
downloadSmallYTChannelBot-c8087aea0dbff1a2abf474a987465e817e5ad611.tar.gz
SmallYTChannelBot-c8087aea0dbff1a2abf474a987465e817e5ad611.zip
fixed a bug and added archive prog
Diffstat (limited to 'archive_posts.py')
-rw-r--r--archive_posts.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/archive_posts.py b/archive_posts.py
new file mode 100644
index 0000000..a68feaf
--- /dev/null
+++ b/archive_posts.py
@@ -0,0 +1,25 @@
+import praw
+import database
+import login
+
+reddit = login.REDDIT
+
+subreddit = reddit.subreddit("jwnskanzkwktest")
+db = database.Database()
+
+comment_stream = subreddit.stream.comments(pause_after=-1)
+submission_stream = subreddit.stream.submissions(pause_after=-1)
+while True:
+ for comment in comment_stream:
+ if comment is None:
+ break
+ if not db.id_in_blacklist(comment.id):
+ print("archived: ", comment.id)
+ db.add_to_blacklist(comment.id)
+
+ for submission in submission_stream:
+ if submission is None:
+ break
+ if not db.id_in_blacklist(submission.id):
+ print("archived: ", submission.id)
+ db.add_to_blacklist(submission.id) \ No newline at end of file