python运维自动化脚本案例,python 自动化运维框架
以下是一个简单的Python自动化运维框架的示例,它使用了argparse
库来解析命令行参数,并使用subprocess
来执行系统命令。
import argparse
import subprocess
def run_command(command):
"""
运行系统命令
"""
try:
output = subprocess.check_output(command, shell=True, text=True)
print(output)
except subprocess.CalledProcessError as e:
print(f"命令执行错误:{e.output}")
def main():
# 创建解析器
parser = argparse.ArgumentParser(description='自动化运维脚本')
# 添加参数
parser.add_argument('-c', '--command', help='要执行的命令')
# 解析参数
args = parser.parse_args()
# 执行命令
if args.command:
run_command(args.command)
else:
print("请提供要执行的命令")
if __name__ == '__main__':
main()
这个脚本允许用户通过命令行输入要执行的命令,并且会输出命令的执行结果。这个简单的框架可以扩展,比如添加用户认证、错误处理、日志记录、多种任务类型等功能。
评论已关闭