eggheads / eggdrop

The Eggdrop IRC Bot
GNU General Public License v2.0
509 stars 84 forks source link

Python unbind functionality #1650

Closed thommey closed 4 months ago

thommey commented 4 months ago
from eggdrop import bind
from eggdrop.tcl import putmsg

def test(nick, host, hand, chan, text):
    putmsg(chan, "it worked once and once only")
    xxx.unbind()

xxx = bind("pub", "-", "!test", test)