2017-03-15 19:37:18 +03:00
|
|
|
# coding: utf8
|
|
|
|
from __future__ import unicode_literals
|
2016-03-24 13:19:43 +03:00
|
|
|
|
2017-03-15 19:37:18 +03:00
|
|
|
import pip
|
|
|
|
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-03-18 14:59:41 +03:00
|
|
|
from .link import link_package
|
2017-03-18 17:14:48 +03:00
|
|
|
from .. import about
|
|
|
|
from .. import util
|
2016-03-24 13:19:43 +03:00
|
|
|
|
|
|
|
|
2017-03-15 19:37:18 +03:00
|
|
|
def download(model=None, direct=False):
|
|
|
|
check_error_depr(model)
|
|
|
|
|
|
|
|
if direct:
|
|
|
|
download_model('{m}/{m}.tar.gz'.format(m=model))
|
|
|
|
else:
|
2017-03-16 21:54:51 +03:00
|
|
|
model_name = about.__shortcuts__[model] if model in about.__shortcuts__ else 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-03-17 23:35:51 +03:00
|
|
|
link_package(model_name, model, force=True)
|
2017-03-15 19:37:18 +03:00
|
|
|
|
2017-03-17 01:23:26 +03:00
|
|
|
|
2017-03-15 19:37:18 +03:00
|
|
|
def get_compatibility():
|
|
|
|
version = about.__version__
|
|
|
|
r = requests.get(about.__compatibility__)
|
|
|
|
if r.status_code != 200:
|
2017-03-16 19:08:58 +03:00
|
|
|
util.sys_exit(
|
|
|
|
"Couldn't fetch compatibility table. Please find the right model for "
|
|
|
|
"your spaCy installation (v{v}), and download it manually:".format(v=version),
|
|
|
|
"python -m spacy.download [full model name + version] --direct",
|
|
|
|
title="Server error ({c})".format(c=r.status_code))
|
2017-03-15 19:37:18 +03:00
|
|
|
|
|
|
|
comp = r.json()['spacy']
|
|
|
|
if version not in comp:
|
2017-03-16 19:08:58 +03:00
|
|
|
util.sys_exit(
|
|
|
|
"No compatible models found for v{v} of spaCy.".format(v=version),
|
|
|
|
title="Compatibility error")
|
2017-03-15 19:37:18 +03:00
|
|
|
else:
|
|
|
|
return comp[version]
|
|
|
|
|
|
|
|
|
|
|
|
def get_version(model, comp):
|
|
|
|
if model not in comp:
|
2017-03-16 19:08:58 +03:00
|
|
|
util.sys_exit(
|
|
|
|
"No compatible model found for "
|
|
|
|
"{m} (spaCy v{v}).".format(m=model, v=about.__version__),
|
|
|
|
title="Compatibility error")
|
2017-03-15 19:37:18 +03:00
|
|
|
return comp[model][0]
|
|
|
|
|
|
|
|
|
|
|
|
def download_model(filename):
|
|
|
|
util.print_msg("Downloading {f}".format(f=filename))
|
2017-03-18 21:29:36 +03:00
|
|
|
download_url = about.__download_url__ + '/' + filename
|
|
|
|
subprocess.call([sys.executable, '-m', 'pip', 'install', download_url],
|
|
|
|
env=os.environ.copy())
|
2017-03-15 19:37:18 +03:00
|
|
|
|
|
|
|
|
|
|
|
def check_error_depr(model):
|
|
|
|
if not model:
|
2017-03-16 19:08:58 +03:00
|
|
|
util.sys_exit(
|
|
|
|
"python -m spacy.download [name or shortcut]",
|
|
|
|
title="Missing model name or shortcut")
|
2017-03-15 19:37:18 +03:00
|
|
|
|
|
|
|
if model == 'all':
|
2017-03-16 19:08:58 +03:00
|
|
|
util.sys_exit(
|
|
|
|
"As of v1.7.0, the download all command is deprecated. Please "
|
|
|
|
"download the models individually via spacy.download [model name] "
|
|
|
|
"or pip install. For more info on this, see the documentation: "
|
|
|
|
"{d}".format(d=about.__docs__),
|
|
|
|
title="Deprecated command")
|