
Python
Sunraych
这个作者很懒,什么都没留下…
展开
-
利用树莓派制作人体感应监控器
转载请注明出处,谢谢。设备:树莓派3B 1台CPI接口摄像头 1个HC-SR501红外人体感应模块 1个公对母杜邦线 3根第一步:将摄像头安装到树莓派上。在树莓派上设置摄像头为可用:输入命令:sudo raspi-config第二步:将红外人体感应模块插上杜邦线,一共三根GPIO针脚,中间的为信号线,左右两侧分别为5V原创 2017-05-18 15:34:30 · 19407 阅读 · 4 评论 -
python文件&字符串MD5计算
def textMD5(source): m2 = hashlib.md5() m2.update(source.encode('utf-8')) return m2.hexdigest()def fileMD5(file_path): md5_l = hashlib.md5() with open(file_path, mode="rb") as f: by = f.read() md5_l.update(by) return.原创 2022-02-10 17:01:13 · 728 阅读 · 0 评论 -
企业微信机器人python调用封装
class WxBot: def __init__(self, bot_id): self.bot_url = 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=' + bot_id def sendTextMsg(self, content, mentioned_list=None, mentioned_mobile_list=None): if mentioned_mobile_list is .原创 2022-02-10 16:32:51 · 711 阅读 · 0 评论 -
通过企业微信和微信打造免费的消息提醒Push机制
通过企业微信和微信的绑定关系实现微信的消息推送提醒Push机制原创 2022-02-08 17:12:34 · 1635 阅读 · 0 评论 -
解决Jenkins中控制台python输出中文报错问题
写python脚本使用print()函数时在jenkins服务器上输出中文时会报错:UnicodeEncodeError: 'ascii' codec can't encode characters in position 29-32: ordinal not in range(128)Build step 'Execute shell' marked build as failure由于python默认支持ascii,中文不在ascii范围内则会报错。网上查阅了多种方法,均未成功。1.原创 2021-02-20 13:59:35 · 994 阅读 · 0 评论 -
Python数据库操作简易类
import pymysqldef connect_db(db): db = pymysql.connect(host='xx.xx.xx.xx', port=3307, user='xxxx', passwd='xxxx', db=db, charset='utf8') return dbdef execute_sql(db, sql): cursor = db.cursor() cursor.execute(sql) db.commit() .原创 2020-07-27 17:16:00 · 227 阅读 · 0 评论 -
Python获取本机ip和公网ip的方法
Python获取本机ip和公网ip的方法:# -*- coding: utf-8 -*-# @Time : 2020/6/16 2:29 下午# @Author : SunRuichuan# @File : get_ip.pyimport socketimport requestsfrom lxml import etree# 根据dns解析,获取网卡ipdef get_inner_ip(): s = socket.socket(socket.AF_INET原创 2020-06-17 16:45:39 · 1353 阅读 · 0 评论