Skip to main content

Live IPL Score Using Python || Python Code for Live Cricket Score || IPL Match Detail Program in Python || Live Cricket Score - Creation Code

 

Live IPL Score Using Python

Hello coders, we are going to learn how we can create a GUI application to build a live score updater using python. We are going to use web scraping using BeautifulSoup class from bs4. We will use the crickbuzz for scraping

Module to Be used:

tkinter - Preinstalled module

request - For requesting the webserver

bs4 - It is used for web scraping

Installation:

pip install request
pip install beautifulsoup4

Code:

from tkinter import *
import requests
from bs4 import BeautifulSoup
# create instance for window
root = Tk()
# set title for window
root.title("Indian Premier League")
# screen color configure
root.config(background="skyblue")
# cricbuzz url to get score updates
url="https://www.cricbuzz.com/"
def get_score():
    # request data from cricbuzz
    page = requests.get(url)
    soup = BeautifulSoup(page.text,'html.parser')
    # name of first team
    team_1 = soup.find_all(class_ = "cb-ovr-flo cb-hmscg-tm-nm")[0].get_text()
    # name of second team
    team_2 = soup.find_all(class_ = "cb-ovr-flo cb-hmscg-tm-nm")[1].get_text()
    # score of first team
    team_1_score = soup.find_all(class_ = "cb-ovr-flo")[8].get_text()
    # score of second team
    team_2_score = soup.find_all(class_ = "cb-ovr-flo")[10].get_text()
    # configure the team names to teams label
    teams.config(text=f"{team_1}\t\t{team_2}")
    # configure the team scores to teams label
    scores.config(text=f"{team_1_score}\t{team_2_score}")
    # call the get_score() function
    # after every 1000 milliseconds
    # and update scores
    scores.after(1000, get_score)
# label to display IPL 2021 title
title = Label(root,text='IPL 2021',font= ("lucida 30 bold"), bg="blue")
title.grid(row=0,pady=5)
# label for team names
teams = Label(root, font=("lucida 20 bold"),bg="red")
teams.grid(row = 1, padx=5)
# label for team scores
scores = Label(root, font=("lucida 20 bold"),bg = "skyblue")
scores.grid(row = 2, padx=5)
# call function
get_score()
root.mainloop()

Output:






Comments

Popular posts from this blog

Create Ping Pong Game in Python

  Ping Pong Game: Table tennis , also known as  ping-pong  and  whiff-whaff , is a sport in which two or four players hit a lightweight ball, also known as the ping-pong ball, back and forth across a table using small rackets. The game takes place on a hard table divided by a net. Except for the initial serve, the rules are generally as follows: players must allow a ball played toward them to bounce once on their side of the table and must return it so that it bounces on the opposite side at least once. A point is scored when a player fails to return the ball within the rules. Play is fast and demands quick reactions. Spinning the ball alters its trajectory and limits an opponent's options, giving the hitter a great advantage. We can make it using pygame but I keep it more simple we will create this game using only the turtle module so let's drive into the code without wasting any time Code: # Import required library import turtle # Create screen sc = turtle . Screen () sc .

Draw Minecraft Charater in Python

  Minecraft  is a  sandbox video game  developed by the Swedish video game developer  Mojang Studios . The game was created by  Markus "Notch" Persson  in the  Java programming language . Following several early private testing versions, it was first made public in May 2009 before fully releasing in November 2011, with  Jens Bergensten  then taking over development.  Minecraft  has since been ported to several other platforms and is the  best-selling video game of all time , with over 238 million copies sold and nearly 140 million  monthly active users  as of 2021 . We gonna build a character of Minecraft using our creativity and coding skills so let's drive into the code: Code: import turtle as t def eye ( r , a ):     t . fillcolor ( 'brown' )     t . begin_fill ()     t . circle ( r , a )     t . end_fill () t . begin_fill () t . fillcolor ( '#8a00e6' ) t . penup () t . goto ( 0 ,- 50 ) t . pendown () t . right ( 90 ) t . f

How To Draw BMW Logo - In Python

 I know I don't need to introduce BMW as it is a very popular luxury car. Today we gonna draw the BMW logo in python. I know that you can draw it using a pencil and other tools like AutoCAD etc. But we are programmers we talk with computers so let's tell our computer to draw this logo for use with the help of python. Module The only module we will use is that turtle Code: import turtle as t t.begin_fill() t.fillcolor( '#008ac9' ) for i in range ( 50 ):     t.forward( 4 )     t.left( 2 ) t.right(- 80 ) t.forward( 116 ) t.right(- 90 ) t.forward( 132 ) t.end_fill() t.penup() t.pendown() t.right( 90 ) for i in range ( 50 ):     t.forward( 4 )     t.left(- 2 ) t.right( 80 ) t.forward( 116 ) t.forward(- 116 ) t.right( 90 ) t.begin_fill() t.fillcolor( '#008ac9' ) for j in range ( 45 ):     t.forward(- 4 )     t.left(- 2 ) t.right(- 90 ) t.forward( 116 ) t.end_fill() t.right( 180 ) t.forward( 116 ) t.right( 90 ) for i in range ( 47 ):     t.forward( 4 )     t.