public
Description: A purely Python implemented IRC bot framework.
Clone URL: git://github.com/brosner/bosnobot.git
Use settings.BOT_CHANNELS by default. Still not 100% sure this will be how 
things end up.
brosner (author)
Wed Jul 30 20:11:41 -0700 2008
commit  b789a4e5eaa280df66566b9c2ffed9fc00b25299
tree    0b8097531759381f13d1a3331554903160955f6f
parent  5d5a6e118e3f4fa60361d837f7e3ed7be67b9b5e
...
59
60
61
 
 
 
62
63
64
...
59
60
61
62
63
64
65
66
67
0
@@ -59,6 +59,9 @@ class IrcProtocol(irc.IRCClient):
0
 class IrcBot(object):
0
     def __init__(self, protocol):
0
         self.protocol = protocol
0
+ self.channels = []
0
+ for channel in settings.BOT_CHANNELS:
0
+ self.channels.append(Channel(channel))
0
     
0
     def initialize(self):
0
         pass

Comments

    No one has commented yet.