Skip to main content

A simple API for IRC networks

Project description

prestige_irc

This module is a simple API for IRC networks.

Installation

pip

pip install prestige_irc

or

python -m pip install prestige_irc

Manually

Clone this repository into your repo, and install setup.py:

git clone https://github.com/avahe-kellenberger/prestige_irc.git
cd prestige_irc
python setup.py install

You should now be able to import modules, e.g. from prestige_irc.commands import Commands

API Usage

Creating a connection

Initialize a connection to an IRC network by creating a new IRCConnection, and invoking the connect function.

irc_connection = IRCConnection("YourBotsNick")
irc_connection.connect(ip_address="irc.freenode.net")

Listeners:

Add message listeners to the IRCConnection object.

def receive(msg):
    if msg.command == Commands.PRIVMSG:
        print(msg.text)

listener = MessageListener(message_filter=lambda msg: True, receive=receive)
irc_connection.add_listener(listener)

Attach a listener for server messages, and add filters for said message objects. Filters are invoked by irc.MessageListener#accept, which is automatically called when an IRCConnection receieves a message. When this method returns true, irc.MessageListener#receive is invoked.

See the code documentation for details.

Sending Messages:

Most commands are supported by the API by default, and are placed in IRCConnection. Commands are prefixed with cmd_, such as cmd_privmsg, cmd_join, and cmd_kick.

These preset commands will handle the message formatting that the IRC server requires, with documentation reflecting the RFC. Commands that are not yet supported by default can be sent manually with IRCConnection.send_command and/or IRCConnection.send.

Speculative Updates:

In the future, this module may support every RFC specified IRC command, if it becomes widely requested.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

prestige_irc-0.0.1.post1.tar.gz (10.5 kB view hashes)

Uploaded Source

Built Distribution

prestige_irc-0.0.1.post1-py3-none-any.whl (18.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page