1
0
mirror of https://github.com/ksyasuda/rice.git synced 2025-02-21 08:25:45 -08:00
2021-11-03 01:14:21 -07:00

8 lines
212 B
Python
Executable File

#!/bin/python
import imaplib
obj = imaplib.IMAP4_SSL('imap.gmail.com',993)
obj.login('YOU@EMAIL.COM','PASSWORD') # write your email and password
obj.select()
print(len(obj.search(None, 'UnSeen')[1][0].split()))