kylef / irctk

A Python IRC client library

Home Page:http://irctk.readthedocs.org/en/latest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

irc-toolkit

An IRC client toolkit in Python.

Installation

$ pip install irc-toolkit

Usage

There are a few parts of irc-toolkit, depending on your goals. irctk.Message offers IRC message parsing, irctk.Client offers an IRC client which handles connection/channel/nick tracking giving you a callback based interface for IRC messages, for example:

#!/usr/bin/env python

import asyncio
import logging

import irctk


class Bot:
    async def connect(self, hostname, port=6697, secure=True):
        client = irctk.Client()
        client.delegate = self
        await client.connect(hostname, port, secure)

    def irc_registered(self, client):
        client.send('MODE', client.nick, '+B')
        client.send('JOIN', '#test')

    def irc_private_message(self, client, nick, message):
        if message == 'ping':
            client.send('PRIVMSG', nick, 'pong')

    def irc_channel_message(self, client, nick, channel, message):
        if message == 'ping':
            client.send('PRIVMSG', channel, f'{nick}: pong')
        elif message == 'quit':
            client.quit()


if __name__ == '__main__':
    # Enable debug logging
    logging.basicConfig(level='DEBUG')

    bot = Bot()

    loop = asyncio.get_event_loop()
    loop.create_task(bot.connect('irc.darkscience.net'))
    loop.run_forever()

About

A Python IRC client library

http://irctk.readthedocs.org/en/latest/

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 100.0%