Ejemplo n.º 1
0
 def tag(self, text, tokenize=True):
     '''Tag a string `text`.'''
     return pattern_tag(text, tokenize)
Ejemplo n.º 2
0
 def tag(self, text, tokenize=True):
     """Tag a string or BaseBlob."""
     if not isinstance(text, textblob.compat.text_type):
         text = text.raw
     return pattern_tag(text, tokenize)
Ejemplo n.º 3
0
 def tag(self, text, tokenize=True):
     '''Tag a string `text`.'''
     return pattern_tag(text, tokenize)
Ejemplo n.º 4
0
 def tag(self, text, tokenize=True):
     """Tag a string `text`."""
     return pattern_tag(text, tokenize)
Ejemplo n.º 5
0
 def tag(self, sentence, tokenize=True):
     '''Tag a string `sentence`.'''
     return pattern_tag(sentence, tokenize)
Ejemplo n.º 6
0
 def tag(self, sentence, tokenize=True):
     '''Tag a string `sentence`.'''
     return pattern_tag(sentence, tokenize)
Ejemplo n.º 7
0
 def tag(self, text, tokenize=True):
     """Tag a string `text`."""
     return pattern_tag(text, tokenize)