├── .gitignore ├── BotSkeleton ├── .gitignore ├── BotSkeleton.py ├── README.md └── oauth_template.txt ├── BulletPointCollector ├── .gitignore ├── BulletPointCollector.py └── README.md ├── ChangeFlairBot ├── .gitignore ├── ChangeFlairBot.py ├── README.md └── oauth_template.txt ├── ELOBot ├── .gitignore ├── ELOBot.py ├── README.md └── oauth_template.txt ├── EMailNotification ├── .gitignore ├── EMailNotification.py ├── README.md ├── oauth_template.txt └── rules.txt ├── EvoCreoBot ├── .gitignore ├── EvoCreoBot.py ├── README.md └── oauth_template.txt ├── ForwardOrangered ├── .gitignore ├── ForwardOrangered.py ├── README.md └── oauth_template.txt ├── HeaderChangeBot ├── .gitignore ├── HeaderChangeBot.py ├── README.md ├── headers.txt └── oauth_template.txt ├── LICENSE ├── ProxyBot ├── .gitignore ├── ProxyBot.py ├── README.md └── oauth_template.txt ├── README.md ├── RSSBot ├── .gitignore ├── README.md ├── RSSBot.py ├── RSSReader.py ├── html2text.py ├── html2text_LICENSE ├── oauth_template.txt └── sources.txt ├── RandomUserSelector ├── .gitignore ├── README.md ├── RandomUserSelector.py └── oauth_template.txt ├── RespondQuest ├── .gitignore ├── README.md ├── RespondQuest.py └── oauth_template.txt ├── ScheduleBot ├── .gitignore ├── README.md ├── ScheduleBot.py ├── ScheduledPost.py └── oauth_template.txt └── UserListKeeper ├── .gitignore ├── README.md ├── UserListKeeper.py ├── oauth_template.txt └── userlist.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/.gitignore -------------------------------------------------------------------------------- /BotSkeleton/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/BotSkeleton/.gitignore -------------------------------------------------------------------------------- /BotSkeleton/BotSkeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/BotSkeleton/BotSkeleton.py -------------------------------------------------------------------------------- /BotSkeleton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/BotSkeleton/README.md -------------------------------------------------------------------------------- /BotSkeleton/oauth_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/BotSkeleton/oauth_template.txt -------------------------------------------------------------------------------- /BulletPointCollector/.gitignore: -------------------------------------------------------------------------------- 1 | list.txt -------------------------------------------------------------------------------- /BulletPointCollector/BulletPointCollector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/BulletPointCollector/BulletPointCollector.py -------------------------------------------------------------------------------- /BulletPointCollector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/BulletPointCollector/README.md -------------------------------------------------------------------------------- /ChangeFlairBot/.gitignore: -------------------------------------------------------------------------------- 1 | oauth.txt -------------------------------------------------------------------------------- /ChangeFlairBot/ChangeFlairBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ChangeFlairBot/ChangeFlairBot.py -------------------------------------------------------------------------------- /ChangeFlairBot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ChangeFlairBot/README.md -------------------------------------------------------------------------------- /ChangeFlairBot/oauth_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ChangeFlairBot/oauth_template.txt -------------------------------------------------------------------------------- /ELOBot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ELOBot/.gitignore -------------------------------------------------------------------------------- /ELOBot/ELOBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ELOBot/ELOBot.py -------------------------------------------------------------------------------- /ELOBot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ELOBot/README.md -------------------------------------------------------------------------------- /ELOBot/oauth_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ELOBot/oauth_template.txt -------------------------------------------------------------------------------- /EMailNotification/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/EMailNotification/.gitignore -------------------------------------------------------------------------------- /EMailNotification/EMailNotification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/EMailNotification/EMailNotification.py -------------------------------------------------------------------------------- /EMailNotification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/EMailNotification/README.md -------------------------------------------------------------------------------- /EMailNotification/oauth_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/EMailNotification/oauth_template.txt -------------------------------------------------------------------------------- /EMailNotification/rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/EMailNotification/rules.txt -------------------------------------------------------------------------------- /EvoCreoBot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/EvoCreoBot/.gitignore -------------------------------------------------------------------------------- /EvoCreoBot/EvoCreoBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/EvoCreoBot/EvoCreoBot.py -------------------------------------------------------------------------------- /EvoCreoBot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/EvoCreoBot/README.md -------------------------------------------------------------------------------- /EvoCreoBot/oauth_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/EvoCreoBot/oauth_template.txt -------------------------------------------------------------------------------- /ForwardOrangered/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ForwardOrangered/.gitignore -------------------------------------------------------------------------------- /ForwardOrangered/ForwardOrangered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ForwardOrangered/ForwardOrangered.py -------------------------------------------------------------------------------- /ForwardOrangered/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ForwardOrangered/README.md -------------------------------------------------------------------------------- /ForwardOrangered/oauth_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ForwardOrangered/oauth_template.txt -------------------------------------------------------------------------------- /HeaderChangeBot/.gitignore: -------------------------------------------------------------------------------- 1 | header*.jpg 2 | oauth.txt -------------------------------------------------------------------------------- /HeaderChangeBot/HeaderChangeBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/HeaderChangeBot/HeaderChangeBot.py -------------------------------------------------------------------------------- /HeaderChangeBot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/HeaderChangeBot/README.md -------------------------------------------------------------------------------- /HeaderChangeBot/headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/HeaderChangeBot/headers.txt -------------------------------------------------------------------------------- /HeaderChangeBot/oauth_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/HeaderChangeBot/oauth_template.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/LICENSE -------------------------------------------------------------------------------- /ProxyBot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ProxyBot/.gitignore -------------------------------------------------------------------------------- /ProxyBot/ProxyBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ProxyBot/ProxyBot.py -------------------------------------------------------------------------------- /ProxyBot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ProxyBot/README.md -------------------------------------------------------------------------------- /ProxyBot/oauth_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ProxyBot/oauth_template.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/README.md -------------------------------------------------------------------------------- /RSSBot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/RSSBot/.gitignore -------------------------------------------------------------------------------- /RSSBot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/RSSBot/README.md -------------------------------------------------------------------------------- /RSSBot/RSSBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/RSSBot/RSSBot.py -------------------------------------------------------------------------------- /RSSBot/RSSReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/RSSBot/RSSReader.py -------------------------------------------------------------------------------- /RSSBot/html2text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/RSSBot/html2text.py -------------------------------------------------------------------------------- /RSSBot/html2text_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/RSSBot/html2text_LICENSE -------------------------------------------------------------------------------- /RSSBot/oauth_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/RSSBot/oauth_template.txt -------------------------------------------------------------------------------- /RSSBot/sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/RSSBot/sources.txt -------------------------------------------------------------------------------- /RandomUserSelector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/RandomUserSelector/.gitignore -------------------------------------------------------------------------------- /RandomUserSelector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/RandomUserSelector/README.md -------------------------------------------------------------------------------- /RandomUserSelector/RandomUserSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/RandomUserSelector/RandomUserSelector.py -------------------------------------------------------------------------------- /RandomUserSelector/oauth_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/RandomUserSelector/oauth_template.txt -------------------------------------------------------------------------------- /RespondQuest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/RespondQuest/.gitignore -------------------------------------------------------------------------------- /RespondQuest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/RespondQuest/README.md -------------------------------------------------------------------------------- /RespondQuest/RespondQuest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/RespondQuest/RespondQuest.py -------------------------------------------------------------------------------- /RespondQuest/oauth_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/RespondQuest/oauth_template.txt -------------------------------------------------------------------------------- /ScheduleBot/.gitignore: -------------------------------------------------------------------------------- 1 | oauth.txt -------------------------------------------------------------------------------- /ScheduleBot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ScheduleBot/README.md -------------------------------------------------------------------------------- /ScheduleBot/ScheduleBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ScheduleBot/ScheduleBot.py -------------------------------------------------------------------------------- /ScheduleBot/ScheduledPost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ScheduleBot/ScheduledPost.py -------------------------------------------------------------------------------- /ScheduleBot/oauth_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/ScheduleBot/oauth_template.txt -------------------------------------------------------------------------------- /UserListKeeper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/UserListKeeper/.gitignore -------------------------------------------------------------------------------- /UserListKeeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/UserListKeeper/README.md -------------------------------------------------------------------------------- /UserListKeeper/UserListKeeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/UserListKeeper/UserListKeeper.py -------------------------------------------------------------------------------- /UserListKeeper/oauth_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/UserListKeeper/oauth_template.txt -------------------------------------------------------------------------------- /UserListKeeper/userlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmBe19/RedditBots/HEAD/UserListKeeper/userlist.txt --------------------------------------------------------------------------------