aboutsummaryrefslogtreecommitdiffstats
path: root/archive_posts.py
diff options
context:
space:
mode:
Diffstat (limited to 'archive_posts.py')
-rw-r--r--archive_posts.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/archive_posts.py b/archive_posts.py
deleted file mode 100644
index a68feaf..0000000
--- a/archive_posts.py
+++ /dev/null
@@ -1,25 +0,0 @@
-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