a pluggable irc bot framework in python
Project description
the pluggable python framework for IRC bots and Twitch bots
Tutorial
Installation
$ pip install pinhook
Creating an IRC Bot
To create the bot, just create a python file with the following:
from pinhook.bot import Bot
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”)
log_level: string indicating logging level. Logging can be disabled by setting this to “off”. (default: “info”)
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
from pinhook.bot import TwitchBot
bot = TwitchBot(
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
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(msg):
message = '{}: this is a test!'.format(msg.nick)
return pinhook.plugin.message(message)
The function will need to accept a single argument in order to accept a Message object from the bot.
The Message object has the following attributes:
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
channel: the channel where the command was initiated
ops: the list of bot operators
botnick: the nickname of the bot
logger: instance of Bot’s logger
The plugin function must return one of the following in order to give a response to the command:
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)
Examples
There are some basic examples in the examples directory in this repository.
For a live and maintained bot running the current version of pinhook see pinhook-tilde.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pinhook-1.5.2.tar.gz.
File metadata
- Download URL: pinhook-1.5.2.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.9.1 pkginfo/1.4.1 requests/2.21.0 setuptools/38.2.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d096e030288514a5769f266e978c11f595310ae7087845fcc260e0b7901bac27
|
|
| MD5 |
1a26a0433d9d99cd7f7a4ae2547f09c1
|
|
| BLAKE2b-256 |
cd0994d8d3c8451759a3ebec253c2b04e8819a22d225f62aed9bb58a84a6d31b
|
File details
Details for the file pinhook-1.5.2-py2.py3-none-any.whl.
File metadata
- Download URL: pinhook-1.5.2-py2.py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.9.1 pkginfo/1.4.1 requests/2.21.0 setuptools/38.2.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3070519ff46e989cdd2c62b491062ea099526ebb34acda6e00beed8d09a1ce9a
|
|
| MD5 |
9e13ceb55652f0b92d7d083799a7bfe4
|
|
| BLAKE2b-256 |
c4872b0f87022798672697f1e26195e58b5d0ee36bd0565b83a0f802c1063070
|