tildeirc/bot.py

29 lines
752 B
Python

import socket
import time
class Bot:
def __init__(self, server, port, user):
global s
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((server, int(port)))
b = s.recv(4096)
s.send("PONG :"+b.split(" ")[1])
s.send("USER %s * 3 :hello\n" % user)
s.send("NICK %s\n" % user)
def read(self):
while 1:
x = s.recv(4096)
print x
def NickServAuth(self, email, password):
s.send("PRIVMSG NickServ REGISTER %s %s" % password, email)
time.sleep(1)
print "[*] registering user"
def send(self, command):
s.send(command)
def joinchannel(self, channel):
s.send("JOIN %s\n" % channel)