钉钉发送消息通知
摘要:#coding=utf8import requestsimport jsonimport timeimport sysdef send_report(reporter,report_text,url): reporter = '' now_time = time.strftime('%Y-%m-%d
阅读全文
git使用命令行自动登录
摘要:git config --global http.sslVerify falsegit clone https://用户名:密码@git.xxxx.cn/xxx/xxx.git master 如果用户名和密码里有@等特殊字符,要转成urlcode码。比如@就转成%40
阅读全文
python+jenkins纯api实现自动化部署
摘要:#coding=utf8 import sys import os import requests import json import time username = '' password = server_ip='' job_name='' req = requests.get('http://{}/crumbIssuer/api/xml?xpath=concat(//crumbR...
阅读全文