Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am g-div on github.
  • I am gdiv (https://keybase.io/gdiv) on keybase.
  • I have a public key ASA95S6918PdyZgWLfBKehY_kHK7hUVvwouYOkAWpzMnRgo

To claim this, I am signing this object:

@g-div
g-div / Analyzer
Last active August 29, 2015 14:14
Python natural language processor
import codecs
import re
from textblob_de import TextBlobDE as TextBlob, Word
class Analyzer:
reader = {}
def __init__(self, filename):
self.reader = codecs.open(filename, encoding='utf-8', mode='rb')