mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 17:39:47 +00:00
11 lines
274 B
Python
Executable file
11 lines
274 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import urllib.request
|
|
import shutil
|
|
import sys
|
|
import os
|
|
|
|
os.makedirs(os.path.dirname(sys.argv[2]), exist_ok=True)
|
|
|
|
with urllib.request.urlopen(sys.argv[1]) as response, open(sys.argv[2], 'wb') as out_file:
|
|
shutil.copyfileobj(response, out_file)
|