本文整理汇总了Python中API.messageListing方法的典型用法代码示例。如果您正苦于以下问题:Python API.messageListing方法的具体用法?Python API.messageListing怎么用?Python API.messageListing使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类API
的用法示例。
在下文中一共展示了API.messageListing方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: index
# 需要导入模块: import API [as 别名]
# 或者: from API import messageListing [as 别名]
def index(self, comp_name, **rest):
query, data = API.messageListing(comp_name)
dictofdict = {}
for id, ev, fro, to, time, delay in data:
if dictofdict.has_key(str(to)):
listval = [str(ev), str(fro), str(time), str(delay)]
dictofdict[str(to)].setdefault(id, listval)
else:
tempdict = {id: [str(ev), str(fro), str(time), str(delay)]}
dictofdict.setdefault(str(to), tempdict)
if dictofdict.has_key(comp_name):
html = "<html><body><h2> %s </h2>\n "%("Showing %s message in queue for %s"%(str(len(dictofdict[comp_name])),str(comp_name)))
html += "<table border='2' cellspacing='2' cellpadding='5'>"
html += "<tr><th>Message</th><th>From</th><th>Time</th><th>Delay</th></tr>"
for key, val in dictofdict.iteritems():
for key2, val2 in val.iteritems():
html += "<tr><td>%s</td><td>%s</td><td>%s</td><td>%s</td></tr>"%(val2[0],val2[1],val2[2],val2[3])
html += """</body></html>"""
else:
html = "<html><body><h2> %s </h2>\n "%("%s has no message in queue"%(comp_name))
return html