2017-03-15 19:37:18 +03:00
|
|
|
# coding: utf8
|
|
|
|
from __future__ import unicode_literals
|
2016-03-24 13:19:43 +03:00
|
|
|
|
2017-05-22 13:28:58 +03:00
|
|
|
import plac
|
2017-03-18 14:59:41 +03:00
|
|
|
import os
|
2017-03-18 21:29:36 +03:00
|
|
|
import subprocess
|
|
|
|
import sys
|
2018-03-28 13:46:07 +03:00
|
|
|
import ujson
|
2017-03-18 21:29:36 +03:00
|
|
|
|
2017-05-08 00:25:29 +03:00
|
|
|
from .link import link
|
2018-04-03 16:50:31 +03:00
|
|
|
from ._messages import Messages
|
2017-08-09 12:52:38 +03:00
|
|
|
from ..util import prints, get_package_path
|
2018-03-29 01:08:16 +03:00
|
|
|
from ..compat import url_read, HTTPError
|
2017-03-18 17:14:48 +03:00
|
|
|
from .. import about
|
2016-03-24 13:19:43 +03:00
|
|
|
|
|
|
|
|
2017-05-22 13:28:58 +03:00
|
|
|
@plac.annotations(
|
2017-10-27 15:38:39 +03:00
|
|
|
model=("model to download, shortcut or name)", "positional", None, str),
|
2017-05-22 13:28:58 +03:00
|
|
|
direct=("force direct download. Needs model name with version and won't "
|
2017-10-27 15:38:39 +03:00
|
|
|
"perform compatibility check", "flag", "d", bool))
|
2018-01-04 23:33:47 +03:00
|
|
|
def download(model, direct=False):
|
2017-05-27 21:01:46 +03:00
|
|
|
"""
|
|
|
|
Download compatible model from default download path using pip. Model
|
2017-05-22 13:28:58 +03:00
|
|
|
can be shortcut, model name or, if --direct flag is set, full model name
|
|
|
|
with version.
|
|
|
|
"""
|
2017-03-15 19:37:18 +03:00
|
|
|
if direct:
|
2017-08-23 13:36:31 +03:00
|
|
|
dl = download_model('{m}/{m}.tar.gz'.format(m=model))
|
2017-03-15 19:37:18 +03:00
|
|
|
else:
|
2017-05-08 00:25:29 +03:00
|
|
|
shortcuts = get_json(about.__shortcuts__, "available shortcuts")
|
|
|
|
model_name = shortcuts.get(model, model)
|
2017-03-15 19:37:18 +03:00
|
|
|
compatibility = get_compatibility()
|
2017-03-16 21:54:51 +03:00
|
|
|
version = get_version(model_name, compatibility)
|
2017-10-27 15:38:39 +03:00
|
|
|
dl = download_model('{m}-{v}/{m}-{v}.tar.gz'.format(m=model_name,
|
|
|
|
v=version))
|
2018-04-03 16:50:31 +03:00
|
|
|
if dl != 0: # if download subprocess doesn't return 0, exit
|
2018-01-03 23:03:36 +03:00
|
|
|
sys.exit(dl)
|
|
|
|
try:
|
|
|
|
# Get package path here because link uses
|
|
|
|
# pip.get_installed_distributions() to check if model is a
|
|
|
|
# package, which fails if model was just installed via
|
|
|
|
# subprocess
|
|
|
|
package_path = get_package_path(model_name)
|
2018-01-29 22:25:21 +03:00
|
|
|
link(model_name, model, force=True,
|
2018-01-03 23:03:36 +03:00
|
|
|
model_path=package_path)
|
|
|
|
except:
|
|
|
|
# Dirty, but since spacy.download and the auto-linking is
|
|
|
|
# mostly a convenience wrapper, it's best to show a success
|
|
|
|
# message and loading instructions, even if linking fails.
|
2018-04-03 16:50:31 +03:00
|
|
|
prints(Messages.M001.format(name=model_name), title=Messages.M002)
|
2017-03-17 01:23:26 +03:00
|
|
|
|
2018-01-03 22:14:50 +03:00
|
|
|
|
2017-04-26 19:00:28 +03:00
|
|
|
def get_json(url, desc):
|
2018-03-28 13:46:07 +03:00
|
|
|
try:
|
2018-03-29 01:08:16 +03:00
|
|
|
data = url_read(url)
|
|
|
|
except HTTPError as e:
|
2018-04-03 16:50:31 +03:00
|
|
|
prints(Messages.M004.format(desc, about.__version__),
|
|
|
|
title=Messages.M003.format(e.code, e.reason), exits=1)
|
2018-03-29 01:08:16 +03:00
|
|
|
return ujson.loads(data)
|
2017-04-26 19:00:28 +03:00
|
|
|
|
|
|
|
|
|
|
|
def get_compatibility():
|
|
|
|
version = about.__version__
|
2017-11-08 20:40:21 +03:00
|
|
|
version = version.rsplit('.dev', 1)[0]
|
2017-04-26 19:00:28 +03:00
|
|
|
comp_table = get_json(about.__compatibility__, "compatibility table")
|
|
|
|
comp = comp_table['spacy']
|
2017-03-15 19:37:18 +03:00
|
|
|
if version not in comp:
|
2018-04-03 16:50:31 +03:00
|
|
|
prints(Messages.M006.format(version=version), title=Messages.M005,
|
|
|
|
exits=1)
|
2017-04-26 19:00:28 +03:00
|
|
|
return comp[version]
|
2017-03-15 19:37:18 +03:00
|
|
|
|
|
|
|
|
|
|
|
def get_version(model, comp):
|
2017-11-08 20:03:52 +03:00
|
|
|
model = model.rsplit('.dev', 1)[0]
|
2017-03-15 19:37:18 +03:00
|
|
|
if model not in comp:
|
2018-04-03 16:50:31 +03:00
|
|
|
prints(Messages.M007.format(name=model, version=about.__version__),
|
|
|
|
title=Messages.M005, exits=1)
|
2017-03-15 19:37:18 +03:00
|
|
|
return comp[model][0]
|
|
|
|
|
|
|
|
|
|
|
|
def download_model(filename):
|
2017-03-18 21:29:36 +03:00
|
|
|
download_url = about.__download_url__ + '/' + filename
|
2017-10-27 15:38:39 +03:00
|
|
|
return subprocess.call(
|
2018-01-03 19:40:37 +03:00
|
|
|
[sys.executable, '-m', 'pip', 'install', '--no-cache-dir', '--no-deps',
|
2017-10-27 15:38:39 +03:00
|
|
|
download_url], env=os.environ.copy())
|