欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python实现简单的爬虫

程序员文章站 2022-06-05 19:45:17
...
#导入python的爬虫包
import urllib.request

#向指定的url地址发起请求,并返回服务器响应的数据(文件的对象)
response = urllib.request.urlopen("http://www.baidu.com")

#读取接收的数据
data = response.read()

print(data)

#将读取到的数据写入dd盘file.html文件中
with open(r"D:\file.html", "wb") as f:
    f.write(data)