ImportError: BeautifulSoup adlı modül yok
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 …