Paul O'Leary McCann
Paul O'Leary McCann
Hello, I am the maintainer of mecab-python3. Users of your library have been opening issues at my repo because they have trouble building MeCab. They should not have to build...
Came up in #55, but odoriji across word boundaries do not work. The logic for handling odoriji is there, but currently the romaji word conversion doesn't have access to the...
This adds tests and a fix for the issue in #56. This actually isn't an ideal solution for original example in #55, though I'm not sure why オクト is used...
Came up in #55, but prefixes like `oct-` or `bio-` are not handled correctly due to the extra hyphen, and result in the empty string. This should be fixed.
If you install mecab-python3 on Windows and get an error like this: ImportError: DLL load failed while importing _MeCab: the specified module could not be found The recommended solution is...
Sometimes this error happens on Windows: ImportError: DLL load failed while importing fugashi: the specified module could not be found From experience, this can always be fixed by **using a...
See https://github.com/polm/cutlet/issues/59 for details. Minimal repro: ```python from fugashi import Tagger tagger = Tagger() xx = tagger("日本語") print(xx[0].char_type) # => 2 tagger("にほんご") # note this is not assigned anywhere print(xx[0].char_type)...
Hello, I was trying to get started with xc since it seems like a great idea, but I noticed that indented code blocks seem to not be recognized. To give...
There's many places in the code where things have to be modified when a new Python version is released, and every year I (or anyone making a PR) misses a...