Python
文章平均质量分 65
Wizard Rubick
这个作者很懒,什么都没留下…
展开
-
190811 Python JenkinsAPI-0.3.9问题一二
使用JenkinsAPI来获取最近构建状态,发现这货有点慢,一个任务要4s,即使访问的是localhost 看issue应该是jenkins缓存的问题,还不如自己写requests得了;当发起第一个请求时(第一次获取任务或者某个任务第一次获取构建) 可以考虑初始化Jenkins时lazy=True 可以考虑用get_job_by_url而不是get_job https://github.com/p...原创 2021-07-20 21:00:38 · 258 阅读 · 0 评论 -
20190823-python简单的RESTful服务器
https://stackoverflow.com/questions/31371166/reading-json-from-simplehttpserver-post-data mport json from klein import Klein class ItemStore(object): app = Klein() def __init__(self): ...翻译 2021-09-06 23:07:33 · 265 阅读 · 0 评论 -
191015-python的并发摸底
threading和process multiprocessing concurrent.futures Executor ThreadPoolExecutor和ProcessPoolExecutor oom_killer man proc原创 2019-10-23 00:15:57 · 601 阅读 · 2 评论 -
20190619 python-json
相当的悲惨!我发现我越来越笨了,怎么回事? https://docs.python.org/3/library/json.html?highlight=#basic-usage json.dump 序列化一个具有JSON格式的流到文件 escaped 转义的,ensure_ascii=True,所有非ASCII字符都会被转义 indent 缩进排版 indent=4,可以美化json文件 把一...原创 2019-06-20 00:35:02 · 211 阅读 · 0 评论 -
20190311 MySQL导出到csv文本,EXCEL表格
导出到csv https://www.mysqltutorial.org/mysql-export-table-to-csv/SELECT orderNumber, orderDate, IFNULL(shippedDate, 'N/A') FROM orders INTO OUTFILE 'C:/tmp/orders2.csv' FIELDS ENCLOSED BY '"' TERMINA...原创 2019-03-11 12:40:42 · 420 阅读 · 0 评论 -
python-regex-thread-localhost
re.search re.match re.sub _thread.allocate_lock() 打开方式 r w a + 目录 文件 python全局变量的使用 127.0.0.1 or LAN IP crontab 一波未平和 * 0区别、小坑 简单来说re.search是匹配整个字符串,而不是从头开始,而re.match是从头开始(当你在正则表达式中没有使用...原创 2019-01-08 23:02:05 · 326 阅读 · 0 评论 -
Python-0.4
Python @Wrap 包装器https://www.cnblogs.com/fcyworld/p/6239951.html Python 2.7.10 error “from urllib.request import urlopen” no module named request:https://stackoverflow.com/questions/31601238/python-2-...原创 2018-11-30 20:42:13 · 314 阅读 · 0 评论 -
Python之“小三”-变量作用域-str(字典)-str2json
没有各种括号,用缩进来表示代码块,确实方便,至少,不用再按Shift键了,但是啊,凡shi有个但是,它的变量的作用域感觉很不明显,至少我现在觉得是,稍微写多一点,同一个变量要常用,但不在同一个代码块,就不知道谁是谁了;比如看下面这个代码: def var_var_valid_1(a): error_num = 0 if a>10: error_num = 10 ...原创 2018-09-28 20:23:43 · 199 阅读 · 0 评论 -
Python-0.2-正则|数据库|文件IO|字典有无序和拷贝|humanfriendly
闭包 https://www.cnblogs.com/Lin-Yi/p/7305364.html if __name__ == "__py_file_name__" https://www.cnblogs.com/Emerald/p/4827238.html 正则表达式 re.search match.group(1) re.search(str) https:/原创 2018-09-22 14:22:52 · 239 阅读 · 0 评论 -
Python-0.1
输入 input e.g. name = input(“plz input your name:”) 输出 print e.g. print(“Hello Python!”) print( repr(“Hello\nPython”) Hello\nPython repr是函数 单引号和双引号: print( ' she said:"...原创 2018-09-20 20:12:55 · 199 阅读 · 0 评论