上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 49 下一页
摘要: def client_post_xmldata_requests(request_url,requestxmldata): #功能说明:发送请求报文到指定的地址并获取请求响应报文 #输入参数说明:接收请求的URL,xml请求报文数据 #输出参数:请求响应报文 #by xiaocc[20180709] 阅读全文
posted @ 2018-11-19 16:34 垄上行 阅读(7458) 评论(0) 推荐(0) 编辑
摘要: def client_post_formurlencodeddata_requests(request_url,requestJSONdata): #功能说明:发送以form表单数据格式(它要求数据名称(name)和数据值(value)之间以等号相连,与另一组name/value值之间用&相连。例如 阅读全文
posted @ 2018-11-19 16:32 垄上行 阅读(25644) 评论(0) 推荐(2) 编辑
摘要: def client_post_mutipart_formdata_requests(request_url,requestdict): #功能说明:发送以多部分表单数据格式(它要求post的消息体分多个部分(fields)发送,每个fields之间用自定义的且唯一的随机字符串boundary进行分 阅读全文
posted @ 2018-11-19 16:30 垄上行 阅读(9480) 评论(2) 推荐(0) 编辑
摘要: 输入参数的最后一个参数可以是一个列表变量,通过@{列表名称}或者${列表名称}的方式实现传入多个值的场景; 或者 阅读全文
posted @ 2018-09-28 10:06 垄上行 阅读(3760) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000/001386819196283586a37629844456ca7e5a7faa9b94ee8000 请参考链接总结,总结的非 阅读全文
posted @ 2018-09-25 16:01 垄上行 阅读(278) 评论(0) 推荐(0) 编辑
摘要: from openpyxl.utils import get_column_letter, column_index_from_string # 根据列的数字返回字母 print(get_column_letter(2)) # B # 根据字母返回列的数字 print(column_index_from_string('D')) # 4 --------------------- 本文... 阅读全文
posted @ 2018-09-21 14:39 垄上行 阅读(8404) 评论(0) 推荐(1) 编辑
摘要: 获取excel多列方法: 阅读全文
posted @ 2018-09-20 14:43 垄上行 阅读(5300) 评论(0) 推荐(0) 编辑
摘要: 依赖包: 修改正文的中文字体类型,示例代码:(全局设置) 修改3级标题的字体类型,示例代码: 阅读全文
posted @ 2018-09-12 15:28 垄上行 阅读(15389) 评论(1) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/zklth/article/details/8117207 新建一个register.py文件,执行该文件,完成python的注册。 阅读全文
posted @ 2018-09-07 11:22 垄上行 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/s740556472/article/details/68557330 pip install --index https://pypi.mirrors.ustc.edu.cn/simple/ lxml 阅读全文
posted @ 2018-09-06 16:42 垄上行 阅读(1947) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 49 下一页