17 lines
292 B
Python
17 lines
292 B
Python
import os
|
|
from .blob import TextBlob, Word, Sentence, Blobber, WordList
|
|
|
|
__version__ = '0.17.1'
|
|
__license__ = 'MIT'
|
|
__author__ = 'Steven Loria'
|
|
|
|
PACKAGE_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
__all__ = [
|
|
'TextBlob',
|
|
'Word',
|
|
'Sentence',
|
|
'Blobber',
|
|
'WordList',
|
|
]
|