123456789101112131415161718192021222324252627282930313233 |
- from wxbot import *
- class MyWXBot(WXBot):
- def handle_msg_all(self, msg):
- if msg['msg_type_id'] == 4 and msg['content']['type'] == 0:
- self.send_msg_by_uid(u'hi', msg['user']['id'])
-
-
-
-
-
-
- def main():
- logging.basicConfig(level=logging.INFO)
- logging.getLogger("requests").setLevel(logging.WARNING)
- bot = MyWXBot()
- bot.DEBUG = True
- bot.conf['qr'] = 'png'
- bot.is_big_contact = False
- bot.run()
- if __name__ == '__main__':
- main()
|