当前位置: 首页>>代码示例>>Python>>正文


Python Printer.dict_printer方法代码示例

本文整理汇总了Python中cloudmesh_client.common.Printer.Printer.dict_printer方法的典型用法代码示例。如果您正苦于以下问题:Python Printer.dict_printer方法的具体用法?Python Printer.dict_printer怎么用?Python Printer.dict_printer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在cloudmesh_client.common.Printer.Printer的用法示例。


在下文中一共展示了Printer.dict_printer方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: list

# 需要导入模块: from cloudmesh_client.common.Printer import Printer [as 别名]
# 或者: from cloudmesh_client.common.Printer.Printer import dict_printer [as 别名]
    def list(cls,
             category=None,
             order=None,
             output='table'):
        """
        lists the default values in the specified format.
        TODO: This method has a bug as it uses format and output,
        only one should be used.

        :param category: the category of the default value. If general is used
                      it is a special category that is used for global values.
        :param order: The order in which the attributes are returned
        :param output: The output format. json, table, yaml, dict, csv
        :return:
        """

        # if order is None:
        #    # (order, header) = CloudProvider(category).get_attributes("default")
        try:
            if category is None:
                d = cls.cm.all("default")
            else:
                d = cls.cm.find('default', category=category)
            return (Printer.dict_printer(d,
                                         order=order,
                                         output=output))
        except:
            return None
开发者ID:ashwinir20,项目名称:client,代码行数:30,代码来源:ListResource.py


注:本文中的cloudmesh_client.common.Printer.Printer.dict_printer方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。