当前位置: 首页>>代码示例>>Python>>正文


Python Auth.doLogin方法代码示例

本文整理汇总了Python中auth.Auth.doLogin方法的典型用法代码示例。如果您正苦于以下问题:Python Auth.doLogin方法的具体用法?Python Auth.doLogin怎么用?Python Auth.doLogin使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在auth.Auth的用法示例。


在下文中一共展示了Auth.doLogin方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: on_accept

# 需要导入模块: from auth import Auth [as 别名]
# 或者: from auth.Auth import doLogin [as 别名]
 def on_accept(self):
     auth = Auth()
     if auth.doLogin(str(self.userNameLineEdit.text()), str(self.passwordLineEdit.text())):
         self.setResult(self.Success)
     else:
         msgBox = QMessageBox(self)
         msgBox.setIcon(QMessageBox.Warning)
         msgBox.setWindowTitle(_translate("LoginDialog", "PAT Login message", None))
         msgBox.setText(_translate("LoginDialog", "Either incorrect username and/or password. Try again!", None))
         msgBox.setStandardButtons(QMessageBox.Ok)
         msgBox.exec_()
         self.setResult(self.Failed)
开发者ID:MazeFX,项目名称:pat,代码行数:14,代码来源:dialogs.py

示例2: onAccept

# 需要导入模块: from auth import Auth [as 别名]
# 或者: from auth.Auth import doLogin [as 别名]
    def onAccept(self):

        auth = Auth()
        if auth.doLogin(self.txtUsername.text(), self.txtPassword.text()):
            self.setResult(self.Success)
        else:
            msgBox = QMessageBox(self)
            msgBox.setIcon(QMessageBox.Warning)
            msgBox.setWindowTitle(_translate("LoginDialog", "Pythonthusiast", None))
            msgBox.setText(_translate("LoginDialog", "Either incorrect username and/or password. Try again!", None))
            msgBox.setStandardButtons(QMessageBox.Ok)
            msgBox.exec_()
            self.setResult(self.Failed)
开发者ID:imxiaohui,项目名称:CrossPlatformQt,代码行数:15,代码来源:logindialog.py

示例3: testAuth

# 需要导入模块: from auth import Auth [as 别名]
# 或者: from auth.Auth import doLogin [as 别名]
 def testAuth(self):
     helper.dbConnect()
     auth = Auth()
     self.assertEqual(auth.doLogin("eko", "password"), True)
开发者ID:bmweller,项目名称:CrossPlatformQt,代码行数:6,代码来源:test_features01.py

示例4: testAuth

# 需要导入模块: from auth import Auth [as 别名]
# 或者: from auth.Auth import doLogin [as 别名]
 def testAuth(self):
     auth = Auth()
     self.assertEqual(auth.doLogin("eko", "oke"), True)
开发者ID:bmweller,项目名称:CrossPlatformQt,代码行数:5,代码来源:test_features01.py

示例5: testAuth

# 需要导入模块: from auth import Auth [as 别名]
# 或者: from auth.Auth import doLogin [as 别名]
 def testAuth(self):
     qApp = QCoreApplication(sys.argv)
     helper.dbConnect()
     auth = Auth()
     self.assertEqual(auth.doLogin("eko", "password"), True)
开发者ID:bmweller,项目名称:CrossPlatformQt,代码行数:7,代码来源:test_features01.py


注:本文中的auth.Auth.doLogin方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。