[urllib]urlretrieve在python3

python3下面要使用:urllib.request.urlretrieve()这种形式的调用

1 from urllib.request import urlretrieve
2 
3 
4 urlretrieve(url, path)
原文地址:https://www.cnblogs.com/sigai/p/8178375.html