本文整理汇总了Python中MaltegoTransform.debug方法的典型用法代码示例。如果您正苦于以下问题:Python MaltegoTransform.debug方法的具体用法?Python MaltegoTransform.debug怎么用?Python MaltegoTransform.debug使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MaltegoTransform
的用法示例。
在下文中一共展示了MaltegoTransform.debug方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Klout
# 需要导入模块: import MaltegoTransform [as 别名]
# 或者: from MaltegoTransform import debug [as 别名]
#!/usr/bin/python
# Twitter ID to weighted influencers
# Minor tweak
import sys
from MaltegoTransform import *
from pyklout import Klout
api = Klout("YOUR API KEY")
me = MaltegoTransform();
me.debug("Starting Transform"); #Debug Info
name = str(sys.argv[1])
data = api.identity(name,'twitter')
user_id = data['id']
# fails hard if you feed it a name that doesn't have a Klout account
# really must find Python equivalent of Try::Tiny for this problem.
list = api.influences(user_id)
for inf in list['myInfluencers']:
name = str(inf['entity']['payload']['nick']);
score = str(int(inf['entity']['payload']['score']['score']));
NewEnt = me.addEntity("AffiliationTwitter",name);
NewEnt.setWeight(score);
NewEnt.addAdditionalFields("affiliation.uid","UID","",name);
nurl = "http://twitter.com/" + name;
NewEnt.addAdditionalFields("affiliation.profile-url","Profile URL","",nurl);
NewEnt.addAdditionalFields("twitter.screen-name","Screen Name","",name);
me.returnOutput();