本文整理汇总了Python中txaws.util.XML.getchildren方法的典型用法代码示例。如果您正苦于以下问题:Python XML.getchildren方法的具体用法?Python XML.getchildren怎么用?Python XML.getchildren使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类txaws.util.XML
的用法示例。
在下文中一共展示了XML.getchildren方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: parse_receive_message
# 需要导入模块: from txaws.util import XML [as 别名]
# 或者: from txaws.util.XML import getchildren [as 别名]
def parse_receive_message(data):
result = []
element = XML(data).find('ReceiveMessageResult')
for i in element.getchildren():
receipt = i.findtext('ReceiptHandle').strip()
body = base64.b64decode(i.findtext('Body'))
result.append(Message(receipt, body))
return result
示例2: process_batch_result
# 需要导入模块: from txaws.util import XML [as 别名]
# 或者: from txaws.util.XML import getchildren [as 别名]
def process_batch_result(data, root, success_tag):
result = []
element = XML(data).find(root)
for i in element.getchildren():
if i.tag == success_tag:
result.append(True)
else:
result.append(False)
return result
示例3: parse_queue_attributes
# 需要导入模块: from txaws.util import XML [as 别名]
# 或者: from txaws.util.XML import getchildren [as 别名]
def parse_queue_attributes(data):
result = {}
str_attrs = ['Policy', 'QueueArn']
element = XML(data).find('GetQueueAttributesResult')
for i in element.getchildren():
attr = i.findtext('Name').strip()
value = i.findtext('Value').strip()
if attr not in str_attrs:
value = int(value)
result[attr] = value
return result