本文整理汇总了Python中contact_gc.GCContact.set_name方法的典型用法代码示例。如果您正苦于以下问题:Python GCContact.set_name方法的具体用法?Python GCContact.set_name怎么用?Python GCContact.set_name使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类contact_gc.GCContact
的用法示例。
在下文中一共展示了GCContact.set_name方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_create_contact
# 需要导入模块: from contact_gc import GCContact [as 别名]
# 或者: from contact_gc.GCContact import set_name [as 别名]
def test_create_contact(self, f=None):
if not f:
f = self.gout
c = GCContact(f)
c.set_name("ScrewBall Joseph")
cid = c.save()
if cid:
print "Successfully added contact. ID: ", cid
else:
print "D" "oh. Failed."
示例2: create_gc_contact
# 需要导入模块: from contact_gc import GCContact [as 别名]
# 或者: from contact_gc.GCContact import set_name [as 别名]
def create_gc_contact (asynk, uinps):
gc = asynk.get_db('gc')
gcfid = uinps.gcfid
gcf, t = gc.find_folder(gcfid)
con = GCContact(gcf)
con.set_name('Sri Venkata Sri Rama Subramanya Anjeneya Annapurna Sharma')
con.set_prefix('Mr.')
con.set_nickname('Karra')
# con.set_gender('Male')
con.add_phone_mob(('Mobile', '+91 90084 88997'))
con.add_notes('And so it goes...')
# FIXME: We should do a more exhaustive sort of contact, with multiple
# entries of each type of possible entry and so on...
return con.save()