2017-04-15 11:05:15 +00:00
|
|
|
# coding: utf8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2016-09-24 13:42:01 +00:00
|
|
|
from . import about
|
2017-05-07 21:25:29 +00:00
|
|
|
from .util import prints
|
2017-05-08 13:40:16 +00:00
|
|
|
from .cli import download
|
2017-03-15 16:37:55 +00:00
|
|
|
|
|
|
|
|
2017-05-08 13:35:30 +00:00
|
|
|
PRON_LEMMA = "-PRON-"
|
|
|
|
DET_LEMMA = "-DET-"
|
2017-05-07 21:29:22 +00:00
|
|
|
|
2017-03-17 17:47:05 +00:00
|
|
|
|
2017-05-08 13:32:10 +00:00
|
|
|
def depr_model_download(lang):
|
2017-04-15 09:59:21 +00:00
|
|
|
"""
|
|
|
|
Replace download modules within en and de with deprecation warning and
|
2017-05-08 13:32:10 +00:00
|
|
|
download default language model (using shortcut).
|
2017-04-15 09:59:21 +00:00
|
|
|
"""
|
2017-05-08 13:32:10 +00:00
|
|
|
prints("The spacy.%s.download command is now deprecated. Please use "
|
|
|
|
"python -m spacy download [model name or shortcut] instead. For "
|
|
|
|
"more info, see the docs: %s." % (lang, about.__docs__),
|
|
|
|
"Downloading default '%s' model now..." % lang,
|
|
|
|
title="Warning: deprecated command")
|
|
|
|
download(lang)
|