# -*- coding: utf-8 -*-
"""
Created on Sun Jun 9 18:41:01 2019
QQ群:476842922(欢迎加群讨论学习)
@author: Administrator
"""
#download file from selected url
import urllib.request
url="https://dictionary.blob.core.chinacloudapi.cn/media/audio/george/bf/b1/BFB1169AD46D18FDC9145E494EF4D22B.mp3"
downPath='aaa.mp3'#include the source name,not only path,"\\"the first is the escape character
urllib.request.urlretrieve(url,downPath)