reddit-analysis
reddit-analysis copied to clipboard
Use Python's Counter module to reduce code size
It looks like Python's Counter module (http://docs.python.org/2/library/collections.html#counter-objects) would simplify some of the code (https://github.com/rhiever/reddit-analysis/blob/master/redditanalysis/init.py#L167) by doing the word counting for us.
Low priority, but useful to reduce code size.