def downViode(url, title):

path = r"G:\py\\%s" % title
if not os.path.exists(u'G:\py'):
os.makedirs(u'G:\py\')
print(title + "----下载开始")
urllib.request.urlretrieve(url, path)
import urllib