您好我能夠解析一個正常的xml,如xml = lxml.etree.parse(''http://abc.com/A.xml') 但現在我有這個路徑進行身份驗證用戶名和密碼可以輸入用戶名和密碼並解析url,就像連接數據庫一樣,您可以在連接字符串中輸入用戶名密碼在python中的安全xml解析
1
A
回答
3
夥計們,我發現了一種解析密碼保護XML的方法,這就是我所做的。
import urllib2
import base64
theurl = 'http://abc.com/A.xml'
username='AAA'
password='BBB'
req = urllib2.Request(theurl)
base64string = base64.encodestring(
'%s:%s' % (username, password))[:-1]
authheader = "Basic %s" % base64string
req.add_header("Authorization", authheader)
try:
handle = urllib2.urlopen(req)
except IOError, e:
print "It looks like the username or password is wrong."
xml = handle.read()
inputXml = etree.fromstring(xml)
3
是的,這是可能的。在使用lxml
解析XML文檔之前,您需要通過正確處理HTTP基本/摘要式身份驗證的HTTP請求來獲取它。例如,與urllib2.HTTPBasicAuthHandler
像這樣的解決方案:Python urllib2 HTTPBasicAuthHandler
相關問題
- 1. Spring安全不解析xml
- 2. 安全XML解析器
- 3. 在解析安全
- 4. 在Python中解析XML
- 5. 在Python中解析XML
- 6. XML在python解析
- 7. Python XML解析
- 8. Python - XML解析
- 9. 解析XML Python
- 10. 解析python中的XML
- 11. Python中的XML解析器
- 12. 解析Python中的XML
- 13. Python中的XML解析
- 14. Python的XML解析
- 15. 的Python解析XML
- 16. 在GWT中安全的JSON解析?
- 17. 安卓:解析XML
- 18. 解析XML全光照SAX在Java中
- 19. 解析XML Python中與環
- 20. 解析XML信封在Python
- 21. Python ElementTree XML解析
- 22. Python BeautifulSoup XML解析
- 23. 用Python解析XML
- 24. 使用XML解析Python XML
- 25. Java - XML - 全局解析
- 26. Python的XML解析問題
- 27. Python的XML解析問題
- 28. 的Python解析XML響應
- 29. Python的XML解析器
- 30. Python的XML解析 - multisections
-1。你拒絕接受答案,並且在被告知這樣做時你忽略了這個事實。學會回報。 – user225312 2011-01-11 16:41:17