python
测试熊
这个作者很懒,什么都没留下…
展开
-
使用python基于git log统计开发代码量
基于git log统计开发代码量原创 2022-10-18 10:33:53 · 1446 阅读 · 0 评论 -
ERROR: No matching distribution found for mysqlclient/OSError: mysql_config not found(mysqlclient报错)
ERROR: No matching distribution found for mysqlclient/OSError: mysql_config not found(mysqlclient报错)转载 2022-05-19 14:41:35 · 1028 阅读 · 0 评论 -
运用AirTest在财务软件编写RPA——DAY1——未完
财务人员在财务软件填写支付凭证相关信息,因数据重复,想要根据数据自动填写生成凭证。需求很简单,因为测试会做自动化测试,因此安排测试同学做技术预研,给出解决方案。首先,确认财务软件的平台,金蝶,用友,天财,金财等,大部分都是内网使用的Windows桌面应用软件。没有测试系统供使用,因此无法尝试用接口去新增凭证,基于UI做自动填写单据。最终采用AirTest来尝试实现。...原创 2021-06-16 14:28:55 · 267 阅读 · 0 评论 -
tkinter桌面应用输入城市查询天气
头段时间有机会了解到了webservice接口,引发思考。在调用webservice来调用Windows,岂不是就写了一个简单的桌面应用。因此,用tkinter来控制弹窗,用webservice实现业务功能,最后用pyinstaller打包成可执行的exe文件,应当可以直接运行。尝试成功,如下:# coding=utf-8from tkinter import *import hashlibimport timefrom suds.client import Clientfrom suds.原创 2021-01-06 17:40:03 · 802 阅读 · 2 评论 -
python3安装pyinstaller
最近尝试将py程序打包成可执行exe文件,发现最简单的安装竟然出错了?原因是下载速度过慢,时间久了自己就断掉了。pip install pyinstaller 找了一下国内安装源,安装源内容如下阿里云 [http://mirrors.aliyun.com/pypi/simple/]中国科技大学 [https://pypi.mirrors.ustc.edu.cn/simple/]豆瓣(douban) [http://pypi.douban.com/simple/]清华大学 [https:/原创 2020-12-30 18:02:03 · 1040 阅读 · 0 评论 -
python实现输入城市查询天气
最近在学习用python调用webservice接口后,经过测试和举例,做简单的数据解析,得到输入城市查询天气的代码。可以查看如何用python调用webservice接口文章,以及通过城市查询天气报type not found错误。输入城市名称获取天气from suds.client import Clientfrom suds.xsd.doctor import ImportDoctor,Importurl = 'http://www.webxml.com.cn/WebServices/Wea原创 2020-12-30 17:48:10 · 2026 阅读 · 0 评论 -
python调用webservice接口type not found报错
最近用python测试使用webservice接口,发现根据号码查询归属地能够成功,而通过城市查询天气报错了,最终提示“suds.TypeNotFound: Type not found: ‘(schema, http://www.w3.org/2001/XMLSchema, )’”,解决后记录下来。查看接口信息from suds.client import Clienturl = http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?原创 2020-12-29 10:11:39 · 2365 阅读 · 1 评论 -
如何用python调用webservice接口
最近项目需要去调用其他平台接口,接口类型为webservice接口,跟经常用的http请求还不一样,然后就找到python的suds三方包。以下为根据号码查询归属地接口进行测试和举例:安装suds三方包命令行 pip3 install suds-jurkopython调用from suds.client import Client获取接口信息 url = "http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx?wsdl" print(原创 2020-12-28 10:22:19 · 5209 阅读 · 3 评论