Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imvickykumar999/cricket-live-score-api
Cricket World Cup 2023 Live Score
https://github.com/imvickykumar999/cricket-live-score-api
cricket live-score world-cup-2023
Last synced: about 1 month ago
JSON representation
Cricket World Cup 2023 Live Score
- Host: GitHub
- URL: https://github.com/imvickykumar999/cricket-live-score-api
- Owner: imvickykumar999
- Created: 2022-01-06T15:48:22.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-19T13:53:17.000Z (about 1 year ago)
- Last Synced: 2023-11-19T14:39:03.873Z (about 1 year ago)
- Topics: cricket, live-score, world-cup-2023
- Language: Python
- Homepage: https://static.cricinfo.com/rss/livescores.xml
- Size: 3.91 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
> # `Cricket Live Score`
>
> ![image](https://github.com/imvickykumar999/Cricket-Live-Score-API/assets/50515418/196ca5ef-e75d-4e25-badc-3e289d33a0e7)
```python
import requests
from bs4 import BeautifulSoup as bslink = 'https://static.cricinfo.com/rss/livescores.xml'
req = requests.get(link)soup = bs(req.content, 'xml')
box = soup.findAll('title')for i in box:
if 'india' in i.text.lower():
print(i.text)
``````bash
>>> python cric_live_score.py
India 240/10 v Australia 63/3 *
```
![image](https://github.com/imvickykumar999/Cricket-Live-Score-API/assets/50515418/044ad657-02ac-420d-91d9-38b0bf0640f8)