-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpreprocess.py
102 lines (58 loc) · 2.55 KB
/
preprocess.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# -*- coding: utf-8 -*-
"""
this code implements a basic twitter-aware preprocesser
"""
import re
import HTMLParser
import progressbar
def remove(twitter):
tweets = twitter.tweets
count = tweets.count()
tweets = tweets.find({}, {'text':1, '_id':0})
container = set()
print "remove duplicate tweets"
bar = progressbar.ProgressBar(maxval = count, widgets = [progressbar.Bar('=', '[', ']'), ' ', progressbar.Percentage()]).start()
i = 0
for tweet in tweets:
container.add(tweet['text'])
bar.update(i + 1)
i = i + 1
bar.finish()
print "remve rt tweets"
bar = progressbar.ProgressBar(maxval = len(container), widgets = [progressbar.Bar('=', '[', ']'), ' ', progressbar.Percentage()]).start()
i = 0
for tweet in container:
if 'RT' not in tweet and 'rt' not in tweet:
twitter.removed.insert({'text':tweet})
bar.update(i + 1)
i = i + 1
bar.finish()
def process(tweet):
tweet = re.sub(u'\u2026', ' ', tweet) #deal with horizontal ellipsis
tweet = re.sub(u'[\u201c\u201d]', '"', tweet) #deal with double quotation mark
tweet = re.sub(u'[\u2018\u2019]', '\'', tweet) #deal with single quotation mark
tweet = re.sub('h…', 'URL', tweet) #deal with truncated url
tweet = re.sub('ht?….*$', 'URL', tweet) #deal with truncated url
tweet = re.sub('(^|)?http?s?:?/?/?.*?( |$)', 'URL', tweet) #deal with compelted url
tweet = re.sub(u'(RT |\\\\|\u201c)"?@.*?[: ]', ' ', tweet) #deal with retweet
tweet = re.sub('\.?@.*?( |:|$)', 'USERNAME ', tweet) #deal with username
tweet = HTMLParser.HTMLParser().unescape(tweet) #deal with character entity
tweet = re.sub('[][!"#$*,/;<=>?@\\\\^_`{|}~]', ' ', tweet) #deal with punctuation
tweet = re.sub('( - )', ' ', tweet)
tweet = re.sub('---', ' ', tweet)
tweet = re.sub('\.\.\.', ' ', tweet)
tweet = re.sub('(, |\.( |$))', ' ', tweet)
return tweet
def preprocess(twitter):
tweets = twitter.removed
count = tweets.count()
tweets = tweets.find({}, {'text':1, '_id':0})
print "preprocess tweets"
bar = progressbar.ProgressBar(maxval = count, widgets = [progressbar.Bar('=', '[', ']'), ' ', progressbar.Percentage()]).start()
i = 0
for tweet in tweets:
tweet = process(tweet['text'])
twitter.preprocessed.insert({'text':tweet})
bar.update(i + 1)
i = i + 1
bar.finish()