ADD file via upload

001大作业_new.py
Qw37tgf5k 3 years ago
parent 4ecfc5baaf
commit 37faf3a0c8

@ -0,0 +1,27 @@
# @Time : 2021/11/1 22:09
# @Author :wenkaic
# @File : 001python大作业
# @Project : python爬虫
import urllib.request
import requests
import re
url = 'http://www.ddxs.com/doupocangqiong/'
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.40",
}
# 请求对象定制
request = urllib.request.Request(url=url, headers=headers)
# 获取响应数据
response = urllib.request.urlopen(request)
content = response.read().decode('utf-8')
# 把数据下载到本地
# open方法默认为gbk编码如果要保存汉字就要指定编码为utf-8
fp = open('003斗破苍穹.txt', 'w', encoding='utf-8')
fp.write(content)
Loading…
Cancel
Save