test.py 327 B

1234567891011121314151617
  1. #!/usr/bin/env python
  2. # coding: utf-8
  3. from wxbot import *
  4. class MyWXBot(WXBot):
  5. def handle_msg_all(self, msg):
  6. if msg['msg_type_id'] == 5:
  7. self.send_msg(msg['user_name'], 'hi')
  8. def main():
  9. bot = MyWXBot()
  10. bot.DEBUG = True
  11. bot.run()
  12. if __name__ == '__main__':
  13. main()