python微信库wxpy_【python】使用wxpy库打造撩妹神器

github仓库:youfou/wxpy​github.comv2-923000b6c35319a26e5cb1722e30e3b9_ipico.jpg

文档地址:机器人对象 - wxpy 0.3.9.8 文档​wxpy.readthedocs.io

简介:

wxpy 在 itchat 的基础上,通过大量接口优化提升了模块的易用性,并进行丰富的功能扩展。

一、安装

pip install wxpy

二、简单介绍

# 导入模块

from wxpy import *

# 初始化机器人,扫码登陆

bot = Bot()

# 搜索名称含有 "老范" 的男性上海好友

my_friend = bot.friends().search('老范', sex=MALE, city="上海")[0]

三、完整代码

from __future__ import unicode_literals

from threading import Timer

from wxpy import *

import requests

bot = None

def get_news():

#获取一个连接中的内容

url = "http://open.iciba.com/dsapi/"

r = requests.get(url)

print(r.json())

contents = r.json()['content']

translation = r.json()['translation']

return contents, translation

def login_wechat():

global bot

bot = Bot() # window

# bot = Bot(console_qr=2,cache_path="botoo.pkl")#linux环境上使用

def send_news():

if bot == None:

login_wechat()

try:

my_friend = bot.friends().search(u'老范')[0] # 老范 表示微信昵称

my_friend.send(get_news()[0])

my_friend.send(get_news()[1][5:])

my_friend.send(u"咦?我是自动人!!")

t = Timer(5, send_news) #5是秒数:5秒发送一次

t.start()

except:

print(u"失败!")

if __name__ == "__main__":

send_news()

# print(get_news()[0])

效果

番外:

可以把秒数改大一点。每天给妹子发一条你想表达的话,嘤嘤嘤。。。。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值