嗨,假设我有以下代码
import urllib
from BeautifulSoup import BeautifulSoup
url = "http://card.cricket.timesofindia.indiatimes.com/SriLanka-vs-India/scorecard/matchid-1657.cms"
html = urllib.urlopen(url)
data = html.read()
final_string = BeautifulSoup(data)
cricinfo = final_string.findAll('span',text=True)
result = cricinfo[5].encode('utf-8')
print result
如果我们运行上面的代码,结果将是
Sri Lanka(SL) vs India(Ind) Live Scorecard | The Times Of India Cricket Scorecard, India in Sri Lanka, 5 ODI Series, 2012
但是无论如何,有没有将这个结果作为消息弹出或者类似的东西,当我们启动时,我们会在 linux 机器的桌面右上角得到“软件更新可用”(只是在我们运行时像上面的格式一样弹出结果python中的代码如上)
我的意图是在我们运行代码时在屏幕上弹出结果,就像有时如果我们收到一封邮件,我们会看到一条弹出消息,例如"You have recieved a message"