07 2019 档案

1
摘要:1 阅读全文

posted @ 2019-07-31 21:47 -有风来 阅读(113) 评论(0) 推荐(0)

pip安装第三方库的时候 超时报错 Read time out
摘要:比如之前我安装这个pip install pytest-allure-adaptor 就超时报错 可以设置超时时间 就行了 pip --default-timeout=100 install pytest-allure-adaptor 阅读全文

posted @ 2019-07-18 12:44 -有风来 阅读(235) 评论(0) 推荐(0)

Python数据可视化matplotlib.pyplot
摘要:可参考https://www.jianshu.com/p/85a01b7d6507 阅读全文

posted @ 2019-07-11 16:15 -有风来 阅读(195) 评论(0) 推荐(0)

python的各种time
摘要:time.localtime() 这是获取本地时间 打印出来的话是时间元组 time.striptime() 这是把字符串转为时间数组 比如>>> time.strptime('1990-1-1','%Y-%m-%d') time.struct_time(tm_year=1990, tm_mon=1 阅读全文

posted @ 2019-07-11 15:49 -有风来 阅读(152) 评论(0) 推荐(0)

关于python的datetime模块
摘要:可以直接参考https://www.liaoxuefeng.com/wiki/1016959663602400/1017648783851616 阅读全文

posted @ 2019-07-07 00:32 -有风来 阅读(131) 评论(0) 推荐(0)

subprocess.Popen()详解
摘要:一、subprocess.Popensubprocess模块定义了一个类: Popenclass subprocess.Popen( args, bufsize=0, executable=None, stdin=None, stdout=None, stderr=None, preexec_fn= 阅读全文

posted @ 2019-07-06 11:49 -有风来 阅读(1826) 评论(1) 推荐(2)

导航