Willie Bot Job() 和 JobSchedular() AttributeError
Willie Bot Job() and JobSchedular() AttributeError
正在尝试使用 Willie 的作业调度程序 bot.say('Hello world!')
每 2 秒一次...不知道我是不是做错了什么或者 Job()
和 JobSchedular()
是不是' t 意味着 public api 的。
http://willie.dftba.net/docs/#willie.bot.Willie.JobScheduler
我从 bob.run()
得到 AttributeError: 'function' object has no attribute 'thread'
:
def dunno(bot):
bot.say('Hello, world!')
@willie.module.commands('try')
def run_it(bot, trigger):
bot.say('trying')
jobb = bot.Job(2, dunno)
bob = bot.JobScheduler(bot)
bob.add_job(jobb)
bob.run()
正确使用的工具是 Willie 的 interval。
正在尝试使用 Willie 的作业调度程序 bot.say('Hello world!')
每 2 秒一次...不知道我是不是做错了什么或者 Job()
和 JobSchedular()
是不是' t 意味着 public api 的。
http://willie.dftba.net/docs/#willie.bot.Willie.JobScheduler
我从 bob.run()
得到 AttributeError: 'function' object has no attribute 'thread'
:
def dunno(bot):
bot.say('Hello, world!')
@willie.module.commands('try')
def run_it(bot, trigger):
bot.say('trying')
jobb = bot.Job(2, dunno)
bob = bot.JobScheduler(bot)
bob.add_job(jobb)
bob.run()
正确使用的工具是 Willie 的 interval。