當前位置: 首頁>>代碼示例>>Python>>正文


Python system_info.get_info方法代碼示例

本文整理匯總了Python中numpy.distutils.system_info.system_info.get_info方法的典型用法代碼示例。如果您正苦於以下問題:Python system_info.get_info方法的具體用法?Python system_info.get_info怎麽用?Python system_info.get_info使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在numpy.distutils.system_info.system_info的用法示例。


在下文中一共展示了system_info.get_info方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: get_info

# 需要導入模塊: from numpy.distutils.system_info import system_info [as 別名]
# 或者: from numpy.distutils.system_info.system_info import get_info [as 別名]
def get_info(self,*names):
        """Get resources information.

        Return information (from system_info.get_info) for all of the names in
        the argument list in a single dictionary.
        """
        from .system_info import get_info, dict_append
        info_dict = {}
        for a in names:
            dict_append(info_dict,**get_info(a))
        return info_dict 
開發者ID:Frank-qlu,項目名稱:recruit,代碼行數:13,代碼來源:misc_util.py

示例2: get_pkg_info

# 需要導入模塊: from numpy.distutils.system_info import system_info [as 別名]
# 或者: from numpy.distutils.system_info.system_info import get_info [as 別名]
def get_pkg_info(pkgname, dirs=None):
    """
    Return library info for the given package.

    Parameters
    ----------
    pkgname : str
        Name of the package (should match the name of the .ini file, without
        the extension, e.g. foo for the file foo.ini).
    dirs : sequence, optional
        If given, should be a sequence of additional directories where to look
        for npy-pkg-config files. Those directories are searched prior to the
        NumPy directory.

    Returns
    -------
    pkginfo : class instance
        The `LibraryInfo` instance containing the build information.

    Raises
    ------
    PkgNotFound
        If the package is not found.

    See Also
    --------
    Configuration.add_npy_pkg_config, Configuration.add_installed_library,
    get_info

    """
    from numpy.distutils.npy_pkg_config import read_config

    if dirs:
        dirs.append(get_npy_pkg_dir())
    else:
        dirs = [get_npy_pkg_dir()]
    return read_config(pkgname, dirs) 
開發者ID:Frank-qlu,項目名稱:recruit,代碼行數:39,代碼來源:misc_util.py

示例3: generate_config_py

# 需要導入模塊: from numpy.distutils.system_info import system_info [as 別名]
# 或者: from numpy.distutils.system_info.system_info import get_info [as 別名]
def generate_config_py(target):
    """Generate config.py file containing system_info information
    used during building the package.

    Usage:
        config['py_modules'].append((packagename, '__config__',generate_config_py))
    """
    from numpy.distutils.system_info import system_info
    from distutils.dir_util import mkpath
    mkpath(os.path.dirname(target))
    f = open(target, 'w')
    f.write('# This file is generated by %s\n' % (os.path.abspath(sys.argv[0])))
    f.write('# It contains system_info results at the time of building this package.\n')
    f.write('__all__ = ["get_info","show"]\n\n')
    for k, i in system_info.saved_results.items():
        f.write('%s=%r\n' % (k, i))
    f.write(r'''
def get_info(name):
    g = globals()
    return g.get(name, g.get(name + "_info", {}))

def show():
    for name,info_dict in globals().items():
        if name[0] == "_" or type(info_dict) is not type({}): continue
        print(name + ":")
        if not info_dict:
            print("  NOT AVAILABLE")
        for k,v in info_dict.items():
            v = str(v)
            if k == "sources" and len(v) > 200:
                v = v[:60] + " ...\n... " + v[-60:]
            print("    %s = %s" % (k,v))
    ''')

    f.close()
    return target 
開發者ID:ryfeus,項目名稱:lambda-packs,代碼行數:38,代碼來源:misc_util.py


注:本文中的numpy.distutils.system_info.system_info.get_info方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。