-
Notifications
You must be signed in to change notification settings - Fork 0
/
SourceCode.py
435 lines (299 loc) · 13.6 KB
/
SourceCode.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
import re
import os
from datetime import datetime
import stylecloud
from stop_words import get_stop_words
from wordcloud import STOPWORDS
fileName = 'MachauWingiesChatData.txt'
conversationThreshold = 30 # minutes
def getDateTimeNameMessage(line):
'''This function takes a line as input parameter
and returns a tuple in the following order
(date, time, name, message)
date as datetime type
time as datetime object'''
date = re.search("[0-9]{2}/[0-9]{2}/[0-9]{4}", line)
time = re.search("[0-9]+:[0-9]{2}\s[ap]m", line)
name = re.search("\s-\s(.*?):", line)
message = re.search("\s-\s.*:\s(.+)", line)
if date is not None and time is not None and name is not None and message is not None: # This line contains a new data
date = datetime.strptime(date.group(0), '%d/%m/%Y')
time = datetime.strptime(time.group(0), '%I:%M %p')
name = name.group(1)
message = message.group(1)
# Someone left a group message
elif date is not None and time is not None and (name is None or message is None):
date = None
time = None
name = None
message = None
else: # This only contains message, continuation of previous message
date = None
time = None
name = None
message = line
return (date, time, name, message)
def getSimplifiedChatData(filename):
'''This function takes filename as input parameter
and returns a list of all chat data
with each value being a tuple in the order
(date, time, name, message)
date is datetime object
time is datetime object
This function merges large messages which come in new line in chat data text file'''
chatDataTxt = open(filename, 'r', encoding="utf8") # opened as read only
chatDataList = [] # to store and return the simplified data
for eachLine in chatDataTxt:
dateTimeNameMsgTuple = getDateTimeNameMessage(eachLine)
if dateTimeNameMsgTuple[0] is not None: # New data found
chatDataList.append(dateTimeNameMsgTuple)
# Message is None i.e someone left a group. Skip this data
elif dateTimeNameMsgTuple[-1] is None:
pass
else: # message continues from previous data
newMsgForPreviousData = chatDataList[-1][-1] + \
dateTimeNameMsgTuple[-1]
dateForPreviousData = chatDataList[-1][0]
timeForPreviousData = chatDataList[-1][1]
nameForPreviousData = chatDataList[-1][2]
chatDataList[-1] = (dateForPreviousData, timeForPreviousData,
nameForPreviousData, newMsgForPreviousData)
return chatDataList
def getAllParticipantsName(allChatDataSimplified, includeCompleteName=False):
'''This function returns a list of names of all the group participants
Requirement is that they should have posted atleast a single message
Name returned is the name saved in persons whose data has been shared
Input: output of getSimplifiedChatData
Optionally it accepts includeCompleteName parameter which if true returns complete name
else just first name is included'''
allChatParticipants = set() # varible of set type to store all participants name
for eachChatData in allChatDataSimplified:
name = eachChatData[2]
if includeCompleteName: # full name is required
pass
else: # only first name is required
name = name.split()[0]
allChatParticipants.add(name)
return list(allChatParticipants)
def GetBasicStats(chatDataList):
''' Input: list output from getSimplifiedChatData function
Output: tuples of general stats (number of messages, Chat duration, total number of characters in
message(including spaces), total number of words, total number of media content)
'''
nMsg = len(chatDataList)
ChatDuration = (chatDataList[-1][0] - chatDataList[0][0]).days + 1
nCharacters = 0 # including spaces
nWords = 0
nMedia = 0
for item in chatDataList:
nCharacters = nCharacters + len(item[3])
nWords = nWords + len(item[3].split())
if item[3] == "<Media omitted>":
nMedia = nMedia + 1
return (nMsg, ChatDuration, nCharacters, nWords, nMedia)
def GetDetailedStats(chatDataList):
'''
Input: list output from getSimplifiedChatData function
Output: tuple (AvgMsgPerDay, AvgCharPerMsg, AvgCharPerDay, LenLongestMsg, AvgWordsPerMsg, AvgWordsPerDay, AvgMediaPerDay)
'''
(nMsg, ChatDuration, nCharacters, nWords, nMedia) = GetBasicStats(chatDataList)
AvgMsgPerDay = int(nMsg/ChatDuration)
AvgCharPerMsg = int(nCharacters/nMsg)
AvgCharPerDay = int(AvgMsgPerDay*AvgCharPerMsg)
AvgWordsPerMsg = int(nWords/nMsg)
AvgWordsPerDay = int(AvgWordsPerMsg*AvgMsgPerDay)
AvgMediaPerDay = int(nMedia/ChatDuration)
LenLongestMsg = 0
for item in chatDataList:
LenLongestMsg = max(LenLongestMsg, len(item[3]))
return (AvgMsgPerDay, AvgCharPerMsg, AvgCharPerDay, LenLongestMsg, AvgWordsPerMsg, AvgWordsPerDay, AvgMediaPerDay)
def extractDomainName(line):
'''This function extracts and returns domain name of url
from the given sentence passed as parameter
If no url is present, it returns None'''
# if url is present, extracting till first '/' after https
link = re.search("https://(.+?)/", line)
if link is None:
return None
link = link.group(1)
linkWords = link.split('.')
if len(linkWords) > 2: # first word mostly like is www
return linkWords[1]
else:
return linkWords[0] # first word itself is the domain name
def GetIndividualDataDistribution(chatDataList):
'''
Input: list output from getSimplifiedChatData function
output: Dictionary[First Name as key]: ChatData for that Individual
'''
MembersData = {}
for item in chatDataList:
firstName = item[2].split()[0]
if firstName not in MembersData:
MembersData[firstName] = []
MembersData[firstName].append(item)
return MembersData
def getIndividualStats(chatDataList):
'''
Input: list output from getSimplifiedChatData function
Output: Dictionary[First Name as key]: Detailed Stats of chat for that Individual
'''
MembersData = GetIndividualDataDistribution(chatDataList)
IndividualStats = {}
for keys in MembersData.keys():
IndividualStats[keys] = GetDetailedStats(MembersData[keys])
return IndividualStats
def getDayWiseDataDistribution(chatDataList):
'''
Input: list output from getSimplifiedChatData function
Output: Dictionary[Date in datetime as key]: ChatData for that Date
'''
DayWiseDistribution = {}
for item in chatDataList:
if item[0] not in DayWiseDistribution:
DayWiseDistribution[item[0]] = []
DayWiseDistribution[item[0]].append(item)
return DayWiseDistribution
def getDayWiseStats(chatDataList):
'''
Input: list output from getSimplifiedChatData function
Output: Dictionary[Date in datetime type as key]: Detailed Stats of chat for that Date
'''
DayWiseDistribution = getDayWiseDataDistribution(chatDataList)
DayWiseStats = {}
for key in DayWiseDistribution.keys():
DayWiseStats[key] = GetDetailedStats(DayWiseDistribution[key])
return DayWiseStats
def getDayWisePersonWiseDistribution(chatDataList):
'''
Input: list output from getSimplifiedChatData function
Output: Dictionary[Date in datetime type as key]: Dictionary[First Name as key]: ChatData for that Individual that day
'''
DayWiseDistribution = getDayWiseDataDistribution(chatDataList)
DayMemberDistribution = {}
for key in DayWiseDistribution.keys():
DayMemberDistribution[key] = GetIndividualDataDistribution(
DayWiseDistribution[key])
return DayMemberDistribution
def getDayWisePersonWiseStats(chatDataList):
'''
Input: List output from getSimplifiedChatData function
Output: Dictionary[Date in datetime type as key]: Dictionary[First Name as key]: DetailedStats for that Individual that day
'''
DayWiseDistribution = getDayWiseDataDistribution(chatDataList)
DayMemberStats = {}
for key in DayWiseDistribution.keys():
DayMemberStats[key] = getIndividualStats(DayWiseDistribution[key])
return DayMemberStats
def getAllLinksStat(allChatDataSimplified):
'''Input: output from getSimplifiedChatData
Output: returns a map with domain name as key & count as its value'''
allLinksStat = {} # variable to store all links count
for eachChatData in allChatDataSimplified:
message = eachChatData[3]
domainName = extractDomainName(message)
if domainName is not None:
if domainName in allLinksStat:
allLinksStat[domainName] = allLinksStat[domainName] + 1
else:
allLinksStat[domainName] = 1
return allLinksStat
def getMentionNumber(message):
'''Input: message
Output: list of number which was mentioned
If no mentions, then list is empty'''
mentions = re.findall("@[0-9]{2}([0-9]{10})", message)
return mentions
def getMentionStat(chatDataList):
'''Input: output of getSimplifiedChatData function
Output: dictionary with key -> person's name
value -> dictionary with number as key, count as value'''
mentionStat = {}
for eachChatData in chatDataList:
name = eachChatData[2].split()[0]
message = eachChatData[-1]
if name not in mentionStat:
mentionStat[name] = {}
mentions = getMentionNumber(message)
if len(mentions) != 0:
for eachMention in mentions:
if eachMention not in mentionStat[name]:
mentionStat[name][eachMention] = 1
else:
mentionStat[name][eachMention] = mentionStat[name][eachMention] + 1
return mentionStat
def getStopWordList():
'''This function returns a list of StopWords as list to be used in wordcloud making'''
stopWords = get_stop_words('english')
stopWordFile = open('StopWords.txt', 'r')
while True:
line = stopWordFile.readline()
if not line:
break
line = line.strip()
line = re.sub("\n", "", line)
stopWords.append(line)
stopWords = list(set(stopWords))
stopWords.extend(list(set(STOPWORDS)))
return stopWords
def getWordCloud(chatDataList, filename, stopWordList):
'''Input: chatDataList and filename for output image,
Output: adds a png file by the name filenameWordCloud in source directory'''
file = open('tempData.txt', 'w')
for eachChatData in chatDataList:
message = eachChatData[-1]
messageList = message.split()
messageList = [word for word in messageList if len(word) > 3]
message = " ".join(messageList)+" "
file.write(message)
file.close()
stylecloud.gen_stylecloud(file_path='tempData.txt', icon_name='fas fa-bread-slice',
output_name=filename+'WordCloud.png', custom_stopwords=stopWordList, collocations=True,
size=(2048, 2048))
# deleting the temp file
if os.path.exists("tempData.txt"):
os.remove("tempData.txt")
def getAllWordCloud(chatDataList):
'''Input: output of getSimplifiedChatData function
Output: adds a png file for all members by their first name & group data in the source directory
fileName format -> nameWordCloud.png, groupWordCloud.png
This is a time intensive function. May take upto several minutes for each participants'''
stopWordList = getStopWordList()
# Generating group data's word cloud
getWordCloud(chatDataList, 'group', stopWordList)
individualChatDataList = GetIndividualDataDistribution(chatDataList)
for individualParticipant in individualChatDataList: # Word cloud for individual participants
getWordCloud(
individualChatDataList[individualParticipant], individualParticipant, stopWordList)
def getContinuousConversationStat(chatDataList):
'''Input: output from getSimplifiedChatData function
Output: a tuple(value1, value2)
value1 -> A dictionary with participant name as key & conversation participated as value
value2 -> total number of continuous conversations'''
conversationCount = 0
continuousConversationStat = {}
allParticipantsName = getAllParticipantsName(chatDataList)
for participants in allParticipantsName: # initialisation
continuousConversationStat[participants] = 0
prevDateTime = datetime.combine(
chatDataList[0][0].date(), chatDataList[0][1].time())
currentParticipants = set()
isConversationOngoing = False
for eachChatData in chatDataList:
date = eachChatData[0]
time = eachChatData[1]
name = eachChatData[2].split()[0]
dateTime = datetime.combine(date.date(), time.time())
minuteDifference = (dateTime - prevDateTime).total_seconds() / 60
if minuteDifference < conversationThreshold:
currentParticipants.add(name)
if not isConversationOngoing:
isConversationOngoing = True
conversationCount = conversationCount + 1
else:
isConversationOngoing = False
for participants in currentParticipants:
continuousConversationStat[participants] = continuousConversationStat[participants] + 1
currentParticipants.clear()
prevDateTime = dateTime # updating prevDateTime for next iteration
return (continuousConversationStat, conversationCount)