Esempio n. 1
0
def kick(chan, nick, comment=""):
    fi.quote('kick', chan, nick, comment)
Esempio n. 2
0
def away(text=""):
    fi.quote('away', text)
Esempio n. 3
0
def topic(channel, top=""):
    fi.quote('topic', channel, top)
Esempio n. 4
0
def invite(nick, chan):
    fi.quote('invite', nick, chan)
Esempio n. 5
0
def part(channel):
    fi.quote('part', channel)
Esempio n. 6
0
def mode(channel, m, *args):
    fi.quote('mode', m, *args)
Esempio n. 7
0
def join(channel, passwd=""):
    fi.quote('join', channel, passwd)
Esempio n. 8
0
def nick(n):
    fi.quote('nick', n)
Esempio n. 9
0
def ctcp2(target, cmd, args):
    cmd = mk_ctcp_req2(cmd, args)
    fi.quote('notice', target, cmd)
Esempio n. 10
0
def notice(target, msg):
    fi.quote('notice', target, msg)
Esempio n. 11
0
def msg(target, msg):
    fi.quote('privmsg', target, msg)