此问题已在此处有答案:
Using Python and BeautifulSoup (saved webpage source codes into a local file)(3个答案)
2小时前关闭
我试图打开并转换我的HTML文件到CSV,这样我就可以使用它作为一个dataframe。
import requests
from bs4 import BeautifulSoup
import pandas as pd
url = 'file:///C:/Users/jessi/OneDrive/Documents/posts.html'
response = request.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
print(soup)
得到这个错误:InvalidSchema:找不到“file://C://Users//jessi//OneDrive//Documents//posts.html”的连接适配器
1条答案
按热度按时间i7uaboj41#
这里没有服务器可供请求。你有一个简单的文件。只要读它。