Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomaarsen/twitchcubiebot
Twitch Bot focusing on aggregating votes and averages from Twitch chat
https://github.com/tomaarsen/twitchcubiebot
bot python twitch twitch-bot twitchbot
Last synced: about 2 months ago
JSON representation
Twitch Bot focusing on aggregating votes and averages from Twitch chat
- Host: GitHub
- URL: https://github.com/tomaarsen/twitchcubiebot
- Owner: tomaarsen
- License: mit
- Created: 2019-04-02T12:05:01.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-11T18:32:55.000Z (over 3 years ago)
- Last Synced: 2024-10-26T23:38:35.892Z (3 months ago)
- Topics: bot, python, twitch, twitch-bot, twitchbot
- Language: Python
- Size: 52.7 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TwitchCubieBot
Twitch Bot focusing on aggregating votes and averages from Twitch chat---
# Explanation
When the bot has started, it will start listening to chat messages in the channel listed in the settings.txt file. All messages will be parsed, and votes and numbers will be stored for 3 minutes after the messages comes in.
If at some point someone decides to calculate a vote or average, the information from the last 3 minutes will be used. This means it is not needed to start a vote or average in advance Note that if one user sends multiple votes or multiple values, newer values will override the older ones, so everyone only has one vote.**Note that this bot now has a new version with a GUI: [TwitchCubieBotGUI](https://github.com/CubieDev/TwitchCubieBotGUI)**
---
# Voting
Commands:
!vote
This command will decide the winner between votes.
!vote numbers
This command will decide the winner between numbers.
!vote emotes
This command will decide the winner between emotes.Valid votes (for A) include:
* A
* AAAAA
* A A A
* A Please
* All of the above, but with lower case aInvalid votes include:
* I would really like that
* D I A LAny single letter can be a vote.
---
# Averaging
Command:
!average
This command will average (median) all numbers sent in the last `LookbackTime` seconds. See [Settings](#settings) for information on how to configure `LookbackTime`.---
# ExamplesThe logging and chat output when `!vote` was typed by someone with the appropriate rank:
B won with 74.24%.
The logging and chat output when `!vote numbers` was typed by someone with the appropriate rank:
3.0 won with 84.72%.The logging and chat output when `!average` was typed by someone with the appropriate rank:
The average is 67.38.---
# Settings
This bot is controlled by a settings.txt file, which looks like:
```
{
"Host": "irc.chat.twitch.tv",
"Port": 6667,
"Channel": "#",
"Nickname": "",
"Authentication": "oauth:",
"DeniedUsers": [
"streamelements",
"marbiebot",
"moobot"
],
"AllowedRanks": [
"broadcaster",
"moderator"
],
"AllowedPeople": [],
"LookbackTime": 30
}
```| **Parameter** | **Meaning** | **Example** |
| -------------------- | ----------- | ----------- |
| Host | The URL that will be used. Do not change. | "irc.chat.twitch.tv" |
| Port | The Port that will be used. Do not change. | 6667 |
| Channel | The Channel that will be connected to. | "#CubieDev" |
| Nickname | The Username of the bot account. | "CubieB0T" |
| Authentication | The OAuth token for the bot account. | "oauth:pivogip8ybletucqdz4pkhag6itbax" |
| DeniedUsers | List of (bot) names who's messages will not be included in voting and averages. | ["streamelements", "marbiebot", "moobot"] |
| AllowedRanks | List of ranks required to be able to perform the commands. | ["broadcaster", "moderator"] |
| AllowedPeople | List of users who, even if they don't have the right ranks, will be allowed to perform the commands. | ["cubiedev"] |
| LookbackTime | The amount of seconds the bot looks back for votes/numbers/emotes. | 30 |*Note that the example OAuth token is not an actual token, but merely a generated string to give an indication what it might look like.*
I got my real OAuth token from https://twitchapps.com/tmi/.
---
# Requirements
* [Python 3.6+](https://www.python.org/downloads/)
* [Module requirements](requirements.txt)
Install these modules using `pip install -r requirements.txt`Among these modules is my own [TwitchWebsocket](https://github.com/CubieDev/TwitchWebsocket) wrapper, which makes making a Twitch chat bot a lot easier.
This repository can be seen as an implementation using this wrapper.---
# Other Twitch Bots
* [TwitchMarkovChain](https://github.com/CubieDev/TwitchMarkovChain)
* [TwitchAIDungeon](https://github.com/CubieDev/TwitchAIDungeon)
* [TwitchGoogleTranslate](https://github.com/CubieDev/TwitchGoogleTranslate)
* [TwitchCubieBotGUI](https://github.com/CubieDev/TwitchCubieBotGUI)
* [TwitchCubieBot](https://github.com/CubieDev/TwitchCubieBot)
* [TwitchRandomRecipe](https://github.com/CubieDev/TwitchRandomRecipe)
* [TwitchUrbanDictionary](https://github.com/CubieDev/TwitchUrbanDictionary)
* [TwitchRhymeBot](https://github.com/CubieDev/TwitchRhymeBot)
* [TwitchWeather](https://github.com/CubieDev/TwitchWeather)
* [TwitchDeathCounter](https://github.com/CubieDev/TwitchDeathCounter)
* [TwitchSuggestDinner](https://github.com/CubieDev/TwitchSuggestDinner)
* [TwitchPickUser](https://github.com/CubieDev/TwitchPickUser)
* [TwitchSaveMessages](https://github.com/CubieDev/TwitchSaveMessages)
* [TwitchMMLevelPickerGUI](https://github.com/CubieDev/TwitchMMLevelPickerGUI) (Mario Maker 2 specific bot)
* [TwitchMMLevelQueueGUI](https://github.com/CubieDev/TwitchMMLevelQueueGUI) (Mario Maker 2 specific bot)
* [TwitchPackCounter](https://github.com/CubieDev/TwitchPackCounter) (Streamer specific bot)
* [TwitchDialCheck](https://github.com/CubieDev/TwitchDialCheck) (Streamer specific bot)
* [TwitchSendMessage](https://github.com/CubieDev/TwitchSendMessage) (Meant for debugging purposes)