spaCy/spacy/cli/download.py

106 lines
3.9 KiB
Python
Raw Normal View History

# coding: utf8
from __future__ import unicode_literals
import plac
2017-03-18 14:59:41 +03:00
import os
import subprocess
import sys
2018-03-28 13:46:07 +03:00
import ujson
2017-05-08 00:25:29 +03:00
from .link import link
from ._messages import Messages
from ..util import prints, get_package_path
2018-03-29 01:08:16 +03:00
from ..compat import url_read, HTTPError
from .. import about
@plac.annotations(
2017-10-27 15:38:39 +03:00
model=("model to download, shortcut or name)", "positional", None, str),
direct=("force direct download. Needs model name with version and won't "
"perform compatibility check", "flag", "d", bool),
unsecure=("unsecure mode - disables the verification of certificates",
"flag", "u", bool),
caFile=("specify a certificate authority file to use for certificates "
"validation. Ignored if --unsecure is used", "option", "c"))
def download(model, direct=False, unsecure=False, caFile=None):
"""
Download compatible model from default download path using pip. Model
can be shortcut, model name or, if --direct flag is set, full model name
with version.
The --unsecure optional flag can be used to disable ssl verification
The --caFile option can be used to provide a local CA file
used for certificate verification.
"""
# sslVerify is the argument handled to the 'verify' parameter
# of requests package. It must be either None, a boolean,
# or a String containing the path to CA file
sslVerify = None
if unsecure:
caFile = None
sslVerify = False
else:
if caFile != None:
sslVerify = caFile
# Download the model
if direct:
dl = download_model('{m}/{m}.tar.gz'.format(m=model))
else:
shortcuts = get_json(about.__shortcuts__, "available shortcuts", sslVerify)
2017-05-08 00:25:29 +03:00
model_name = shortcuts.get(model, model)
compatibility = get_compatibility(sslVerify)
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))
if dl != 0: # if download subprocess doesn't return 0, exit
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)
link(model_name, model, force=True,
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.
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
def get_json(url, desc, sslVerify):
2018-03-28 13:46:07 +03:00
try:
data = url_read(url, verify=sslVerify)
2018-03-29 01:08:16 +03:00
except HTTPError as e:
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)
def get_compatibility(sslVerify):
version = about.__version__
version = version.rsplit('.dev', 1)[0]
comp_table = get_json(about.__compatibility__, "compatibility table", sslVerify)
comp = comp_table['spacy']
if version not in comp:
prints(Messages.M006.format(version=version), title=Messages.M005,
exits=1)
return comp[version]
def get_version(model, comp):
model = model.rsplit('.dev', 1)[0]
if model not in comp:
prints(Messages.M007.format(name=model, version=about.__version__),
title=Messages.M005, exits=1)
return comp[model][0]
def download_model(filename):
download_url = about.__download_url__ + '/' + filename
2017-10-27 15:38:39 +03:00
return subprocess.call(
[sys.executable, '-m', 'pip', 'install', '--no-cache-dir', '--no-deps',
2017-10-27 15:38:39 +03:00
download_url], env=os.environ.copy())