本文整理汇总了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