Google Apps Engine mail fetch
How can I fetch mails from gmail account in Google Apps Engine Django开发者_如何转开发 application?
Configure your app to receive email, then, if it really has to be a gmail address, set up the gmail address to forward everything to your appspot address.
You could cronjob rss feed to gmail messages?
gmail rss
python cron
I would use libgmail -- seems to be the most popular pure-Python way to do it. However for app engine use I believe it would have to be ported to use urlfetch and I don't think anybody's done that yet (I'd happily receive news to the contrary!-).
Just use the Python's standard POP or IMAP client. Google does not provide a GMail API.
精彩评论