码迷,mamicode.com
首页 >  
搜索关键字:subject    ( 1700个结果
使用python3给企业微信发送消息
一、概述 本文将介绍如何使用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
调用支付宝接口的简单demo
依赖: 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
C\C++ --- 线性表-学生成绩管理系统
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
Lesson 44 Patterns of culture
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+request+HTMLTestRunner+unittest接口自动化测试框架
摘要: python + requests实现的接口自动化框架详细教程 1、首先,我们先来理一下思路。 正常的接口测试流程是什么? 脑海里的反应是不是这样的: 确定测试接口的工具 — 配置需要的接口参数 — 进行测试 — 检查测试结果(有的需要数据库辅助) — 生成测试报告(html报告) 那么,我 ...
分类:编程语言   时间:2020-01-06 00:31:55    阅读次数:63
Python—发送邮件
一、发送纯文本邮件 import smtplib from email.mime.text import MIMEText subject = "标题" # 邮件的主题 content = "测试" # 邮件的内容 sender = "1548429568@qq.com" # 发件人 passwor ...
分类:编程语言   时间:2020-01-03 19:33:13    阅读次数:65
zabbix告警
自定义告警 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
实验7 文件
#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
55.链表中环的入口结点(python)
题目描述 给一个链表,若其中包含环,请找出该链表的环的入口结点,否则,输出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
1700条   上一页 1 ... 19 20 21 22 23 ... 170 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!