Skip to main content

A fully functioning multi-threaded IRC client.

Project description

This is a multi-threaded IRC bot that was designed to connect to multiple networks and load multiple modules. An example bot would look like:

#!/usr/bin/env python
from __future__ import unicode_literals

from mtirc import bot
from mtirc import settings

config = settings.config
config['nick'] = 'nick'

def thing(**kw):
    if kw['text'].startswith('!whoami'):
        kw['bot'].queue_msg(kw['channel'], 'You are {0} with the host {1}.'.format(
            kw['sender'].nick, kw['sender'].host))
    return True

config['modules']['whoami'] = thing

b = bot.Bot(config)
b.run()

Features

  • Nearly every thing is configurable

  • Settings can be set for an individual connection or globally

  • Can use as many parse threads as set in config

  • Will attempt to reconnect if disconnected

  • Will disable modules after too many exceptions

  • More to come!

License

  • Released under the MIT License

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

mtirc-0.2.1.tar.gz (5.7 kB view details)

Uploaded Source

File details

Details for the file mtirc-0.2.1.tar.gz.

File metadata

  • Download URL: mtirc-0.2.1.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for mtirc-0.2.1.tar.gz
Algorithm Hash digest
SHA256 06cbcbfca9217606b55e084dd693546bc4321eb1b24c82e08735320e91d17f2f
MD5 8ff2ad2aad94bdd7d37b325802133bac
BLAKE2b-256 75fa57f9f21eacb1709aff028d764622e21e20c87952adf58338ea62852b1ff0

See more details on using hashes here.

Provenance

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