mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-24 04:21:08 +00:00
21 lines
588 B
Python
21 lines
588 B
Python
|
from urllib.request import urlopen
|
||
|
from bs4 import BeautifulSoup
|
||
|
|
||
|
quote_page = 'http://www.cricbuzz.com/cricket-match/live-scores'
|
||
|
page = urlopen(quote_page)
|
||
|
soup = BeautifulSoup(page,'html.parser')
|
||
|
|
||
|
update=[]
|
||
|
|
||
|
for score in soup.find_all('div',attrs={'class':'cb-col cb-col-100 cb-lv-main'}):
|
||
|
s=score.text.strip()
|
||
|
update.append(s)
|
||
|
|
||
|
print('-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*')
|
||
|
|
||
|
|
||
|
for i in range(len(update)):
|
||
|
print(i+1),
|
||
|
print(update[i])
|
||
|
print('-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*')
|