本文整理汇总了Python中API.getContacts方法的典型用法代码示例。如果您正苦于以下问题:Python API.getContacts方法的具体用法?Python API.getContacts怎么用?Python API.getContacts使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类API
的用法示例。
在下文中一共展示了API.getContacts方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_getContact5
# 需要导入模块: import API [as 别名]
# 或者: from API import getContacts [as 别名]
def test_getContact5(self):
self.assertIsInstance(API.getContacts(contactid=1), classes.ContactCollection)
示例2: test_getContact3
# 需要导入模块: import API [as 别名]
# 或者: from API import getContacts [as 别名]
def test_getContact3(self):
self.assertFalse(API.getContacts(contactstatus=1))
示例3: test_getContact4
# 需要导入模块: import API [as 别名]
# 或者: from API import getContacts [as 别名]
def test_getContact4(self):
self.assertFalse(API.getContacts(familyname=12))
示例4: test_getContact2
# 需要导入模块: import API [as 别名]
# 或者: from API import getContacts [as 别名]
def test_getContact2(self):
self.assertFalse(API.getContacts(contactname=12))
示例5: test_getContact1
# 需要导入模块: import API [as 别名]
# 或者: from API import getContacts [as 别名]
def test_getContact1(self):
self.assertFalse(API.getContacts(contactid="aaa"))
示例6: test_getContact8
# 需要导入模块: import API [as 别名]
# 或者: from API import getContacts [as 别名]
def test_getContact8(self):
self.assertIsInstance(API.getContacts(contactname="*Smith*"), classes.ContactCollection)
示例7: test_getContact7
# 需要导入模块: import API [as 别名]
# 或者: from API import getContacts [as 别名]
def test_getContact7(self):
self.assertIsInstance(API.getContacts(familyname="Smith"), classes.ContactCollection)
示例8: test_getContact6
# 需要导入模块: import API [as 别名]
# 或者: from API import getContacts [as 别名]
def test_getContact6(self):
self.assertEqual(len(API.getContacts(contactid=1).items), 1)