爬虫 通过编写程序来获取到互联网上的资源
需求:用程序模拟浏览器 输入一个网址 从该网址中获取到资源或者内容
"""
File: 01入门.py
Author: chde_wang
Date: 2021-04-19 14:30:31
Description:
"""
# 爬虫 通过编写程序来获取到互联网上的资源
# 百度
# 需求:用程序模拟浏览器 输入一个网址 从该网址中获取到资源或者内容
from urllib.request import urlopen
url = "http://www.baidu.com"
resp = urlopen(url)print(resp)
print(resp.read().decode("utf-8"))with open("mybaidu.html",mode="w") as f:f.write(resp.read().decode("utf-8"))
print("over!")