mskian / cricket-api

Free Cricket API - Live Cricket Score JSON API 🏏
https://mskian.github.io/cricket-api/
MIT License
99 stars 42 forks source link

How to fetch data using python? #2

Open Jainu-s opened 3 years ago

mskian commented 3 years ago

use Python request and JSON module

Nksama commented 2 years ago

import requests as r # pip install requests

res = r.get(url).json()

print(res)