要爬取网页数据,需要使用爬虫技术。下面是使用 Python 爬取网页数据的示例代码:
import requests
url ='https://www.example.com'
response = requests.get(url)
html = response.content.decode('utf-8')
print(html)
这段代码使用 requests
库发送 GET 请求获取网页内容,并使用 .content
属性获取字节形式的响应内容,最后使用 .decode
方法将其转换为字符串形式。
需要注意的是,有些网站可能会禁止爬取数据,因此