脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - Python实现个人微信号自动监控告警的示例

Python实现个人微信号自动监控告警的示例

2021-07-30 00:10Sunny_Future Python

今天小编就为大家分享一篇Python实现个人微信号自动监控告警的示例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

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

运行环境

Python 2.7 及以上 Python 3 及以上

实现过程

安装 pip 工具

  1. [root@server1 ~]# wget https://bootstrap.pypa.io/get-pip.py
  2. [root@server1 ~]# python get-pip.py

Python实现个人微信号自动监控告警的示例

pip 安装模块

  1. ##安装依赖软件
  2. [root@server1 ~]# yum install -y gcc python-devel
  3. ##安装
  4. [root@server1 ~]# pip install wechat_sender

Web登录微信发送消息

安装web服务器

  1. [root@server1 ~]# yum install -y httpd
  2. [root@server1 ~]# systemctl start http
  3. [root@server1 ~]# systemctl stop firewalld
  1. [root@server1 ~]# cat /var/www/html/index.html
  2. <html>
  3. <head><meta http-equiv="refresh" content="2"></head>
  4. <style>
  5. body {
  6. width: 35em;
  7. margin: 0 auto;
  8. font-family: Tahoma, Verdana, Arial, sans-serif;
  9. }
  10. </style>
  11. <body>
  12. <img src="/qr.png">
  13. </body>
  14. </html>

python脚本代码

  1. [root@server1 ~]# cat /var/www/html/sender.py
  2. #!/bin/bash/env python
  3. #coding:utf-8
  4.  
  5. from wxpy import *
  6. from wechat_sender import *
  7. from wechat_sender import Sender
  8.  
  9. #bot = Bot() ##windows直接扫
  10. #下面这个是服务器版(Linux)
  11. #bot = Bot(qr_path="qr.png")
  12. #避免重复登录重复扫二维码
  13. bot = Bot(qr_path="qr.png",cache_path=True)
  14. ##通过文件助手给登录的微信号发消息
  15. bot.file_helper.send('Hello world!')

web登录微信

  1. ##执行python脚本,占用终端,web登录后会有提示
  2. [root@server1 ~]# cd /var/www/html/
  3. [root@server1 ~]# python sender.py
  4. Getting uuid of QR code.
  5. Downloading QR code.
  6. xdg-open: no method available for opening 'qr.png'
  7. Please scan the QR code to log in.

另一方面,打开浏览器输入 ip or localhost,微信扫一扫

Python实现个人微信号自动监控告警的示例

微信登录后,终端释放,提示成功,消息同时发送,并且web二维码失效

  1. Login successfully as someone

微信点击确认

Python实现个人微信号自动监控告警的示例

查看手机助手,消息已经收到!

Python实现个人微信号自动监控告警的示例

监控80端口,自动告警

若是web服务也是80端口,请先登录成功后,如下操作。

shell脚本

  1. [root@server1 ~]# cat /var/www/html/check_80.sh
  2. #!/bin/sh
  3.  
  4. x=$(netstat -antlp | grep '\<80\>'|awk -F' ' '{print $4}'|awk -F: '{print $2}')
  5.  
  6. if [ "$x" != 80 ];then
  7. python /var/www/html/check_80.py &
  8. else
  9. python /var/www/html/check01_80.py &
  10. fi
  11. ##添加执行权限
  12. [root@server1 ~]# chomd +x /var/www/html/check_80.sh
  1. [root@server1 ~]# cat /var/www/html/check01_80.py
  2. #!/bin/sh/env python
  3. #coding:utf-8
  4.  
  5. from wxpy import *
  6. from wechat_sender import *
  7. from wechat_sender import Sender
  8.  
  9. bot = Bot(qr_path="qr.png",cache_path=True)
  10. ##通过文件助手给登录的微信号发消息
  11. bot.file_helper.send('port 80 nice!')
  1. [root@server1 ~]# cat /var/www/html/check_80.py
  2. #!/bin/sh/env python
  3. #coding:utf-8
  4.  
  5. from wxpy import *
  6. from wechat_sender import *
  7. from wechat_sender import Sender
  8.  
  9. bot = Bot(qr_path="qr.png",cache_path=True)
  10. ##通过文件助手给登录的微信号发消息
  11. bot.file_helper.send('port 80 error!')
  1. [root@server1 ~]# cat /mnt/check.sh
  2. #!/bin/sh
  3.  
  4. cd /var/www/html
  5. sh check_80.sh
  1. [root@server1 ~]# chmod +x /mnt/check.sh

测试脚本

1.httpd 服务开启时,端口 80 存在

  1. [root@server1 ~]# sh /mnt/check.sh

Python实现个人微信号自动监控告警的示例

2.httpd 服务关闭后,端口 80 不存在

  1. [root@server1 ~]# systemctl stop httpd
  1. [root@server1 ~]# sh /mnt/check.sh

Python实现个人微信号自动监控告警的示例

3.httpd 服务再次开启,端口 80 存在

  1. [root@server1 ~]# systemctl start httpd
  1. [root@server1 ~]# sh /mnt/check.sh

Python实现个人微信号自动监控告警的示例

添加任务计划自动监控进行告警

  1. [root@server1 ~]# crontab -e
  2. * 1 * * * sh /mnt/check.sh

投入使用

添加任务计划后,妥善修改脚本,避免频繁告警。

以上这篇Python实现个人微信号自动监控告警的示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们。

原文链接:https://blog.csdn.net/Sunny_Future/article/details/81545327

延伸 · 阅读

精彩推荐