twitch-chat-bot/README.md

86 lines
1.7 KiB
Markdown
Raw Normal View History

2019-03-03 01:00:14 +00:00
twitch-chat-bot
===============
A hackety chat bot I wrote for my twitch stream. I wanted to learn asyncio
and this felt like a decent project to dive in on.
## setup
1. Set up a configuration file
```json
{
"username": "...",
"channel": "...",
"oauth_token": "...",
"client_id": "..."
}
```
- `username`: the username of the bot account
- `channel`: the irc channel to connect to, for twitch this is the same as
the streamer's channel name
- `oauth_token`: follow the directions [here][docs-irc] to get a token
- `client_id`: set up an application for your chat bot [here][app-setup]
1. Use python3.7 or newer and install `aiohttp`
```bash
virtualenv venv -ppython3.7
venv/bin/pip install aiohttp
```
2019-03-03 01:01:28 +00:00
1. Run! `venv/bin/python bot.py`
2019-03-03 01:00:14 +00:00
[docs-irc]: https://dev.twitch.tv/docs/irc/
[app-setup]: https://dev.twitch.tv/docs/authentication/#registration
## implemented commands
### `!help`
List all the currently supported commands
```
anthonywritescode: !help
anthonywritescodebot: possible commands: !help, !ohai, !uptime
```
### `!ohai`
Greet yo self
```
anthonywritescode: !ohai
anthonywritescodebot: ohai, anthonywritescode!
```
### `!uptime`
Show how long the stream has been running for
```
anthonywritescode: !uptime
anthonywritescodebot: streaming for: 3 hours, 57 minutes, 17 seconds
```
### `PING ...`
Replies `PONG` to whatever you say
```
anthonywritescode: PING
anthonywritescodebot: PONG
anthonywritescode: PING hello
anthonywritescodebot: PONG hello
```
2019-06-08 20:26:57 +00:00
### `!discord'
Show the discord url
```
2019-06-08 20:37:24 +00:00
anthonywritescode: !discord
2019-06-08 20:26:57 +00:00
anthonywritescodebot: We do have Discord, you are welcome to join: https://discord.gg/HxpQ3px
```