-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcricket.py
More file actions
303 lines (230 loc) · 9.57 KB
/
cricket.py
File metadata and controls
303 lines (230 loc) · 9.57 KB
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
from bs4 import BeautifulSoup
import datetime
import json
import os
import time
import threading
import urllib3
cricbuzz_base_url = 'https://www.cricbuzz.com/'
cricbuzz_home_page_url = 'https://www.cricbuzz.com/cricket-match/live-scores'
http = urllib3.PoolManager()
def find_live_matches():
'''
This function will search for all the live matches on cricbuzz website and return their cricbuzz url and title as json.
'''
r = http.request('GET', cricbuzz_home_page_url)
soup = BeautifulSoup(r.data, 'html.parser')
live_matches = []
for link in soup.find_all('a'):
url = str(link.get('href'))
title = link.get('title')
# Only take live matches.
if url.startswith("/live-cricket-scores/") and title is not None and "live" in str(title).lower():
# if url.startswith("/live-cricket-scores/") and title is not None:
live_matches.append((url[20:], title))
# Remove duplicate links
live_matches = list(set(live_matches))
return json.dumps(live_matches)
def print_score(batsmen_info, team, score, overs):
os.system("""
osascript -e 'display notification "{}" with title "{}"'
""".format(batsmen_info[0][0] + " " + batsmen_info[0][1] + "(" + batsmen_info[0][2] + ")\n" + batsmen_info[1][0] + " " + batsmen_info[1][1] + "(" + batsmen_info[1][2] + ")", team + " " + score + " (" + overs + ")"))
def find_information(full_score):
'''
Processing and cleaning.
'''
team = full_score.find_previous_sibling('span')
team = team.text.strip()
full_score = full_score.text.strip()
score, overs = full_score.split('\xa0')
overs = overs[1:-1]
return [full_score, score, overs, team]
def find_batsmen_information(battings):
'''
Extracting batsmen name, score and no. of balls faced.
'''
batsmen_information = []
for batting in battings:
batsmen = batting.find_parent('div').find_parent('div')
batsmen_name = batsmen.find('a').text
batsmen_score = batsmen.find_all('div')[2].text
batsmen_balls_faced = batsmen.find_all('div')[3].text
batsmen_information.append(
(batsmen_name, batsmen_score, batsmen_balls_faced))
return batsmen_information
def fetch_live_match_updates_after_every_over(match):
current_match = []
while True:
r = http.request('GET', cricbuzz_base_url +
"live-cricket-scorecard" + match[0])
soup = BeautifulSoup(r.data, 'html.parser')
full_score = soup.find('span', class_="pull-right")
if full_score is None:
print("Sorry! Unable to fetch score!")
return
battings = soup.find_all(
"span", text='batting')
batsmen_information = find_batsmen_information(battings)
[full_score, score, overs, team] = find_information(full_score)
flag = 0
if len(current_match) == 0 or current_match[2] != overs:
current_match = []
current_match.append(team)
current_match.append(score)
current_match.append(overs)
if '.' not in current_match[2]:
flag = flag + 1
# Over is completed
if flag:
print_score(batsmen_information, team, score, overs)
time.sleep(5)
def fetch_live_match_updates_after_every_ball(match):
current_match = []
while True:
r = http.request('GET', cricbuzz_base_url +
"live-cricket-scorecard" + match[0])
soup = BeautifulSoup(r.data, 'html.parser')
full_score = soup.find('span', class_="pull-right")
if full_score is None:
print("Sorry! Unable to fetch score!")
return
battings = soup.find_all(
"span", text='batting')
batsmen_information = find_batsmen_information(battings)
[full_score, score, overs, team] = find_information(full_score)
flag = 0
if len(current_match) == 0 or current_match[2] != overs:
current_match = []
current_match.append(team)
current_match.append(score)
current_match.append(overs)
flag = flag + 1
# Over is completed
if flag:
print_score(batsmen_information, team, score, overs)
time.sleep(5)
def fetch_live_match_updates_after_every_wicket(match):
current_match = []
while True:
r = http.request('GET', cricbuzz_base_url +
"live-cricket-scorecard" + match[0])
soup = BeautifulSoup(r.data, 'html.parser')
full_score = soup.find('span', class_="pull-right")
if full_score is None:
print("Sorry! Unable to fetch score!")
return
battings = soup.find_all(
"span", text='batting')
batsmen_information = find_batsmen_information(battings)
[full_score, score, overs, team] = find_information(full_score)
flag = 0
if len(current_match) == 0:
current_match.append(team)
current_match.append(score)
current_match.append(overs)
elif current_match[2] != overs and score[-1:] > current_match[1][-1:]:
current_match = []
current_match.append(team)
current_match.append(score)
current_match.append(overs)
flag = flag + 1
# Over is completed
if flag:
print_score(batsmen_information, team, score, overs)
time.sleep(5)
def fetch_live_match_updates_after_every_four_or_six(match):
current_match = []
while True:
r = http.request('GET', cricbuzz_base_url +
"live-cricket-scorecard" + match[0])
soup = BeautifulSoup(r.data, 'html.parser')
full_score = soup.find('span', class_="pull-right")
if full_score is None:
print("Sorry! Unable to fetch score!")
return
battings = soup.find_all(
"span", text='batting')
batsmen_information = find_batsmen_information(battings)
[full_score, score, overs, team] = find_information(full_score)
flag = 0
if len(current_match) > 0 and current_match[2] != overs and int(score.split('-')[0]) - int(current_match[1].split('-')[0]) in [4, 6]:
flag = flag + 1
current_match = []
current_match.append(team)
current_match.append(score)
current_match.append(overs)
# Over is completed
if flag:
print_score(batsmen_information, team, score, overs)
time.sleep(5)
def fetch_live_match_updates_after_every_major_moment(match):
current_match = []
while True:
r = http.request('GET', cricbuzz_base_url +
"live-cricket-scorecard" + match[0])
soup = BeautifulSoup(r.data, 'html.parser')
full_score = soup.find('span', class_="pull-right")
if full_score is None:
print("Sorry! Unable to fetch score!")
return
battings = soup.find_all(
"span", text='batting')
batsmen_information = find_batsmen_information(battings)
[full_score, score, overs, team] = find_information(full_score)
flag = 0
if len(current_match) > 0 and current_match[2] != overs and ('.' not in overs or int(score.split('-')[0]) - int(current_match[1].split('-')[0]) in [4, 6] or score[-1:] > current_match[1][-1:]):
flag = flag + 1
current_match = []
current_match.append(team)
current_match.append(score)
current_match.append(overs)
# Major momment has happened
if flag:
print_score(batsmen_information, team, score, overs)
time.sleep(5)
def helper():
live_matches = find_live_matches()
live_matches = json.loads(live_matches)
print("\nSelect which match you want to follow:\n")
for idx, match in enumerate(live_matches):
print(idx+1, match[1])
selection = input()
try:
selection = int(selection)
except ValueError:
print("Please enter an integer.")
return
if selection < 1 or selection > len(live_matches):
print("Invalid input.")
return
print("\nWhich type of summary you want to see:\n\n1. After every over.\n2. After every ball.\n3. After every 4/6.\n4. After every wicket.\n5. After every 4/6/wicket/over.")
summary_type = input()
try:
summary_type = int(summary_type)
except ValueError:
print("Please enter an integer.")
return
if summary_type == 1:
timerThread = threading.Thread(
target=fetch_live_match_updates_after_every_over, kwargs=dict(match=live_matches[selection-1]))
timerThread.start()
elif summary_type == 2:
timerThread = threading.Thread(
target=fetch_live_match_updates_after_every_ball, kwargs=dict(match=live_matches[selection-1]))
timerThread.start()
elif summary_type == 3:
timerThread = threading.Thread(
target=fetch_live_match_updates_after_every_four_or_six, kwargs=dict(match=live_matches[selection-1]))
timerThread.start()
elif summary_type == 4:
timerThread = threading.Thread(
target=fetch_live_match_updates_after_every_wicket, kwargs=dict(match=live_matches[selection-1]))
timerThread.start()
elif summary_type == 5:
timerThread = threading.Thread(
target=fetch_live_match_updates_after_every_major_moment, kwargs=dict(match=live_matches[selection-1]))
timerThread.start()
else:
print("Invalid selection.")
if __name__ == "__main__":
helper()