cricket-api
cricket-api copied to clipboard
How to fetch data using python?
use Python request and JSON module
import requests as r # pip install requests
res = r.get(url).json()
print(res)