CI脚本的python基础

CI脚本的python基础

基础python语法

getopt.getopt(args, shortopts, longopts=[])

args指的是当前脚本接收的参数,它是一个列表,可以通过sys.argv获得

shortopts 是短参数  啥是短参数啊?  类似于 这样:python test.py -h # 输出帮助信息

longopts 是长参数  啥是长参数啊?  类似于 这样:python test.py -help # 输出帮助信息

c 复制代码
import getopt
import sys
 
arg = getopt.getopt(sys.argv[1:],'-h-f:-v',['help'])
print(arg)

为啥传入sys.argv[1:]?因为sys.argv里的argv[0]是当前脚本的文件名,不需要它去参与,要不然你的选项和选项值无法匹配,问题多多。

我定义了'-h-f:-v' 大家发现没有,在-f后面多了一个":"

这个":"代表了当前参数后面可以跟着其他值。

opts与args:

opts 为分析出的格式信息。args 为不属于格式信息的剩余的命令行参数。

opts 是一个两元组的列表。每个元素为:( 选项串, 附加参数) 。如果没有附加参数则为空串''

requests.request

https://blog.csdn.net/u011608531/article/details/109356728

json.loads()

https://blog.csdn.net/daerzei/article/details/100598901

os.popen

https://blog.csdn.net/xc_zhou/article/details/96445422

split的用法

https://blog.csdn.net/JohinieLi/article/details/76196882

os.path.exist

https://blog.csdn.net/qq_43426078/article/details/123429843

shutil.rmtree以及shutil家族

https://blog.csdn.net/jiandanjinxin/article/details/71489080
https://blog.csdn.net/qq_38640439/article/details/81410116

shutil.make_archive

https://blog.csdn.net/Leeeey/article/details/90042111

time.strftime计算

https://www.runoob.com/python/att-time-strftime.html

Python zfill(width)方法

指定长度的字符串,原字符串右对齐,前面填充0

python的exit退出

https://gairuo.com/p/python-quit-exit

相关推荐
封步宇AIGC1 分钟前
量化交易系统开发-实时行情自动化交易-Okex K线数据
人工智能·python·机器学习·数据挖掘
哎呦没2 分钟前
SpringBoot框架下的资产管理自动化
java·spring boot·后端
封步宇AIGC4 分钟前
量化交易系统开发-实时行情自动化交易-Okex交易数据
人工智能·python·机器学习·数据挖掘
小爬虫程序猿6 分钟前
如何利用Python解析API返回的数据结构?
数据结构·数据库·python
波点兔8 分钟前
【部署glm4】属性找不到、参数错误问题解决(思路:修改模型包版本)
人工智能·python·机器学习·本地部署大模型·chatglm4
m0_571957582 小时前
Java | Leetcode Java题解之第543题二叉树的直径
java·leetcode·题解
一点媛艺3 小时前
Kotlin函数由易到难
开发语言·python·kotlin
魔道不误砍柴功4 小时前
Java 中如何巧妙应用 Function 让方法复用性更强
java·开发语言·python
NiNg_1_2344 小时前
SpringBoot整合SpringSecurity实现密码加密解密、登录认证退出功能
java·spring boot·后端
闲晨4 小时前
C++ 继承:代码传承的魔法棒,开启奇幻编程之旅
java·c语言·开发语言·c++·经验分享