【爬虫】 02 将爬取到的网页写入文件中
程序员文章站
2022-05-03 20:04:45
...
import urllib.request
# 在执行过程中,会产生缓存
urllib.request.urlretrieve('http://www.mingxing.com/',filename=r'D:\pypypy\space\18\1.txt')
# 清除缓存
urllib.request.urlcleanup()
print('已清除')
上一篇: Python爬虫-urllib库
推荐阅读