IPL 2020 score

Crickbuzz 

JSON


from pycricbuzz import Cricbuzz

import json

c = Cricbuzz()

matches = c.matches()


#print(matches)

for i in matches:

    if i['srs']=="Indian Premier League 2020":

       print(json.dumps(i,indent=4))

       print("Indian Premier League 2020 matches")