예제 #1
0
파일: main.py 프로젝트: ctoneal/chatbot
# main.py
# Christopher O'Neal
#
# Main loader program for IRC bot
#


import time
from bot import bot

if __name__ == '__main__':
    bot = bot()
    try:
        bot.connect()
        bot.flush()
        bot.mainloop()
    except:
        print "Interrupt"
        bot.disconnect()
        raise
    
예제 #2
0
파일: runbot.py 프로젝트: gvx/kibot
from bot import bot
import time

bot.connect('irc.ai.ru.nl', 6667)
time.sleep(2)
bot.join('#kiru')
bot.wait()

예제 #3
0
파일: main.py 프로젝트: stevommmm/ircp
#!/bin/python

# Import plugins
from bot import bot
from pl import *


if __name__ == '__main__':
	try:
		bot.connect('irc.gamesurge.net', 6667, 'eri', ['#redditmc', '#llama'])
		bot.mainloop()
	except KeyboardInterrupt:
		bot.quit('Got Ctrl + C')
	except Exception as e:
		print e
		bot.quit(repr(e))