Add acceptedStudentsCSVExport function to stats.py script.
This funtion is used to generate CSV with all accepted students. It still needs some work and I left TODOs there. I also added helper function for saving data to CSV, which can be reused for other kinds of reports.
# Performance note: I benchmarked this code using a set instead of# a list for the stopwords and was surprised to find that the list# performed /better/ than the set - maybe because it's only a small# list.stopwords = '''iaanareasatbebyforfromhowinisitofonorthatthethistowaswhatwhenwhere'''.split()def strip_stopwords(sentence): "Removes stopwords - also normalizes whitespace" words = sentence.split() sentence = [] for word in words: if word.lower() not in stopwords: sentence.append(word) return u' '.join(sentence)