31 lines
797 B
Python
31 lines
797 B
Python
import os
|
|
import shutil
|
|
import subprocess
|
|
import sys
|
|
import tempfile
|
|
|
|
from unicode_paths import CLDR_DIR
|
|
from geodata.file_utils import ensure_dir
|
|
|
|
this_dir = os.path.realpath(os.path.dirname(__file__))
|
|
sys.path.append(os.path.realpath(os.path.join(os.pardir, os.pardir)))
|
|
|
|
CLDR_URL = 'http://www.unicode.org/Public/cldr/latest/core.zip'
|
|
|
|
|
|
def download_cldr(temp_dir=None):
|
|
if os.path.exists(CLDR_DIR):
|
|
shutil.rmtree(CLDR_DIR)
|
|
ensure_dir(CLDR_DIR)
|
|
|
|
if not temp_dir:
|
|
temp_dir = tempfile.gettempdir()
|
|
|
|
cldr_filename = os.path.join(temp_dir, CLDR_URL.rsplit('/', 1)[-1])
|
|
|
|
subprocess.check_call(['wget', CLDR_URL, '-O', cldr_filename])
|
|
subprocess.check_call(['unzip', cldr_filename, '-d', CLDR_DIR])
|
|
|
|
if __name__ == '__main__':
|
|
download_cldr(*sys.argv[1:])
|