示例#1
0
def get_server_info():
    #this function is for non UI thread info
    info = {
        "platform": get_platform_info(),
        "build": get_version_info_full(),
    }
    info.update(get_host_info())
    return info
示例#2
0
def get_server_info():
    #this function is for non UI thread info
    info = {
            "platform"  : get_platform_info(),
            "build"     : get_version_info_full(),
            }
    info.update(get_host_info())
    return info
示例#3
0
def get_server_info():
    #this function is for non UI thread info
    info = {}
    info.update(get_host_info())
    def up(prefix, d):
        updict(info, prefix, d)
    up("platform",  get_platform_info())
    up("build",     get_version_info_full())
    return info
示例#4
0
def get_server_info():
    #this function is for non UI thread info
    info = {}
    info.update(get_host_info())

    def up(prefix, d):
        updict(info, prefix, d)

    up("platform", get_platform_info())
    up("build", get_version_info_full())
    return info
示例#5
0
 def get_version_info(self):
     return get_version_info_full()
示例#6
0
 def get_version_info(self) -> dict:
     return get_version_info_full()