mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 05:07:03 +03:00
9 lines
222 B
Python
9 lines
222 B
Python
|
from wasabi import msg
|
||
|
from spacy.__main__ import FILE
|
||
|
from spacy.cli import setup_cli
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
cli = setup_cli()
|
||
|
cli.to_static(FILE)
|
||
|
msg.good("Successfully generated static CLI", str(FILE))
|