import serial
import imaplib
from time import sleep
IMAP_SERVER='imap.gmail.com'
IMAP_PORT=993
ser= serial.Serial ('/dev/ttyACM0',9600)
M = imaplib.IMAP4_SSL(IMAP_SERVER, IMAP_PORT)
rc, resp = M.login('user@gmail.com', 'password')
print rc, resp
while True:
M.select()
for msg_num in M.search("INBOX", "UNDELETED")[1][0].split():
msg = M.fetch('1', '(BODY.PEEK[TEXT])')
String = msg[1][0][1][139:161]
print String
if String == "This is just a test...":
ser.write('0')
sleep(1)
I'm a new beginner in python programming and the above python code is one that I'm using for a program I want to do. When I run this in a terminal I get the response that I have authenticated my account and then it displays the message between characters 139 & 161, which is the following in the example email:
This is just a test...
This is printed out in the terminal. If I delete the message in my inbox this comes out:
String = msg[1][0][1][139:161]
TypeError: 'NoneType' object is unsubscriptable
I believe that this is due to that I don't have any messages in the inbox. Now what I want to do is that if there are no messages to run again and again until a message shows up in my inbox & do an according action pending on the message
svs.String). PEP8 is a good source for starting Python programmers. – miku Mar 15 '11 at 17:29