ImportError: No module named BeautifulSoup

前端 未结 8 1178
無奈伤痛
無奈伤痛 2020-11-28 23:50

I have installed BeautifulSoup using easy_install and trying to run following script

from BeautifulSoup import BeautifulSoup
import re

doc = [\'         


        
8条回答
  •  野性不改
    2020-11-29 00:35

    Try this from bs4 import BeautifulSoup

    This might be a problem with Beautiful Soup, version 4, and the beta days. I just read this from the homepage.

提交回复
热议问题