Skip to content

Instantly share code, notes, and snippets.

@laurentb
Created March 27, 2012 23:53
Show Gist options
  • Save laurentb/2221598 to your computer and use it in GitHub Desktop.
Save laurentb/2221598 to your computer and use it in GitHub Desktop.
lol lxml
a=lxml.html.fromstring(u'<b>coucou</b> <i>héhé</i>')
a.xpath('//b')[0].text # 'coucou'
a.xpath('//i')[0].text # u'h\xc3\xa9h\xc3\xa9'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment