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 o
用户评论