XZZ/test.py
2020-02-28 15:42:37 +08:00

21 lines
No EOL
565 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from worker import emmm
print("开始测试咯,在 '>' 后面输入n你的消息不用加 '/'")
inp = input('>')
while(inp):
parms = str.split(inp)
worker = parms[0]
try:
package = __import__(name='worker.'+ worker, fromlist=worker)
Ans_ = getattr(package,'Ans')
except:
Ans_ = emmm.Ans
try:
Ans = Ans_(parms,uid=0,gid=0,role='owner',raw_msg={'message':'/' + inp})
Message = Ans.GETMSG()
except Exception as e:
Message = ' Error:\n'+str(e)
print(Message)
inp = input('>')