从namesheap解析XML,表示我的域不可用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从namesheap解析XML,表示我的域不可用相关的知识,希望对你有一定的参考价值。
# Userful: http://blog.doughellmann.com/2010/03/pymotw-parsing-xml-documents-with.html from xml.etree import ElementTree foo = """<?xml version="1.0" encoding="utf-8"?> <ApiResponse Status="OK" xmlns="http://api.namecheap.com/xml.response"> <Errors /> <Warnings /> <RequestedCommand>namecheap.domains.check</RequestedCommand> <CommandResponse> <DomainCheckResult Domain="example.com" Available="false" /> </CommandResponse> <Server>P2136033</Server> <GMTTimeDifference>--7:00</GMTTimeDifference> <ExecutionTime>0.688</ExecutionTime> </ApiResponse>""" tree = ElementTree.fromstring(foo) print tree for node in tree.getiterator(): print node.tag, ": ", node.attrib print " -------------------- " for node in tree.getiterator(): if "Available" in node.attrib.keys(): print node.attrib["Available"]
以上是关于从namesheap解析XML,表示我的域不可用的主要内容,如果未能解决你的问题,请参考以下文章
Facebook Auth:无法加载 URL:此 URL 的域不包含在应用程序的域中
在 textview 上链接,文本中的域不起作用,链接不可点击
没有 www 的域不工作,但有 www 的域在 Azure 上工作