本文整理匯總了Python中twisted.python.usage.Options.get方法的典型用法代碼示例。如果您正苦於以下問題:Python Options.get方法的具體用法?Python Options.get怎麽用?Python Options.get使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類twisted.python.usage.Options
的用法示例。
在下文中一共展示了Options.get方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: initializeDB
# 需要導入模塊: from twisted.python.usage import Options [as 別名]
# 或者: from twisted.python.usage.Options import get [as 別名]
def initializeDB(Store: store.Store, options: usage.Options):
username = options.get('username')
password = options.get('password')
employees = commandFinder(Store)("Check For New Employees").doCheckForEmployees()
for emp in employees:
un = runWithConnection(findUsername, username, password, args=(emp, options))
if un:
emp.active_directory_name = un
示例2: findUsername
# 需要導入模塊: from twisted.python.usage import Options [as 別名]
# 或者: from twisted.python.usage.Options import get [as 別名]
def findUsername(conn, emp: IEmployee, options: usage.Options) -> str:
ise = ISolomonEmployee(emp)
name = ise.name
if '~' in name:
name = name.split('~')
ln = name[0]
fn = name[1].split()[0]
else:
name = name.split()
fn = name[0]
ln = name[-1]
if conn.search('dc=ugm, dc=local', '(&(givenName=%s) (sn=%s))' % (fn, ln), attributes=['sAMAccountName']):
if len(conn.response) == 4 and 'attributes' in conn.response[0]:
if conn.response[0]['attributes']['sAMAccountName']:
return conn.response[0]['attributes']['sAMAccountName'][0]
if options.get('resolve'):
print("AD username not found for %s, searching by last name only" % ise.name)
if conn.search('dc=ugm, dc=local', '(&(givenName=*) (sn=%s))' % (ln,), attributes=['sAMAccountName',
'givenName',
'sn']):
while len(conn.response) > 3:
resp = conn.response.pop(0)
if 'attributes' not in resp:
break
print("Possible match found")
print("FN:", resp['attributes']['givenName'])
print("LN:", resp['attributes']['sn'])
if 'Y' in input("Is this a match? (yN)").upper():
return resp['attributes']['sAMAccountName'][0]
if options.get('resolve') == 'firstname':
print("AD username not found, searching by first name only")
if conn.search('dc=ugm, dc=local', '(&(givenName=%s) (sn=*))' % (fn,),
attributes=['sAMAccountName', 'givenName', 'sn']):
while len(conn.response) > 3:
resp = conn.response.pop(0)
if 'attributes' not in resp:
break
print("Possible match found")
print("FN:", resp['attributes']['givenName'])
print("LN:", resp['attributes']['sn'])
if 'Y' in input("Is this a match? (yN)").upper():
return resp['attributes']['sAMAccountName'][0]