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


Python FormatUtils.formatIpString方法代码示例

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


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

示例1: stringifyMacIpAddresses

# 需要导入模块: from SmartMeshSDK.utils import FormatUtils [as 别名]
# 或者: from SmartMeshSDK.utils.FormatUtils import formatIpString [as 别名]
def stringifyMacIpAddresses(indict):
    '''
    in: {
        'field1':     123,
        'macAddress': [0,1,2,3,4,5,6,7],
    }
    out: {
        'field1':     123,
        'macAddress': '00-01-02-03-04-05-06-07',
    }
    '''
    outdict = indict
    for name in ['macAddress','source','dest']:
        try:
            assert len(outdict[name])==8
            outdict[name] = u.formatMacString(outdict[name])
        except KeyError:
            pass
    for name in ['ipv6Address']:
        try:
            assert len(outdict[name])==16
            outdict[name] = u.formatIpString(outdict[name])
        except KeyError:
            pass
    return outdict
开发者ID:dustcloud,项目名称:smartmeshsdk,代码行数:27,代码来源:JsonManager.py


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