Which of the following is the only XML parser available in BeautifulSoup? code example

Example 1: how to use xml parse in beautifulsoup

import lxml    #pip install lxml

soup = BeautifulSoup('html_file', 'lxml')

Example 2: beautiful soup 4

from bs4 import BeautifulSoup

with open("index.html") as fp:
    soup = BeautifulSoup(fp)

soup = BeautifulSoup("<html>a web page</html>")

Example 3: children beautiful soup

li = soup.find('li', {'class': 'text'})
children = li.findChildren("a" , recursive=False)
for child in children:
    print child

Tags:

Misc Example