|
__init__(self,
foldtitle=True,
ignorecase=False,
accelchars="",
termlength=3,
sourcelanguage="en",
invert=False,
stopfile=None)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
clean(self,
string)
returns the cleaned string that contains the text to be matched |
source code
|
|
|
stopmap(self,
word)
return case-mapped stopword for input word |
source code
|
|
|
stopword(self,
word,
defaultset=frozenset())
return stoplist frozenset for input word |
source code
|
|
|
addphrases(self,
words,
skips,
translation,
partials=True)
adds (sub)phrases with non-skipwords and more than one word |
source code
|
|
|
|
|
extract_terms(self,
create_termunit=create_termunit,
inputmin=1,
fullmsgmin=1,
substrmin=2,
locmin=2) |
source code
|
|
|
filter_terms(self,
terms,
sortorders=["frequency","dictionary","length"])
reduce subphrases from extracted terms |
source code
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|