I crawled the following page:
http://www.nasa.gov/topics/earth/features/plains-tornadoes-20120417.html
But I got Segmentation fault (core dumped) when calling: BeautifulSoup(page_html), where page_html is the content from requests library. Is this a bug for BeautifulSoup? Is there any way to get around with this? Even approach like try...except would help me to get my code running. Thanks in advance.
The code is as following:
import requests
from bs4 import BeautifulSoup
toy_url = 'http://www.nasa.gov/topics/earth/features/plains-tornadoes-20120417.html'
res = requests.get(toy_url,headers={"USER-Agent":"Firefox/12.0"})
page = res.content
soup = BeautifulSoup(page)
lxml. The default HTML parser from py2.7 won't parse this page because of a wrong tag... BTW, py3.2 works fine. (Can't make it segfault) – JBernardo Nov 10 '12 at 16:02bs4andrequests(just installed now). – David Robinson Nov 10 '12 at 16:05