Python XML parser BeautifulSoup code example
Example 1: how to use xml parse in beautifulsoup
import lxml #pip install lxml
soup = BeautifulSoup('html_file', 'lxml')
Example 2: children beautiful soup
li = soup.find('li', {'class': 'text'})
children = li.findChildren("a" , recursive=False)
for child in children:
print child