• Stars
    star
    465
  • Rank 94,287 (Top 2 %)
  • Language
    Python
  • License
    BSD 2-Clause "Sim...
  • Created over 7 years ago
  • Updated over 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

随时随地发送消息到微信

Wechat_Sender

随时随地发送消息到微信

http://wechat-sender.readthedocs.io/zh_CN/latest/

简介

wechat_sender 是基于 wxpytornado 实现的一个可以将你的网站、爬虫、脚本等其他应用中各种消息 (日志、报警、运行结果等) 发给到微信的工具

初衷

wxpy 基于 itchat 提供了较为完备的微信个人号 API ,而我想使用个人微信来接收我的网站的报警信息以及一些爬虫的结果,因此我写了这个工具。

安装

pip install wechat_sender

运行环境

Python 2.7 及以上 Python 3 及以上

使用

  1. 登录微信并启动 wechat_sender 服务.
   from wxpy import *
   from wechat_sender import *
   bot = Bot()
   listen(bot)
   # 之后 wechat_sender 将持续运行等待接收外部消息
  1. 在外部向微信发送消息.
   from wechat_sender import Sender
   Sender().send('Hello From Wechat Sender')
   # Hello From Wechat Sender 这条消息将通过 1 中登录微信的文件助手发送给你

如果你是 wxpy 的使用者,只需更改一句即可使用 wechat_sender:

例如这是你本来的代码:

# coding: utf-8
from __future__ import unicode_literals

from wxpy import *
bot = Bot('bot.pkl')

my_friend = bot.friends().search('xxx')[0]

my_friend.send('Hello WeChat!')

@bot.register(Friend)
def reply_test(msg):
    msg.reply('test')

bot.join()

使用 wechat_sender:

# coding: utf-8
from __future__ import unicode_literals

from wxpy import *
from wechat_sender import listen
bot = Bot('bot.pkl')

my_friend = bot.friends().search('xxx')[0]

my_friend.send('Hello WeChat!')

@bot.register(Friend)
def reply_test(msg):
    msg.reply('test')

listen(bot) # 只需改变最后一行代码

之后如果你想在其他程序或脚本中发送微信消息,只需要:

# coding: utf-8
from wechat_sender import Sender
Sender().send("test message")

文档

http://wechat-sender.readthedocs.io/zh_CN/latest/

交流

扫描二维码,验证信息输入 'wechat_sender' 或 '加群' 进入微信交流群

screenshot

TODO LIST

  • 多 receiver
  • log handler 支持
  • wxpy 掉线邮件通知
  • wxpy 掉线重连

历史

当前版本: 0.1.4

2017.06.12 0.1.4:

修复 Python 3 下 sender 发送成功后报错问题 #8

Sender().send_to 方法增加支持搜索群发送

Sender 支持指定多个 receivers

2017.06.07 0.1.3:

优化代码,完善文档、注释

2017.06.04 0.1.2:

修复 sender timeout 时间过短问题;

修复初始化 listen 无 receiver 报错问题

增加 LoggingSenderHandler, 提供 log handler 支持

2017.05.27 0.1.1:

增加多 receiver 支持;

2017.05.27 0.1.0:

增加延时消息;

增加周期消息;

增加指定接收方消息;

增加 wechat_sender 控制命令;

增加 wxpy 状态监测功能;

优化代码;

2017.05.17 0.0.2:

优化代码

2017.05.11 0.0.1:

发布初版

More Repositories

1

django-vue.js-blog

django-vue.js-blog
Python
262
star
2

leetcode_python

leetcode solution by python
Python
214
star
3

django-simple-serializer

serialize django data in a simple way
Python
155
star
4

hellspawn-hunter-weapp

hellspawn-hunter-weapp
JavaScript
77
star
5

HellspawnHunterBackend

HellspawnHunterBackend
JavaScript
50
star
6

django-angularjs-blog

A simple blog site powered by django + angularjs
Python
29
star
7

multithreading-spider

a simple demo use threading and queue get proxies from proxy sites
Python
18
star
8

django-redis-doc-chs

django-redis-doc-chs
JavaScript
17
star
9

DecentralAdPlatform

DecentralAdPlatform
JavaScript
8
star
10

simple_wsgi_server

simple_wsgi_server
Python
8
star
11

Alinone

combine
Python
3
star
12

tornado-chatdemo-with-room

tornado-chatdemo-with-room
Python
2
star
13

LeadYouFly

LeadYouFly
JavaScript
2
star
14

chat-room-websocket

chat-room-websocket
Python
1
star
15

Django-AngularJS2

Django-AngularJS2 Demo
JavaScript
1
star
16

mb_project

mb_project
Python
1
star
17

E-SITE

E-SITE
1
star
18

shadow

shadow
Python
1
star
19

smart_screen

Python
1
star
20

ESite

ESite
1
star
21

zhz

zhz
Python
1
star
22

show

show
HTML
1
star
23

Phorcys

Phorcys
Python
1
star
24

smart_clound

smart_clound
Python
1
star
25

wechat_server

wechat_server
JavaScript
1
star
26

learngit

learngit
1
star
27

lighthouse

lighthouse
JavaScript
1
star
28

pic

pic
1
star
29

lg_data

lg_data
Python
1
star
30

dogedoge

dogedoge
Python
1
star
31

tornado-layered-router

provide a layered url router like django router to tornado
Python
1
star
32

magic_conch

magic_conch
Shell
1
star
33

Riddle

Riddle
Python
1
star
34

HouseParty

HouseParty
JavaScript
1
star
35

riddle_common

riddle_common
Python
1
star
36

ooil

ooil
JavaScript
1
star
37

bit-sentry

bit-sentry
Python
1
star