https://github.com/isfakeaccount/appliancerepairbot
Bot for r/ApplianceRepair subreddit for reminding users to follow up and manage abandoned submission.
https://github.com/isfakeaccount/appliancerepairbot
Last synced: over 1 year ago
JSON representation
Bot for r/ApplianceRepair subreddit for reminding users to follow up and manage abandoned submission.
- Host: GitHub
- URL: https://github.com/isfakeaccount/appliancerepairbot
- Owner: isFakeAccount
- Created: 2020-10-12T17:41:41.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-17T18:07:11.000Z (almost 6 years ago)
- Last Synced: 2025-01-09T06:12:44.926Z (over 1 year ago)
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ApplianceRepairBot
This is a reddit bot for [ApplianceRepairBot](https://www.reddit.com/r/appliancerepair/). The bot follow ups users who haven't marked their submissions solved after certain amount of days. If the user doesn't mark the post Solved within a certain amount of days, it gets flaired as abandoned.
### How to use the bot
In order to run the bot, you need to create CONFIG.py using the template given below
```
import praw
# Login information
username = ''
password = ''
# API information
client_id = ''
client_secret = ''
user_agent = ''
# Put the name of your subreddit here
subreddit_name = ""
# Login Api
reddit = praw.Reddit(client_id=client_id,
client_secret=client_secret,
username=username,
password=password,
user_agent=user_agent)
```
After adding the config file, make sure that the flair IDs in CONSTANTS.py are correct and updated.
*For more questions, contact the mods of r/appliancerepair or me(u/is_fake_account)*