the pluggable python framework for IRC bots and Twitch bots
Go to file
Mallory Hancock 074dc83861 Update to version 0.1.0 2017-10-02 11:01:51 -07:00
examples update plugin example 2017-09-28 06:33:28 -07:00
pinhook add cmd to kwargs given to plugins 2017-09-28 09:35:46 -07:00
.gitignore Initial commit 2017-09-27 12:03:20 -07:00
LICENSE Initial commit 2017-09-27 12:03:20 -07:00
README.md complete tutorial 2017-10-02 10:48:46 -07:00
setup.py Update to version 0.1.0 2017-10-02 11:01:51 -07:00

README.md

pinhook

a pluggable irc bot framework in python

Currently in very early stages and may change wildly until final release

Tutorial

Installation

$ pip install git+git://github.com/archangelic/pinhook.git

Creating the Bot

To create the bot, just create a python file with the following:

import pinhook.bot

bot = pinhook.bot.Bot(
    channels=['#foo', '#bar'],
    nickname='ph-bot',
    server='irc.freenode.net'
)
bot.start()

This will start a basic bot and look for plugins in the 'plugins' directory to add functionality.

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")

Creating plugins

In your chosen plugins directory ("plugins" by default) make a python file with a function. You can use the @pinhook.plugin.register decorator to tell the bot the command to activate the function.

The function will need to be structured as such:

import pinhook.plugin

@pinhook.plugin.register('!test')
def test_plugin(**kwargs):
    nick = kwargs['nick']
    message = '{}: this is a test!'.format(nick)
    return pinhook.plugin.message(message)

The function will need to accept **kwargs in order to gather information from the bot.

Keyword arguments currently passed to the plugin:

  • 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