Skip to content

Instantly share code, notes, and snippets.

@youfou
Last active September 6, 2017 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save youfou/8d2ac4df7d9878783a4669d3af385280 to your computer and use it in GitHub Desktop.
Save youfou/8d2ac4df7d9878783a4669d3af385280 to your computer and use it in GitHub Desktop.
发送名片
#!/usr/bin/env python3
# coding: utf-8
import logging
from wxpy import *
logging.basicConfig(level=logging.INFO)
bot = Bot(True)
card_msg = None
no_card_notice = '名片尚未确认,请手动发送到文件传输助手'
# 第一步: 手动向自己的文件传输助手发送一次所需的名片
@bot.register(bot.file_helper, CARD, except_self=False)
def get_card_msg_to_send(msg):
global card_msg
logging.info('获得了名片: {}'.format(msg.card.name))
card_msg = msg
# 第二步: 转发名片 (请根据自己的需求定义)
@bot.register(Friend, TEXT)
def send_card(msg):
# 若好友消息包含"名片",则回复名片
if '名片' in msg.text:
if card_msg:
# 发送名片
# 文档: http://wxpy.readthedocs.io/zh/latest/messages.html#wxpy.Message.forward
card_msg.forward(
msg.chat,
prefix='我来找找~',
suffix='你要的名片是这张吗?'
)
logging.info('发送了名片: {}'.format(card_msg.card.name))
else:
logging.warning(no_card_notice)
logging.info(no_card_notice)
embed()
@zhangyuteng
Copy link

使用new-core分支,无法收到回复。请问这个功能是不是还没完成?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment