本文整理匯總了Python中zoundry.base.zdom.dom.ZDom.selectSingleNodeText方法的典型用法代碼示例。如果您正苦於以下問題:Python ZDom.selectSingleNodeText方法的具體用法?Python ZDom.selectSingleNodeText怎麽用?Python ZDom.selectSingleNodeText使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類zoundry.base.zdom.dom.ZDom
的用法示例。
在下文中一共展示了ZDom.selectSingleNodeText方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: _uploadStream
# 需要導入模塊: from zoundry.base.zdom.dom import ZDom [as 別名]
# 或者: from zoundry.base.zdom.dom.ZDom import selectSingleNodeText [as 別名]
def _uploadStream(self, fileName, fileStream, metaData): #@UnusedVariable
data = {
u"xml" : u"yes", #$NON-NLS-1$ #$NON-NLS-2$
u"fileupload" : fileStream #$NON-NLS-1$
}
code = self._getRegistrationCode()
if code:
data[u"cookie"] = code #$NON-NLS-1$
imageShackUrl = u"http://www.imageshack.us/index.php" #$NON-NLS-1$
request = ZSimpleTextHTTPRequest(imageShackUrl)
ok = request.send( data )
if ok:
respData = request.getResponse()
dom = ZDom()
dom.loadXML( respData )
url = dom.selectSingleNodeText(u"/links/image_link") #$NON-NLS-1$
return ZUploadResponse(url)
else:
code = unicode( request.getHttpStatusCode() )
msg = unicode( request.getHttpStatusMessage() )
raise ZException(u"ImageShackMedia upload failed. HTTP response: %s %s" % (code, msg)) #$NON-NLS-1$