python3 在服务器上打印资产信息
python3 在服务器上打印资产信息
pip3 install prettytable
url 为 资产信息接口地址,返回为json信息。
# 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:])
结果
执行: /usr/bin/python3.6 test.py -n test
相关推荐
chuckchen 2020-10-31
Will0 2020-10-12
Dreamhome 2020-10-09
xirongxudlut 2020-09-28
星辰大海的路上 2020-09-13
chaochao 2020-08-31
猪猪侠喜欢躲猫猫 2020-08-17
快递小可 2020-08-16
shengge0 2020-07-26
巩庆奎 2020-07-21
张文倩数据库学生 2020-07-19
xirongxudlut 2020-07-18
Ericbig 2020-07-18
kyelu 2020-07-09
liangzhouqu 2020-07-07
GuoSir 2020-06-28
chaigang 2020-06-27
pythonxuexi 2020-06-25
joynet00 2020-06-21