libmecab ~master

A wrapper for MeCab


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

libmecab

Usage

import std.stdio;

import libmecab;

void main()
{
    auto tagger = MeCabTagger.create();
    auto nodes = tagger.parseToNodes("すもももももももものうち");
    foreach (node; nodes)
    {
        writeln(node.surface, '\t', node.feature);
    }
}
Authors:
  • lempiji
Dependencies:
bindbc-mecab
Versions:
1.0.0 2020-Jul-24
~master 2020-Jul-24
Show all 2 versions
Download Stats:
  • 0 downloads today

  • 0 downloads this week

  • 0 downloads this month

  • 7 downloads total

Score:
0.9
Short URL:
libmecab.dub.pm