vote up 1 vote down star
2

I want to build a bot that basically does the following:

  1. Listens to the room and interacts with users and encourages them to PM the bot.
  2. Once a user has PMed the bot engage with the client using various AI techniques.

Should I just use the IRC library or Sockets in python or do I need more of a bot framework.

What would you do?

Thanks!

Here is the code I'm currently using, however, I haven't gotten it to work.

#!/usr/bin/python 
import socket
network = 'holmes.freenet.net'
port = 6667
irc = socket.socket ( socket.AF_INET, socket.SOCK_STREAM )
irc.connect ( ( network, port ) )
irc.send ( 'NICK PyIRC\r\n' )
irc.send ( 'USER PyIRC PyIRC PyIRC :Python IRC\r\n' )
irc.send ( 'JOIN #pyirc\r\n' )
irc.send ( 'PRIVMSG #pyirc :Can you hear me?\r\n' )
irc.send ( 'PART #pyirc\r\n' )
irc.send ( 'QUIT\r\n' )
irc.close()
flag

I'm close to finishing an IRC package for Python which might be able to help you out. I'll have it available here: ircutils.evanfosmark.com – Evan Fosmark Jul 22 at 7:42
Awesome! Thanks! I'll keep this in mind! – Noah Clark Jul 22 at 14:05

3 Answers

vote up 4 vote down check

Use Twisted or Asynchat if you want to have a sane design. It is possible to just do it with sockets but why bother doing it from scratch?

link|flag
I just checked out Twisted again and found it under the IM section. Thanks for the link. What exactly does the Asynchat help with? – Noah Clark Jul 8 at 22:46
Networking code. – Unknown Jul 9 at 1:55
vote up 0 vote down

I made a (very crappy, and for a long time being refactored) IRC bot using irclib. The documentation is next-to-nothing, but it gets rid of making you have to do all that socket connecting and such, which is stuff I really don't want to deal with. To each his own, though.

link|flag
vote up 2 vote down

If you want to have AI techniques involved, then I suggest you look at the AIML package for Python. It is the same technology that ALICE bots are done in.

link|flag
Thanks for the heads up on the AIML package! – Noah Clark Jul 8 at 22:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.