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