# -*- coding: utf-8 -*-
# vi: set ft=python :
import konch
from textblob import TextBlob, Blobber, Word, Sentence

konch.config({
    'context': {
        'tb': TextBlob,
        'Blobber': Blobber,
        'Word': Word,
        'Sentence': Sentence,
    },
    'prompt': '>>> ',
    'ipy_autoreload': True,
})
