<bdo id='083pX'></bdo><ul id='083pX'></ul>
  • <small id='083pX'></small><noframes id='083pX'>

  • <tfoot id='083pX'></tfoot>

      <i id='083pX'><tr id='083pX'><dt id='083pX'><q id='083pX'><span id='083pX'><b id='083pX'><form id='083pX'><ins id='083pX'></ins><ul id='083pX'></ul><sub id='083pX'></sub></form><legend id='083pX'></legend><bdo id='083pX'><pre id='083pX'><center id='083pX'></center></pre></bdo></b><th id='083pX'></th></span></q></dt></tr></i><div id='083pX'><tfoot id='083pX'></tfoot><dl id='083pX'><fieldset id='083pX'></fieldset></dl></div>

        <legend id='083pX'><style id='083pX'><dir id='083pX'><q id='083pX'></q></dir></style></legend>
      1. Python、IMAP 和 GMail.将消息标记为已查看

        时间:2023-10-20
          <bdo id='do1Q2'></bdo><ul id='do1Q2'></ul>
        • <i id='do1Q2'><tr id='do1Q2'><dt id='do1Q2'><q id='do1Q2'><span id='do1Q2'><b id='do1Q2'><form id='do1Q2'><ins id='do1Q2'></ins><ul id='do1Q2'></ul><sub id='do1Q2'></sub></form><legend id='do1Q2'></legend><bdo id='do1Q2'><pre id='do1Q2'><center id='do1Q2'></center></pre></bdo></b><th id='do1Q2'></th></span></q></dt></tr></i><div id='do1Q2'><tfoot id='do1Q2'></tfoot><dl id='do1Q2'><fieldset id='do1Q2'></fieldset></dl></div>

          <small id='do1Q2'></small><noframes id='do1Q2'>

          <legend id='do1Q2'><style id='do1Q2'><dir id='do1Q2'><q id='do1Q2'></q></dir></style></legend>

              <tfoot id='do1Q2'></tfoot>
                  <tbody id='do1Q2'></tbody>
                • 本文介绍了Python、IMAP 和 GMail.将消息标记为已查看的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有一个 python 脚本,它必须获取看不见的消息,对其进行处理,并将其标记为已见(或已读)

                  I have a python script that has to fetch unseen messages, process it, and mark as seen (or read)

                  我在登录后这样做:

                      typ, data = self.server.imap_server.search(None, '(UNSEEN)')
                  
                      for num in data[0].split():
                          print "Mensage " + str(num) + " mark"
                          self.server.imap_server.store(num, '+FLAGS', '(SEEN)')
                  

                  第一个问题是,搜索返回所有消息,而不仅仅是 UNSEEN.第二个问题是邮件没有标记为 SEEN.

                  The first problem is that, the search returns ALL messages, and not only the UNSEEN. The second problem is that messages are not marked as SEEN.

                  谁能帮帮我?

                  谢谢!

                  推荐答案

                  import imaplib
                  obj = imaplib.IMAP4_SSL('imap.gmail.com', '993')
                  obj.login('user', 'password')
                  obj.select('Inbox')   <--- it will select inbox
                  typ ,data = obj.search(None,'UnSeen')
                  obj.store(data[0].replace(' ',','),'+FLAGS','Seen')
                  

                  这篇关于Python、IMAP 和 GMail.将消息标记为已查看的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:使用 Python 检查未读的 Gmail 邮件数 下一篇:如何使用 Python 在不接触附件的情况下有效地解析电子邮件

                  相关文章

                • <i id='hEIob'><tr id='hEIob'><dt id='hEIob'><q id='hEIob'><span id='hEIob'><b id='hEIob'><form id='hEIob'><ins id='hEIob'></ins><ul id='hEIob'></ul><sub id='hEIob'></sub></form><legend id='hEIob'></legend><bdo id='hEIob'><pre id='hEIob'><center id='hEIob'></center></pre></bdo></b><th id='hEIob'></th></span></q></dt></tr></i><div id='hEIob'><tfoot id='hEIob'></tfoot><dl id='hEIob'><fieldset id='hEIob'></fieldset></dl></div>
                  <tfoot id='hEIob'></tfoot>

                    <bdo id='hEIob'></bdo><ul id='hEIob'></ul>

                    <small id='hEIob'></small><noframes id='hEIob'>

                    <legend id='hEIob'><style id='hEIob'><dir id='hEIob'><q id='hEIob'></q></dir></style></legend>