gpt4 book ai didi

python - 如何创建一个函数来传递 BeautifulSoup

转载 作者:行者123 更新时间:2023-11-30 09:30:58 25 4
gpt4 key购买 nike

我正在尝试创建一个将内容传递给 beautiful soup 的函数,但我要么收到指示错误,要么不打印提供的 URL 中的文本。

from bs4 import BeautifulSoup
import urllib.request
def beautifulsoup(cont):
url = "https://en.wikipedia.org/wiki/Machine_learning"
content = urllib.request.urlopen(url)
soup = BeautifulSoup(content)
print(soup.get_text())

我希望得到一个将内容传递给 beautiful soup 并打印出文本的函数。

最佳答案

这应该有效

import requests
from bs4 import BeautifulSoup

def read_content():
url = "https://en.wikipedia.org/wiki/Machine_learning"
response = requests.get(url)
html = response.content
soup = BeautifulSoup(html)
return soup.text


print(read_content())

关于python - 如何创建一个函数来传递 BeautifulSoup ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58305233/

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