gpt4 book ai didi

python - 找不到模块对象

转载 作者:太空宇宙 更新时间:2023-11-04 00:16:03 24 4
gpt4 key购买 nike

File "C:/Python36/Projects/NFL/read in.py", line 8, in <module>
table = bs(open('C:\page.html','r').read()).find('table')
TypeError: 'module' object is not callable

当我尝试使用 bs4 将保存的 .html 页面加载回脚本时收到上述错误。无论文件在脚本文件夹中还是在脚本文件夹外,都会发生这种情况,因此我将其移至 C 盘以方便使用。

import bs4 as bs
import pandas as pd
import os


table = bs(open('C:\page.html','r').read()).find('table')
dfs = pd.read_html(table)

for df in dfs:
print(dfs)

df.to_csv('ALL_Ref_AtBats.csv', mode='a')

最佳答案

我认为你需要导入 BeautifulSoup像这样。

from bs4 import BeautifulSoup as bs

关于python - 找不到模块对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50939865/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com