pinhook/README.md

102 lines
4.1 KiB
Markdown
Raw Normal View History

2017-09-27 19:03:20 +00:00
# pinhook
[![Supported Python versions](https://img.shields.io/pypi/pyversions/pinhook.svg)](https://pypi.org/project/pinhook) [![Package License](https://img.shields.io/pypi/l/pinhook.svg)](https://github.com/archangelic/pinhook/blob/master/LICENSE) [![PyPI package format](https://img.shields.io/pypi/format/pinhook.svg)](https://pypi.org/project/pinhook) [![Package development status](https://img.shields.io/pypi/status/pinhook.svg)](https://pypi.org/project/pinhook) [![With love from tilde.town](https://img.shields.io/badge/with%20love%20from-tilde%20town-e0b0ff.svg)](https://tilde.town)
2018-02-07 21:05:11 +00:00
the pluggable python framework for IRC bots and Twitch bots
2017-09-28 13:34:07 +00:00
2017-10-02 17:28:39 +00:00
## Tutorial
### Installation
```
2017-10-31 17:27:33 +00:00
$ pip install pinhook
2017-10-02 17:28:39 +00:00
```
2018-02-06 00:38:53 +00:00
### Creating an IRC Bot
2017-10-02 17:28:39 +00:00
To create the bot, just create a python file with the following:
```python
2018-02-07 18:33:30 +00:00
from pinhook.bot import Bot
2017-10-02 17:28:39 +00:00
2018-02-07 18:33:30 +00:00
bot = Bot(
2017-10-02 17:48:46 +00:00
channels=['#foo', '#bar'],
nickname='ph-bot',
server='irc.freenode.net'
)
2017-10-02 17:28:39 +00:00
bot.start()
```
This will start a basic bot and look for plugins in the 'plugins' directory to add functionality.
2017-10-02 17:48:46 +00:00
Optional arguments are:
* `port`: choose a custom port to connect to the server (default: 6667)
* `ops`: list of operators who can do things like make the bot join other channels or quit (default: empty list)
* `plugin_dir`: directory where the bot should look for plugins (default: "plugins")
2018-01-10 22:42:55 +00:00
* `log_level`: string indicating logging level. Logging can be disabled by setting this to "off". (default: "info")
2018-02-06 00:38:53 +00:00
* `ns_pass`: this is the password to identify with nickserv
* `server_pass`: password for the server
* `ssl_required`: boolean to turn ssl on or off
### Creating a Twitch Bot
Pinhook has a baked in way to connect directly to a twitch channel
```python
2018-02-07 18:33:30 +00:00
from pinhook.bot import TwitchBot
2018-02-06 00:38:53 +00:00
2018-02-07 18:33:30 +00:00
bot = TwitchBot(
2018-02-06 00:38:53 +00:00
nickname='ph-bot',
channel='#channel',
token='super-secret-oauth-token'
)
bot.start()
```
This function has far less options, as the server, port, and ssl are already handled by twitch.
Optional aguments are:
* `ops`
* `plugin_dir`
* `log_level`
These options are the same for both IRC and Twitch
2017-10-02 17:48:46 +00:00
### Creating plugins
2019-01-24 17:46:44 +00:00
There are two types of plugins, commands and listeners. Commands only activate if a message starts with the command word, while listeners receive all messages and are parsed by the plugin for maximum flexibility.
In your chosen plugins directory ("plugins" by default) make a python file with a function. You use the `@pinhook.plugin.register` decorator to create command plugins, or `@pinhook.plugin.listener` to create listeners.
2017-10-02 17:48:46 +00:00
The function will need to be structured as such:
```python
import pinhook.plugin
@pinhook.plugin.register('!test')
2017-10-10 15:56:41 +00:00
def test_plugin(msg):
message = '{}: this is a test!'.format(msg.nick)
2017-10-02 17:48:46 +00:00
return pinhook.plugin.message(message)
```
2017-10-10 15:56:41 +00:00
The function will need to accept a single argument in order to accept a `Message` object from the bot.
2017-10-02 17:48:46 +00:00
2017-10-10 15:56:41 +00:00
The `Message` object has the following attributes:
2017-10-02 17:48:46 +00:00
* `cmd`: the command that triggered the function
* `nick`: the user who triggered the command
* `arg`: all the trailing text after the command. This is what you will use to get optional information for the command
2017-10-10 15:56:41 +00:00
* `channel`: the channel where the command was initiated
* `ops`: the list of bot operators
* `botnick`: the nickname of the bot
2018-01-10 22:42:55 +00:00
* `logger`: instance of `Bot`'s logger
2017-10-02 17:48:46 +00:00
It also contains the following IRC functions:
* `privmsg`: send a message to an arbitrary channel or user
* `action`: same as privmsg, but does a CTCP action. (i.e., `/me does a thing`)
* `notice`: send a notice
**OR**
The plugin function can return one of the following in order to give a response to the command:
2017-10-02 18:25:59 +00:00
* `pinhook.plugin.message`: basic message in channel where command was triggered
* `pinhook.plugin.action`: CTCP action in the channel where command was triggered (basically like using `/me does a thing`)
2017-10-02 18:19:54 +00:00
## Examples
There are some basic examples in the `examples` directory in this repository.
2019-01-24 17:46:44 +00:00
Here is a list of live bots using pinhook:
* [pinhook-tilde](https://github.com/archangelic/pinhook-tilde) - fun bot for tilde.town
* [adminbot](https://github.com/tildetown/adminbot) - admin helper bot for tilde.town, featuring some of the ways you can change the Bot class to suit your needs