Eu instalei o BeautifulSoup usando easy_install e tentei executar o seguinte script
from BeautifulSoup import BeautifulSoup
import re
doc = ['<html><head><title>Page title</title></head>',
'<body><p id="firstpara" align="center">This is paragraph <b>one</b>.',
'<p id="secondpara" align="blah">This is paragraph <b>two</b>.',
'</html>']
soup = BeautifulSoup(''.join(doc))
print soup.prettify()
Mas não tenho certeza por que isso está acontecendo
Traceback (most recent call last):
File "C:\Python27\reading and writing xml file from web1.py", line 49, in <module>
from BeautifulSoup import BeautifulSoup
ImportError: No module named BeautifulSoup
Poderia ajudar por favor. obrigado
easy_install
para usar o Python2.7 ou a versão embutida do Python que veio com o sistema operacional que você está usando? Se você não especificou 2.7, tente fazer Python2,4 ou Python2.6