Example #1
0
def main():
  config = boat.BoatConfig()
  config.nickname = 'nullbutt'
  config.channels = ['#nullren', '#nullboat']

  # callbacks
  config.onmsg = onmsg

  boat.run(config)
Example #2
0
def main():
  config = boat.BoatConfig()
  config.nickname = 'nullboat'
  config.channels = ['#stapler']
  config.server = 'irc.freenode.net'

  # callbacks
  config.onmsg = onmsg

  boat.run(config)