BeautifulSoup'u easy_install kullanarak kurdum ve aşağıdaki komut dosyasını çalıştırmaya çalışıyorum
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()
Ama bunun neden olduğundan emin değilim
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
Lütfen yardım eder misiniz. Teşekkürler
easy_install
Python2.7'yi veya kullandığınız işletim sistemiyle birlikte gelen Python'un dahili sürümünü kullanmak için mi ayarladınız ? 2.7 belirtmediyseniz, Python2,4 veya Python2.6 yapmayı deneyin