本文整理匯總了Python中FileManager.FileManager.isUnique方法的典型用法代碼示例。如果您正苦於以下問題:Python FileManager.isUnique方法的具體用法?Python FileManager.isUnique怎麽用?Python FileManager.isUnique使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類FileManager.FileManager
的用法示例。
在下文中一共展示了FileManager.isUnique方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: VerifyEmail
# 需要導入模塊: from FileManager import FileManager [as 別名]
# 或者: from FileManager.FileManager import isUnique [as 別名]
def VerifyEmail(self, string):
fm = FileManager()
match = re.match(r'\b[\w.-][email protected][\w.-]+.\w{2,4}\b', string)
if match and fm.isUnique(string,2):
return True
else:
return False
示例2: VerifyCedula
# 需要導入模塊: from FileManager import FileManager [as 別名]
# 或者: from FileManager.FileManager import isUnique [as 別名]
def VerifyCedula(self, string):
match = re.match(r'\d{4}-\d{4}-\d{5}', string)
fm = FileManager()
if match and fm.isUnique(string,3):
return True
else:
return False
示例3: VerifyUser
# 需要導入模塊: from FileManager import FileManager [as 別名]
# 或者: from FileManager.FileManager import isUnique [as 別名]
def VerifyUser(self,string):
fm = FileManager()
if fm.isUnique(string,0):
return True
else:
return False