python 使用BeautifulSoup解析XML

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用BeautifulSoup解析XML相关的知识,希望对你有一定的参考价值。

from bs4 import BeautifulSoup as bs
import sys

f = open('1.xml').read()
soup = bs(f)

# print(soup.prettify()

errorcode = soup.find_all("errorcode")
try:
    errorcode
except NameError:
    errorcode = None

if errorcode is None:
	print 'Its all good'
else:
	print 'BOWM'
	sys.exit(2)

以上是关于python 使用BeautifulSoup解析XML的主要内容,如果未能解决你的问题,请参考以下文章

[Python]BeautifulSoup安装与使用

Python BeautifulSoup库使用

Python_爬虫_BeautifulSoup网页解析库

使用 BeautifulSoup 在 Python 中查找非递归 DOM 子节点

在 Python 中使用 BeautifulSoup 解析数据

python爬虫之html解析Beautifulsoup和Xpath