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

【爬虫】 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之道