Пример #1
0
    def run(self):
        window_id = sendkey.findwindow()
        
        nick = "dodo0822"
        channel = "#dodo0822"

        password = raw_input("Enter PW: ")

        server = "irc.twitch.tv"

        irc = socket.socket()
        irc.connect((server, 6667))

        irc.send("PASS " + password + "\n")
        irc.send("NICK " + nick + "\n")
        irc.send("JOIN " + channel + "\n")


        while not self._stop:
            line = irc.recv(1024)
            tokens = line.split(':')
            if len(tokens) > 2:
                if tokens[2] != "":
                    c = tokens[2].split('\n')[0]
                    print "Send to " + window_id + ": " + c
                    status = sendkey.sendkey(c, window_id)
                    if status:
                        user = tokens[1].split('!')[1].split('@')[0]
                        app.updateText(user + " : " + c[0:len(c)-1])
Пример #2
0
def paste_event():
    sendkey.sendkey("Ctrl V")
Пример #3
0
def copy_event():
    sendkey.sendkey("Ctrl C")
Пример #4
0
def paste_event():
	sendkey.sendkey("Ctrl V")
Пример #5
0
def copy_event():
	sendkey.sendkey("Ctrl C")