예제 #1
0
파일: irc.py 프로젝트: cdrttn/fragmon
def kick(chan, nick, comment=""):
    fi.quote('kick', chan, nick, comment)
예제 #2
0
파일: irc.py 프로젝트: cdrttn/fragmon
def away(text=""):
    fi.quote('away', text)
예제 #3
0
파일: irc.py 프로젝트: cdrttn/fragmon
def topic(channel, top=""):
    fi.quote('topic', channel, top)
예제 #4
0
파일: irc.py 프로젝트: cdrttn/fragmon
def invite(nick, chan):
    fi.quote('invite', nick, chan)
예제 #5
0
파일: irc.py 프로젝트: cdrttn/fragmon
def part(channel):
    fi.quote('part', channel)
예제 #6
0
파일: irc.py 프로젝트: cdrttn/fragmon
def mode(channel, m, *args):
    fi.quote('mode', m, *args)
예제 #7
0
파일: irc.py 프로젝트: cdrttn/fragmon
def join(channel, passwd=""):
    fi.quote('join', channel, passwd)
예제 #8
0
파일: irc.py 프로젝트: cdrttn/fragmon
def nick(n):
    fi.quote('nick', n)
예제 #9
0
파일: irc.py 프로젝트: cdrttn/fragmon
def ctcp2(target, cmd, args):
    cmd = mk_ctcp_req2(cmd, args)
    fi.quote('notice', target, cmd)
예제 #10
0
파일: irc.py 프로젝트: cdrttn/fragmon
def notice(target, msg):
    fi.quote('notice', target, msg)
예제 #11
0
파일: irc.py 프로젝트: cdrttn/fragmon
def msg(target, msg):
    fi.quote('privmsg', target, msg)