Skip to content

Commit

Permalink
Merge pull request #1 from Rakesh-Reddy-Skar/patch-1
Browse files Browse the repository at this point in the history
Update Howzat.py
  • Loading branch information
rishiredd789 authored Jan 3, 2022
2 parents 6d31765 + f845271 commit 1fc4329
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Howzat.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,22 +75,22 @@

# ------------------ USER INPUT -------------------- #

url = ""
url = "https://www.cricbuzz.com/"

''' How frequently you want the updates. Basically the script will crawl the page after every 'time_interval' seconds
specified. Recommended to keep >= 10. '''
time_interval = '15'

''' Set either 'Y' or 'N' for the below five options. '''

show_match_status = ''
show_fours = ''
show_sixes = ''
show_wickets = ''
show_EndOfOver = ''
show_singles = ''
show_dot = ''
show_Balls = ''
show_match_status = 'Y'
show_fours = 'Y'
show_sixes = 'Y'
show_wickets = 'Y'
show_EndOfOver = 'Y'
show_singles = 'Y'
show_dot = 'Y'
show_Balls = 'Y'

''' Stores the runs, wickets and overs scored before and after a ball. '''
prev_numbers = [0, 0, 0, 0] # Do not change
Expand Down

0 comments on commit 1fc4329

Please sign in to comment.