Metadata-Version: 2.0
Name: taggable
Version: 0.2.0
Summary: Taggable types for annotating data
Home-page: https://github.com/ville-k/taggable
Author: Ville Kallioniemi
Author-email: ville.kallioniemi@gmail.com
License: MIT
Keywords: tag annotate enrich text data NLP
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Topic :: Text Processing

Taggable
--------

>>> from taggable import TaggableSequence
>>> sample = TaggableSequence('Do it')
>>> sample.tag("POS", "VERB")
>>> for tag in sample.tags("POS"):
>>>     print(tag.tag)
>>> list = TaggableSequence([10, 2])



