Skip to content

gosusnp/termex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Termex

Lexicon based term extraction with case and space insensitive evaluations. The internal structure and text evaluation is written in C++.

Installation

Preferably inside a virtualenv.

pip install cython
python setup.py install

Getting started

>>> from termex import PyTermex

>>> tx = PyTermex()
>>> tx.add(u"term1")
set([])
>>> tx.add(u"another term")
set([])
>>> tx.extract(u"I'm term1 and this is another term")
[(4, 9, set([])), (22, 34, set([]))]

About

Term extraction service

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published