import os #Enter your username and password below within double quotes # eg. username="username" and password="password" username="blablabla" password="blablabla" com="wget -q -O - https://"+username+":"+password+"@mail.google.com/mail/feed/atom --no-check-certificate" temp=os.popen(com) msg=temp.read() index=msg.find("") index2=msg.find("") fc=int(msg[index+11:index2]) if fc==0: print "0 new" else: print str(fc)+" new"