python3 在服务器上打印资产信息
2021-06-12 13:05
标签:err 服务器 error: ror mamicode exit 信息 image exce url 为 资产信息接口地址,返回为json信息。 执行: /usr/bin/python3.6 test.py -n test python3 在服务器上打印资产信息 标签:err 服务器 error: ror mamicode exit 信息 image exce 原文地址:https://blog.51cto.com/hequan/2520351pip3 install prettytable
# encoding=utf-8
import getopt
import sys
import prettytable as pt
import requests
import json
def main(argv):
try:
options, args = getopt.getopt(argv, "n:", ["name=", ])
except getopt.GetoptError:
sys.exit()
for option, value in options:
if option in ("-n", "--name"):
url = ‘http://xxxxxxxx/list‘
try:
headers = {‘Content-Type‘: ‘application/json‘}
r = requests.post(url, data=json.dumps({"name": value}), headers=headers)
if r.status_code == 200:
data = r.json()
tb = pt.PrettyTable()
tb.field_names = ["主机名", "外网IP"]
tb.align["主机名"] = "l"
tb.align["外网IP"] = "l"
for i in data:
tb.add_row([i["_id"], i["out_ip"]])
print(tb)
else:
print("获取信息错误")
except Exception as e:
print(e)
if __name__ == ‘__main__‘:
main(sys.argv[1:])
结果
下一篇:CURL不可以读写文件
文章标题:python3 在服务器上打印资产信息
文章链接:http://soscw.com/index.php/essay/93886.html