Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 urllib 从给定的 url 下载图像
urllib.urlretrieve(ImageUrl,ImageName)
我的问题是:是否可以在下载图像之前使用 urllib 清除缓存,还是我必须先浏览到图像 url,清除缓存,然后通过 urllib.urlretrieve 下载图像?我正在使用 Python 2.7;浏览器:铬
提前致谢。
你可以试试:
urllib.urlcleanup()
它清除可能由先前调用 urlretrieve() 建立的缓存。
来源:https ://docs.python.org/2/library/urllib.html