spaCy/spacy/__main__.py

34 lines
953 B
Python
Raw Normal View History

# coding: utf8
2017-03-18 20:14:03 +03:00
from __future__ import print_function
# NB! This breaks in plac on Python 2!!
2017-03-23 13:08:30 +03:00
#from __future__ import unicode_literals
if __name__ == '__main__':
import plac
import sys
2017-08-19 22:45:23 +03:00
from spacy.cli import download, link, info, package, train, convert, model
2017-08-22 00:23:05 +03:00
from spacy.cli import profile
from spacy.util import prints
2017-08-19 22:45:23 +03:00
commands = {
'download': download,
'link': link,
'info': info,
'train': train,
'convert': convert,
'package': package,
2017-08-22 00:23:05 +03:00
'model': model,
'profile': profile,
2017-08-19 22:45:23 +03:00
}
if len(sys.argv) == 1:
prints(', '.join(commands), title="Available commands", exits=1)
command = sys.argv.pop(1)
sys.argv[0] = 'spacy %s' % command
if command in commands:
plac.call(commands[command])
else:
2017-08-19 22:45:23 +03:00
prints(
"Available: %s" % ', '.join(commands),
title="Unknown command: %s" % command,
exits=1)