GitXplorerGitXplorer
y

py-extractword

public
6 stars
3 forks
0 issues

Commits

List of commits on branch master.
Unverified
3df8f6dbfdd06c1e0ecba22cfe6aec742182c92a

refactoring with pep8

yyono committed 15 years ago
Unverified
e12e781c44437113b9ca2803a1bdb20b3b6da11a

setuptools を使うように変更

yyono committed 15 years ago
Unverified
85544e77af996210a11d8320664f87dd23569255

バグ修正

yyono committed 15 years ago
Unverified
980afd31b6566a846ccde4ffc49593ff91eb10ba

リファクタリング

yyono committed 15 years ago
Unverified
ebf41bd517fff94a14b94a32a89d4da1387ca1d1

first commit

yyono committed 15 years ago

README

The README file for this repository.

extractword

日本語文を単語に分解する。 接頭詞・接尾語を連結して一つの単語として扱う

Required

  • MeCab
  • mecab-python

Usage

from extractword import * sentence = Sentence() sentence.analysis_text(u"第二次世界大戦について") words = sentence.get_words() for word in words: ... print word ... 第二次 世界 大戦 について

Install % python setup.py build % sudo python setup.py install