How do I enable push-notification for IMAP (Gmail) using Python imaplib?

后端 未结 4 1479
甜味超标
甜味超标 2021-01-30 11:35

Is there a way to monitor a gmail account using imaplib without polling gmail each time I want to see if there is new mail. Or in other words, I just want the script to be notif

4条回答
  •  离开以前
    2021-01-30 11:52

    There isn't something in imaplib that does this, AFAIK (disclamer: I know very little about Python), however, it seems that someone has implemented an IDLE extension for Python which has the same interface as imaplib (which you can swap out with no changes to existing code, apparently):

    https://github.com/imaplib2/imaplib2

提交回复
热议问题