我正在编写一个使用 编辑 XML 文件的脚本BeautifulStoneSoup
,但该库将所有标签转换为小写。是否有保存案例的选项?
import BeautifulSoup
xml = "<TestTag>a string</TestTag>"
soup = BeautifulSoup.BeautifulStoneSoup(xml, markupMassage=False)
print soup.prettify() # or soup.renderContents()
#prints
>>> <testtag>a string</testtag>
#instead of the expected
>>> <TestTag>a string</TestTag>