mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
14 lines
232 B
Python
14 lines
232 B
Python
|
import plac
|
||
|
from ..download import download
|
||
|
|
||
|
|
||
|
@plac.annotations(
|
||
|
force=("Force overwrite", "flag", "f", bool),
|
||
|
)
|
||
|
def main(data_size='all', force=False):
|
||
|
download('de', force)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
plac.call(main)
|