RedditRefresh
RedditRefresh copied to clipboard
Bulk Delete and Encrypt your reddit posts/comments using the SHA-256 algo and the PRAW API.
https://github.com/karan51ngh/RedditRefresh/blob/de09d6dec83f218d280014b11a4efdb8e9477304/delete.py#L20 I suggest adding UTF-8. It crashed for me with the error mentioned in the title when reaching certain comments in non-english language. `file = open("LOGS.md", "a+", encoding="utf-8")` Otherwise it...
Hello, thanks for your lovely project! Upon installing requirements.txt, I get the error below. Seems that with pycrypto hasn't been maintained since 2022. Replacing it with pycryptodome is suggested. Thoughts?...
``` Traceback (most recent call last): File "/home/fbi/git/RedditRefresh/main.py", line 29, in main() ~~~~^^ File "/home/fbi/git/RedditRefresh/main.py", line 24, in main redditRefresh.executeQuery() ~~~~~~~~~~~~~~~~~~~~~~~~~~^^ File "/home/fbi/git/RedditRefresh/RedditRefresh.py", line 162, in executeQuery self.manageComments() ~~~~~~~~~~~~~~~~~~~^^ File...
imo using reddit password to generate key is not a good idea. Especially if someone uses the ENCRYPT and DECRYPT options. It may cause confusion later on if the reddit...
https://github.com/karan51ngh/RedditRefresh/blob/80d1b8d5e11e8f41ad5010f3f98e1739cde5080e/RedditRefresh.py#L119 `self.user.comments.new` and `self.user.comments.top` produce two different collections of comments. The code as-is using `self.user.comments.new` can run, receive no comments and the script ends. But I switch to `self.user.comments.top` and...