A small-sized dictionary for use with SudachiPy, the Japanese morphological analyzer. This package provides the dictionary core required by sudachipy to perform tokenization and part-of-speech tagging. Current version 20260428 is regularly updated (monthly) with neologisms and synonyms. It is the recommended dictionary for most use cases, balancing coverage and performance.
pip install sudachidict-smallVerified import paths — ran on the pinned version, not inferred.
Initialize SudachiPy tokenizer using the small dictionary and tokenize a sample sentence.
Use the new style: tokenizer.Tokenizer(dict_type='sudachidict-small') or omit (defaults to small).
Always use sudachipy to access the dictionary. The package is automatically loaded by sudachipy based on dict_type.
Do not import from sudachidict_small. Instead, import from sudachipy and specify dict_type='small'.
Uninstall the extra dictionary: pip uninstall sudachidict-core (or use distinct dict_type names).