使用wxpy常见异常(一)

AttributeError: 'Chats' object has no attribute 'send'

出现以上问题,可能与你的查找好友的名字有关,试着写一下两行语句:

my_friends = bot.friends()
print(my_friends)

看看能不能出来所有的好友

假如可以,就是你的程序是没有问题的,是你写的好友名字不对;

可以写下一下格式:

my_friend = bot.friends().search('zoey')[0]             ##这里的zoey是你好友的昵称;
my_friend.send('Hello, world!')

except FileNotFoundError as e:

NameError: global name 'FileNotFoundError' is not defined

出现以上异常,可能与文件权限,缓存文件有关

bot=Bot(console_qr=True,cache_path="logoo.pkl")       ##logoo.pkl是缓存的文件名

1.可以试试把显示的文件加上权限;

2.可以试试把缓存文件删掉或者内容清空;

 

q:577804473

你可能感兴趣的:(异常)