Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
lxml is a full-featured, high performance Python library for processing XML and HTML.
2
votes
1answer
45 views
Fastest way of getting OpenGraph metatags from HTML?
Beautiful Soup is not efficient enough, so I'm trying to use pure lxml. However, the lxml.html.fromstring is buggy (it suddenly eats 100% RAM after some time), so I need to do it some other way (not ...
0
votes
1answer
789 views
lxml error “IOError: Error reading file” when parsing facebook mobile in a python scraper script
I use a modified script from Logging into facebook with python post :
#!/usr/bin/python2 -u
# -*- coding: utf8 -*-
facebook_email = "YOUR_MAIL@DOMAIN.TLD"
facebook_passwd = "YOUR_PASSWORD"
import ...
5
votes
1answer
362 views
How to preserve namespace information when parsing HTML with lxml?
>>> from lxml.etree import HTML, tostring
>>> tostring(HTML('<fb:like>'))
'<html><body><like/></body></html>'
Note how the tag turns from ...
