"""
import urllib.request
urllib.request.urlretrieve('https://taratata.net/561/9546-0e561b211acb4fa486dfe6d93eba0511-1024x576.mp4', 'temp.mp4')
"""

import urllib.request as urllib2
dwn_link = 'https://taratata.net/561/9546-0e561b211acb4fa486dfe6d93eba0511-1024x576.mp4'

file_name = 'temp.mp4' 
rsp = urllib2.urlopen(dwn_link)
with open(file_name,'wb') as f:
    f.write(rsp.read())