BeautifulSoup无法正常工作,无法从部分初始化的模块'bs4'导入名称'BeautifulSoup'

时间:2019-12-08 16:06:07

标签: python beautifulsoup

我不断收到错误代码: 从bs4导入BeautifulSoup ImportError:无法从部分初始化的模块“ bs4”中导入名称“ BeautifulSoup”(很可能是由于循环导入) 在任何地方都找不到解决方案,请帮忙

// Pascal casing
services.AddControllersWithViews().
        AddJsonOptions(options =>
        {
            options.JsonSerializerOptions.PropertyNameCaseInsensitive = true;
            options.JsonSerializerOptions.PropertyNamingPolicy = null;
        });
import requests
from bs4 import BeautifulSoup

source = requests.get('https://www.instagram.com/wedding.pages/followers/').text

soup = BeautifulSoup(source, 'lxml')

print(soup.prettify())

1 个答案:

答案 0 :(得分:3)

尝试将要处理的python文件从bs4重命名为其他名称。也许您在同一个目录ps4中命名了其他文件,所以您必须对其进行更改!