cricket_app / live_scoring.py
dschandra's picture
Create live_scoring.py
0acf580 verified
raw
history blame contribute delete
197 Bytes
# live_scoring.py
def get_live_scores():
# Logic to fetch live scores (either from a database or external API)
scores = {
"team1": 120,
"team2": 130
}
return scores