Specifically: * Remove dead assignments to _data and _stop_words. * Convert _word_freqs from class field to instance field to avoid side effects. * Remove no-op call ''.join(self._data) because self._data is guaranteed to be a string.
82 lines
2.4 KiB
Python
Executable File
82 lines
2.4 KiB
Python
Executable File
#!/usr/bin/env python
|
|
import sys, re, operator, string
|
|
from abc import ABCMeta
|
|
|
|
#
|
|
# The classes
|
|
#
|
|
class TFExercise():
|
|
__metaclass__ = ABCMeta
|
|
|
|
def info(self):
|
|
return self.__class__.__name__
|
|
|
|
class DataStorageManager(TFExercise):
|
|
""" Models the contents of the file """
|
|
|
|
def __init__(self, path_to_file):
|
|
with open(path_to_file) as f:
|
|
self._data = f.read()
|
|
pattern = re.compile('[\W_]+')
|
|
self._data = pattern.sub(' ', self._data).lower()
|
|
|
|
def words(self):
|
|
""" Returns the list words in storage """
|
|
return self._data.split()
|
|
|
|
def info(self):
|
|
return super(DataStorageManager, self).info() + ": My major data structure is a " + self._data.__class__.__name__
|
|
|
|
class StopWordManager(TFExercise):
|
|
""" Models the stop word filter """
|
|
|
|
def __init__(self):
|
|
with open('../stop_words.txt') as f:
|
|
self._stop_words = f.read().split(',')
|
|
# add single-letter words
|
|
self._stop_words.extend(list(string.ascii_lowercase))
|
|
|
|
def is_stop_word(self, word):
|
|
return word in self._stop_words
|
|
|
|
def info(self):
|
|
return super(StopWordManager, self).info() + ": My major data structure is a " + self._stop_words.__class__.__name__
|
|
|
|
class WordFrequencyManager(TFExercise):
|
|
""" Keeps the word frequency data """
|
|
|
|
def __init__(self):
|
|
self._word_freqs = {}
|
|
|
|
def increment_count(self, word):
|
|
if word in self._word_freqs:
|
|
self._word_freqs[word] += 1
|
|
else:
|
|
self._word_freqs[word] = 1
|
|
|
|
def sorted(self):
|
|
return sorted(self._word_freqs.iteritems(), key=operator.itemgetter(1), reverse=True)
|
|
|
|
def info(self):
|
|
return super(WordFrequencyManager, self).info() + ": My major data structure is a " + self._word_freqs.__class__.__name__
|
|
|
|
class WordFrequencyController(TFExercise):
|
|
def __init__(self, path_to_file):
|
|
self._storage_manager = DataStorageManager(path_to_file)
|
|
self._stop_word_manager = StopWordManager()
|
|
self._word_freq_manager = WordFrequencyManager()
|
|
|
|
def run(self):
|
|
for w in self._storage_manager.words():
|
|
if not self._stop_word_manager.is_stop_word(w):
|
|
self._word_freq_manager.increment_count(w)
|
|
|
|
word_freqs = self._word_freq_manager.sorted()
|
|
for (w, c) in word_freqs[0:25]:
|
|
print w, ' - ', c
|
|
|
|
#
|
|
# The main function
|
|
#
|
|
WordFrequencyController(sys.argv[1]).run()
|