forked from sanand0/beautiful-visualisations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwordcount.py
23 lines (20 loc) · 1.6 KB
/
wordcount.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
Converts a Twitter JSON file provided by tweets-search.py into a word count file
"""
import re
import sys
import csv
import json
import collections
stopwords = set(['i', 'me', 'my', 'myself', 'we', 'our', 'ours', 'ourselves', 'you', 'your', 'yours', 'yourself', 'yourselves', 'he', 'him', 'his', 'himself', 'she', 'her', 'hers', 'herself', 'it', 'its', 'itself', 'they', 'them', 'their', 'theirs', 'themselves', 'what', 'which', 'who', 'whom', 'this', 'that', 'these', 'those', 'am', 'is', 'are', 'was', 'were', 'be', 'been', 'being', 'have', 'has', 'had', 'having', 'do', 'does', 'did', 'doing', 'a', 'an', 'the', 'and', 'but', 'if', 'or', 'because', 'as', 'until', 'while', 'of', 'at', 'by', 'for', 'with', 'about', 'against', 'between', 'into', 'through', 'during', 'before', 'after', 'above', 'below', 'to', 'from', 'up', 'down', 'in', 'out', 'on', 'off', 'over', 'under', 'again', 'further', 'then', 'once', 'here', 'there', 'when', 'where', 'why', 'how', 'all', 'any', 'both', 'each', 'few', 'more', 'most', 'other', 'some', 'such', 'no', 'nor', 'not', 'only', 'own', 'same', 'so', 'than', 'too', 'very', 's', 't', 'can', 'will', 'just', 'don', 'should', 'now',
'jsfoo', 'http', 'amp'])
re_word = re.compile(r'[a-z0-9\']+')
words = collections.Counter()
for tweet in json.loads(open(sys.argv[1]).read()):
for word in re_word.findall(tweet['text'].lower()):
if len(word) > 2 and word not in stopwords:
words[word] += 1
out = csv.writer(sys.stdout, lineterminator='\n')
out.writerow(['word', 'count'])
for word, count in words.most_common():
out.writerow([word.encode('utf8'), count])