本文整理汇总了Python中lib.GlobalData.userBackend方法的典型用法代码示例。如果您正苦于以下问题:Python GlobalData.userBackend方法的具体用法?Python GlobalData.userBackend怎么用?Python GlobalData.userBackend使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类lib.GlobalData
的用法示例。
在下文中一共展示了GlobalData.userBackend方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: ValueError
# 需要导入模块: from lib import GlobalData [as 别名]
# 或者: from lib.GlobalData import userBackend [as 别名]
updateEmailNotification = (str(
configRoot.find("update").find("general").attrib[
"emailNotification"]).upper() == "TRUE")
# email notification works only if smtp is activated
if (updateEmailNotification is True
and smtpActivated is False):
raise ValueError("Update check can not have email "
+ "notification activated when smtp is not activated.")
# configure user credentials backend
userBackendMethod = str(
configRoot.find("storage").find("userBackend").attrib[
"method"]).upper()
if userBackendMethod == "CSV":
globalData.userBackend = CSVBackend(globalData.userBackendCsvFile)
else:
raise ValueError("No valid user backend method in config file.")
# configure storage backend (check which backend is configured)
userBackendMethod = str(
configRoot.find("storage").find("storageBackend").attrib[
"method"]).upper()
if userBackendMethod == "SQLITE":
globalData.storage = Sqlite(globalData.storageBackendSqliteFile,
globalData.version)
elif userBackendMethod == "MYSQL":
backendUsername = str(configRoot.find("storage").find(