吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1842|回复: 5
收起左侧

[Python 原创] zmail库使用

[复制链接]
梦汐 发表于 2022-12-23 11:21
本帖最后由 梦汐 于 2022-12-23 11:51 编辑

登录邮箱后获取最新邮件,支持多账号登录
[Asm] 纯文本查看 复制代码
import sys
import zmail
from PyQt5.QtWidgets import QApplication, QMainWindow, QTreeWidget, QTreeWidgetItem, QPushButton


class MainWindow(QMainWindow):
    def __init__(self):
        super().__init__()
        self.initUI()
        self.init()

    def initUI(self):
        # Create a tree widget and set its columns
        self.tree = QTreeWidget(self)
        self.tree.setColumnCount(4)
        self.tree.setHeaderLabels(["Index", "Account", "Password", "Status"])

        # Create a button to insert a new item
        #self.button = QPushButton("Insert", self)
        #self.button.clicked.connect(self.insert_item)
        # Set the layout
        self.setCentralWidget(self.tree)
        #self.button.move(0, 0)

    def insert_item(self):
        # Insert a new item into the tree widget with default values
        item = QTreeWidgetItem(self.tree, ["", "", "", ""])
        self.tree.addTopLevelItem(item)

    def init(self):
        index = 0
        dict = {'邮箱号': '邮箱密码'}
        for mail in dict:
            index = index+1
            server = zmail.server(mail, dict[mail], timeout=3)
            if server.pop_able():
                print("登录成功:"+mail)
                content = server.get_latest()
                print(content['content_html'])
                item = QTreeWidgetItem(
                    self.tree, [str(index), mail, dict[mail], "成功"])
            else:
                print("登录失败:"+mail)
                item = QTreeWidgetItem(
                    self.tree, [str(index), mail, dict[mail], "失败"])
            self.tree.addTopLevelItem(item)


if __name__ == "__main__":
    app = QApplication(sys.argv)
    window = MainWindow()
    window.show()
    sys.exit(app.exec_())

免费评分

参与人数 1吾爱币 +1 热心值 +1 收起 理由
Tonyha7 + 1 + 1 谢谢@Thanks!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

lover918588 发表于 2022-12-23 11:53
不会用脚本不会玩呀
yang1111502 发表于 2022-12-23 11:55
scbzwv 发表于 2022-12-23 16:13
yippee 发表于 2022-12-25 18:22
学习了,辛苦作者
NINE09 发表于 2022-12-30 15:07

谢谢分享
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-24 23:33

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表