Skip to content

Instantly share code, notes, and snippets.

@Kirubaharan
Created March 24, 2015 15:50
Show Gist options
  • Save Kirubaharan/d74081e60924e4c4fee2 to your computer and use it in GitHub Desktop.
Save Kirubaharan/d74081e60924e4c4fee2 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import requests
from bs4 import BeautifulSoup
import pynotify
from time import sleep
def sendmessage(title, message):
pynotify.init("Test")
notice = pynotify.Notification(title, message)
notice.show()
return
url = "http://static.cricinfo.com/rss/livescores.xml"
while True:
r = requests.get(url)
while r.status_code is not 200:
r = requests.get(url)
soup = BeautifulSoup(r.text)
data = soup.find_all("description")
score = data[3].text
sendmessage("Score", score)
sleep(60)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment