我如何在python中编写一个简单的IRC bot?

时间:2010-06-03 17:39:08

标签: python sockets irc connect bots

我需要帮助编写一个只连接到频道的基本IRC机器人..是否有人能够解释我这个?我设法让它连接到IRC服务器但我无法加入频道并登录。我到目前为止的代码是:

import sockethost = 'irc.freenode.org'
port = 6667
join_sock = socket.socket()
join_sock.connect((host, port))
<code here> 

非常感谢任何帮助。

5 个答案:

答案 0 :(得分:47)

要连接到IRC频道,必须先将某些特定于IRC协议的命令发送到IRC服务器。

当你连接到服务器时,你必须等到服务器发送了所有数据(MOTD和诸如此类),然后你必须发送PASS命令。

PASS <some_secret_password>

以下是NICK命令。

NICK <username>

然后您必须发送USER命令。

USER <username> <hostname> <servername> :<realname>

两者都是强制性的。

然后您可能会看到来自服务器的PING消息,每次服务器向您发送PING消息时,您都必须使用PONG命令回复服务器。服务器也可能在NICK和USER命令之间请求PONG。

PING :12345678

使用PONG命令在“PING”后回复完全相同的文字:

PONG :12345678

PING之后的内容对我认为的每台服务器都是唯一的,因此请确保使用服务器发送给您的值进行回复。

现在您可以使用JOIN命令加入频道:

JOIN <#channel>

现在,您可以使用PRIVMSG命令向频道和用户发送消息:

PRIVMSG <#channel>|<nick> :<message>

退出

QUIT :<optional_quit_msg>

使用Telnet进行实验!从

开始
telnet irc.example.com 6667

有关更多命令和选项,请参阅IRC RFC

希望这有帮助!

答案 1 :(得分:16)

我用它作为MAIN IRC代码:

import socket
import sys

server = "server"       #settings
channel = "#channel"
botnick = "botname"

irc = socket.socket(socket.AF_INET, socket.SOCK_STREAM) #defines the socket
print "connecting to:"+server
irc.connect((server, 6667))                                                         #connects to the server
irc.send("USER "+ botnick +" "+ botnick +" "+ botnick +" :This is a fun bot!\n") #user authentication
irc.send("NICK "+ botnick +"\n")                            #sets nick
irc.send("PRIVMSG nickserv :iNOOPE\r\n")    #auth
irc.send("JOIN "+ channel +"\n")        #join the chan

while 1:    #puts it in a loop
   text=irc.recv(2040)  #receive the text
   print text   #print text to console

   if text.find('PING') != -1:                          #check if 'PING' is found
      irc.send('PONG ' + text.split() [1] + '\r\n') #returnes 'PONG' back to the server (prevents pinging out!)

然后,您可以开始设置如下命令:!hi <nick>

if text.find(':!hi') !=-1: #you can change !hi to whatever you want
    t = text.split(':!hi') #you can change t and to :)
    to = t[1].strip() #this code is for getting the first word after !hi
    irc.send('PRIVMSG '+channel+' :Hello '+str(to)+'! \r\n')

请注意,所有irc.send文字必须以PRIVMSGNOTICE + channel/user开头,文字应以{{1}开头}!

答案 2 :(得分:12)

将它基于twisted的IRC协议实现可能是最容易的。看看:http://github.com/brosner/bosnobot寻找灵感。

答案 3 :(得分:2)

这是MichaelvdNet's Post的扩展,支持其他一些内容:

  • 使用套接字的SSL包装器
  • 使用服务器密码验证
  • 使用nickserv密码验证
  • 使用非阻塞套接字,以允许其他事件触发
  • 将对文本文件的更改记录到频道

    #!/usr/local/bin/python
    
    import socket
    import ssl
    import time
    
    ## Settings
    ### IRC
    server = "chat.freenode.net"
    port = 6697
    channel = "#meLon"
    botnick = "meLon-Test"
    password = "YOURPASSWORD"
    
    ### Tail
    tail_files = [
        '/tmp/file-to-tail.txt'
    ]
    
    irc_C = socket.socket(socket.AF_INET, socket.SOCK_STREAM) #defines the socket
    irc = ssl.wrap_socket(irc_C)
    
    print "Establishing connection to [%s]" % (server)
    # Connect
    irc.connect((server, port))
    irc.setblocking(False)
    irc.send("PASS %s\n" % (password))
    irc.send("USER "+ botnick +" "+ botnick +" "+ botnick +" :meLon-Test\n")
    irc.send("NICK "+ botnick +"\n")
    irc.send("PRIVMSG nickserv :identify %s %s\r\n" % (botnick, password))
    irc.send("JOIN "+ channel +"\n")
    
    
    tail_line = []
    for i, tail in enumerate(tail_files):
        tail_line.append('')
    
    
    while True:
        time.sleep(2)
    
        # Tail Files
        for i, tail in enumerate(tail_files):
            try:
                f = open(tail, 'r')
                line = f.readlines()[-1]
                f.close()
                if tail_line[i] != line:
                    tail_line[i] = line
                    irc.send("PRIVMSG %s :%s" % (channel, line))
            except Exception as e:
                print "Error with file %s" % (tail)
                print e
    
        try:
            text=irc.recv(2040)
            print text
    
            # Prevent Timeout
            if text.find('PING') != -1:
                irc.send('PONG ' + text.split() [1] + '\r\n')
        except Exception:
            continue
    

答案 4 :(得分:0)

这将打开一个套接字,但你还需要告诉IRCd你是谁。我在perl很久以前做过类似的事情,我发现IRC RFC非常有用。

主要RFC:http://irchelp.org/irchelp/rfc/rfc.html

其他RFC:http://irchelp.org/irchelp/rfc/index.html