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-15 19:37:18 +03:00
|
|
|
import requests
|
2017-03-18 14:59:41 +03:00
|
|
|
import os
|
2017-03-18 21:29:36 +03:00
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
|
2017-05-08 00:25:29 +03:00
|
|
|
from .link import link
|
2017-08-09 12:52:38 +03:00
|
|
|
from ..util import prints, get_package_path
|
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(
|
|
|
|
model=("model to download (shortcut or model name)", "positional", None, str),
|
|
|
|
direct=("force direct download. Needs model name with version and won't "
|
|
|
|
"perform compatibility check", "flag", "d", bool)
|
|
|
|
)
|
2017-05-27 21:01:46 +03:00
|
|
|
def download(cmd, model, direct=False):
|
|
|
|
"""
|
|
|
|
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:
|
|
|
|
download_model('{m}/{m}.tar.gz'.format(m=model))
|
|
|
|
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)
|
|
|
|
download_model('{m}-{v}/{m}-{v}.tar.gz'.format(m=model_name, v=version))
|
2017-05-21 01:28:37 +03:00
|
|
|
try:
|
2017-08-09 12:52:38 +03:00
|
|
|
# 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)
|
|
|
|
link(None, model_name, model, force=True, model_path=package_path)
|
2017-05-21 01:28:37 +03:00
|
|
|
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.
|
|
|
|
prints("Creating a shortcut link for 'en' didn't work (maybe you "
|
|
|
|
"don't have admin permissions?), but you can still load "
|
|
|
|
"the model via its full package name:",
|
|
|
|
"nlp = spacy.load('%s')" % model_name,
|
|
|
|
title="Download successful")
|
2017-03-15 19:37:18 +03:00
|
|
|
|
2017-03-17 01:23:26 +03:00
|
|
|
|
2017-04-26 19:00:28 +03:00
|
|
|
def get_json(url, desc):
|
|
|
|
r = requests.get(url)
|
2017-03-15 19:37:18 +03:00
|
|
|
if r.status_code != 200:
|
2017-05-08 00:25:29 +03:00
|
|
|
prints("Couldn't fetch %s. Please find a model for your spaCy installation "
|
|
|
|
"(v%s), and download it manually." % (desc, about.__version__),
|
2017-05-22 13:28:58 +03:00
|
|
|
about.__docs_models__, title="Server error (%d)" % r.status_code, exits=1)
|
2017-04-26 19:00:28 +03:00
|
|
|
return r.json()
|
|
|
|
|
|
|
|
|
|
|
|
def get_compatibility():
|
|
|
|
version = about.__version__
|
|
|
|
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:
|
2017-05-08 00:25:29 +03:00
|
|
|
prints("No compatible models found for v%s of spaCy." % version,
|
2017-05-22 13:28:58 +03:00
|
|
|
title="Compatibility error", 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):
|
|
|
|
if model not in comp:
|
2017-05-08 00:25:29 +03:00
|
|
|
version = about.__version__
|
|
|
|
prints("No compatible model found for '%s' (spaCy v%s)." % (model, version),
|
2017-05-22 13:28:58 +03:00
|
|
|
title="Compatibility error", 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-03-20 20:24:44 +03:00
|
|
|
subprocess.call([sys.executable, '-m',
|
|
|
|
'pip', 'install', '--no-cache-dir', download_url],
|
2017-03-18 21:29:36 +03:00
|
|
|
env=os.environ.copy())
|