码迷,mamicode.com
首页 > 编程语言 > 详细

python小记

时间:2017-07-03 16:24:44      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:arc   div   pytho   nbsp   other   reg   install   bug   微信   

最近有匹骚猪用微信骚扰我,我很是气愤,

自学一波脚本:

学习目的:用脚本回击回去,通过py写一个脚本,一次性给别人发n条消息;

 

 

  mac上自学python;

brew install python3(自动安装pip3)

可以通过命令查看  brew info python3

 

安装库

pip3 install -U wxpy

 

一切准备就绪,下面写个脚本:

vi a.py

#!/usr/bin/python
#coding=utf-8

from wxpy import *

bot = Bot()

tuling = Tuling(api_key=8c02ae3f727a48669c52ca6ed5db2c48)

@bot.register()
def print_others(msg):
 print(msg)


my_friend = bot.friends().search(u陈泽勇, sex=MALE,)[0]
#group = bot.groups().search(u‘debug‘)[0]

#@bot.register(group)
#def reply_gua_pi(msg):
# print(msg)
# print(tuling.do_reply(msg))


for i in range(0,100):
 my_friend.send(u啪啪啪)



#for member in group:
# print(member)
#print(group)
#print(my_friend)
embed()

 

输入命令运行即可: 

python3 a.py

 

 

 

over。。。

python小记

标签:arc   div   pytho   nbsp   other   reg   install   bug   微信   

原文地址:http://www.cnblogs.com/chenzeyong/p/7111171.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!