irc3.plugins.quakenet QuakeNet authorizationΒΆ

Plugin supports both simple and challenge based authorization. Challenge based auth is used by default, since it is more secure than simple. Also, plugin can hide your IP after authorization by applying +x mode.

Usage:

>>> config = ini2config("""
... [bot]
... includes =
...     irc3.plugins.quakenet
... [quakenet]
... user = login
... password = passw
... # optional, false by default
... hidehost = true
... # optional, true by default
... challenge_auth = true
... """)
>>> bot = IrcBot(**config)