Guest User

Untitled

a guest
Jan 3rd, 2017
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. [main]
  2.  
  3. # Login details for Reddit. Fill out if you don't wish
  4. # to be prompted for a login every time you run Shreddit.
  5. ### NOTE: This may be deprecated as you can specify in praw.ini instead
  6. username =
  7. password =
  8.  
  9. # How many hours of comments you want to keep
  10. # 24 hours in a day,
  11. # 168 hours in a week,
  12. # 672 hours in two fortnights,
  13. # 720 hours in a month (30 days),
  14. # 8766 hours in a year (365.25 days)
  15. hours = 1
  16.  
  17. # Options: new, top, controversial, more?
  18. sort = controversial
  19.  
  20. # Enables print statements to notify you of what's going on
  21. verbose = True
  22.  
  23. # Removes your vote before deleting the item
  24. clear_vote = False
  25.  
  26. # Options: comments, submitted, overview
  27. # See: https://github.com/mellort/reddit_api/blob/master/reddit/objects.py#L359
  28. # Overview: both submissions and comments. Comments / Submitted are as expected.
  29. item = overview
  30.  
  31. # Anything in this list won't be deleted, coma delimited
  32. # spaces should work as .strip() is called after splitting
  33. # on comma.
  34. whitelist =
  35.  
  36. # If you want any specific posts to be whitelisted stick 'em in here
  37. whitelist_ids =
  38.  
  39. # If you set this then no editing or deleting will be done
  40. # but the output from the program will be shown as an example
  41. trial_run = False
  42.  
  43. # Don't delete but *do* edit, could prove... interesting to see a comment
  44. # with 5000 upvotes and it's just a lorem ipsum!
  45. edit_only = False
  46.  
  47. # Ignore distinguished comments.
  48. whitelist_distinguished = False
  49.  
  50. # Ignore gilded (gold) comments
  51. whitelist_gilded = False
  52.  
  53. # Delete everything older that this date, **This ignores whitelists**.
  54. # Can be used as a second deletion, as in "delete items older than 24 hours
  55. # except on whitelisted subreddits but after 3 months delete everything.
  56. nuke_hours = 0
  57.  
  58. # Only delete comments with this score or less, or delete all comments
  59. # if this is not set.
  60. max_score =
  61.  
  62. # Save JSON encoded comment to this directory before deleting it.
  63. save_directory =
  64.  
  65. # vim: syntax=config
Add Comment
Please, Sign In to add comment