一、概述 本文将介绍如何使用python3给企业微信发送消息。我的环境是linux + python3.6.10。 二、python脚本 #!/root/.virtualenvs/wechat/bin/python # usage: send message via wechat import re ...
分类:
微信 时间:
2020-01-12 23:40:40
阅读次数:
380
依赖: 1 <!-- alipay-sdk-java 注意一下版本--> 2 <dependency> 3 <groupId>com.alipay.sdk</groupId> 4 <artifactId>alipay-sdk-java</artifactId> 5 <version>3.4.49.A ...
分类:
其他好文 时间:
2020-01-09 22:47:46
阅读次数:
142
1 //#include "pch.h" 2 3 #include <stdio.h> 4 #include <iostream> 5 6 7 #include <string> 8 #include <cstring> 9 #define SizeMax 300 10 #define SizeMi ...
分类:
编程语言 时间:
2020-01-08 10:52:54
阅读次数:
89
What influences us from the moment of birth? Custom has not commonly been regarded as a subject of any great moment. The inner workings of our own bra ...
分类:
其他好文 时间:
2020-01-07 01:15:55
阅读次数:
148
摘要: python + requests实现的接口自动化框架详细教程 1、首先,我们先来理一下思路。 正常的接口测试流程是什么? 脑海里的反应是不是这样的: 确定测试接口的工具 — 配置需要的接口参数 — 进行测试 — 检查测试结果(有的需要数据库辅助) — 生成测试报告(html报告) 那么,我 ...
分类:
编程语言 时间:
2020-01-06 00:31:55
阅读次数:
63
一、发送纯文本邮件 import smtplib from email.mime.text import MIMEText subject = "标题" # 邮件的主题 content = "测试" # 邮件的内容 sender = "1548429568@qq.com" # 发件人 passwor ...
分类:
编程语言 时间:
2020-01-03 19:33:13
阅读次数:
65
自定义告警 yum install -y mailx dos2unix vim /etc/mail.rc 最后添加下面3行 set from=luo-jia-le@163.com smtp=smtp.163.comset smtp-auth-user=luo-jia-le@163.com smtp- ...
分类:
其他好文 时间:
2020-01-03 12:28:29
阅读次数:
115
1. 开闭原则的定义 开闭原则(Open Closed Principle,OCP)由勃兰特·梅耶(Bertrand Meyer)提出,他在 1988 年的著作《面向对象软件构造》(Object Oriented Software Construction)中提出:软件实体应当对扩展开放,对修改关闭 ...
分类:
其他好文 时间:
2020-01-01 13:20:31
阅读次数:
64
#include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; ...
分类:
其他好文 时间:
2020-01-01 09:51:22
阅读次数:
59
题目描述 给一个链表,若其中包含环,请找出该链表的环的入口结点,否则,输出null。 思路 如果slow走了L的长度那么fast走了2L 假设从开始到入口点的长度是s,slow在环里走的长度是d 那么 l = s + d 假设环内slow没走的长度是m,fast走的长度是n*(m+d) + d + ...
分类:
编程语言 时间:
2019-12-31 23:14:44
阅读次数:
78