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


Python STIXPackage.from_obj方法代码示例

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


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

示例1: test

# 需要导入模块: from stix.core import STIXPackage [as 别名]
# 或者: from stix.core.STIXPackage import from_obj [as 别名]
def test(files):
    '''Parses each file in the list of files and performs a to_obj(), from_obj()
    to_dict(), from_dict(), and to_xml() on each STIXPackage
    '''
    info("testing [%s] files" % (len(files)))
    
    for fn in files:
        with open(fn, 'rb') as f:
            try:
                sp = STIXPackage.from_xml(f)
                o = sp.to_obj()
                sp2 = STIXPackage.from_obj(o)
                d = sp.to_dict()
                sp3 = STIXPackage.from_dict(d)
                xml = sp.to_xml()
                print "[+] Sucessfully tested %s" % fn
            except Exception as ex:
                tb = traceback.format_exc()
                print "[!] Error with %s : %s" % (fn, str(ex))
                print tb
开发者ID:bworrell,项目名称:utils,代码行数:22,代码来源:python-stix-tester.py


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