共计 1622 个字符,预计需要花费 5 分钟才能阅读完成。
fabric 是一款命令行工具,反对执行本地命令,执行近程命令,上传下载等。fabric 像一个 subprocess+paramiko 的汇合,又像一个更加轻量级的 ansible,能够批量对服务进行操作
【浏览全文】
装置插件
'''
装置 fabric3
pip3 install fabric3
'''
# C:\Users\Administrator>pip3 install fabric3
# Collecting fabric3
# Downloading Fabric3-1.14.post1-py3-none-any.whl (92 kB)
# |████████████████████████████████| 92 kB 73 kB/s
# Requirement already satisfied: six>=1.10.0 in c:\python38\lib\site-packages (from fabric3) (1.15.0)
'''
查看版本信息
fab -V
'''
# C:\Users\Administrator>fab -V
# Fabric3 1.14.post1
# Paramiko 2.7.2
'''
查看帮忙信息
fab -h
'''
# C:\Users\Administrator>fab -h
# Usage: fab [options] <command>[:arg1,arg2=val2,host=foo,hosts='h1;h2',...] ...
#
# Options:
# -h, --help show this help message and exit
# -d NAME, --display=NAME
# print detailed info about command NAM
近程启用利用
# 导入 Connection 连贯对象
from fabric import Connection
def run():
'''
利用部署
:return:
'''
# 连贯服务器
conn = Connection("docker@10.3.210.19", connect_kwargs={"password": "docker"})
# 执行控制台命令
with conn.cd('/usr/load/project'):
# 拉取 hello world 的 docker 镜像
conn.run("docker pull hello world")
# 启动镜像
conn.run("docker run hello world")
本地命令执行
# 创立 fabfile.py 文件
# 导入本地 local
from fabric.api import local
def hello_world():
'''
本地命令行
:return:
'''print(" 查看以后文件目录 ")
local("ll -a")
# 命令行调用函数
# $ fab hello_world
【往期精彩】
● python 超赞插件 you-get,执行一行命令即可下载、命令行下载工具举荐!
● 办公自动化:Python-win32com 主动将 word 文档转换成 pdf 格局!
● pandas 数据统计插件的连贯函数 concat() 妙用,灵活处理数据对象!
● Git LFS 3.0.0 公布,对大文件进行版本控制的 Git 扩大
● python 有序序列的字典序列推导式使用技巧!
● Django 4.0 alpha 1 公布
● python 经典有序序列的 list 列表推导式实际使用
● python 罕用本义字符串总结:各种字符本义的不同、如何勾销转义字符成果?
● 举荐一款 python、excel 集成的数据分析工具 PyXLL-Jupyter!
● 如何应用 python 实现对 WebService 服务的调用?suds-py3 插件安利一下!
● 介绍一款优良的 IDE Grid Studio,Excel 深度集成 python,间接编写并执行 python 代码块!
● 十大开源软件基金会你晓得哪些?
● python 内置函数通过字符串的形式来执行函数代码块,相似 java 的反射机制相当弱小!
● python-Coverage 代码覆盖率统计工具,生成 html 代码报告
正文完