當前位置: 首頁>>代碼示例>>Python>>正文


Python lib.Address類代碼示例

本文整理匯總了Python中gramps.gen.lib.Address的典型用法代碼示例。如果您正苦於以下問題:Python Address類的具體用法?Python Address怎麽用?Python Address使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Address類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: add_phone

 def add_phone(self, fields, data):
     """Read the TEL property of a VCard."""
     tel = data.strip()
     if tel:
         addr = Address()
         addr.set_phone(self.unesc(tel))
         self.person.add_address(addr)
開發者ID:SNoiraud,項目名稱:gramps,代碼行數:7,代碼來源:importvcard.py

示例2: column_phone

 def column_phone(self,data):
     try:
         if data[5]:
             addr = Address()
             addr.unserialize(data[5][0])
             return addr.get_phone()
     except:
         pass
     return ''
開發者ID:SNoiraud,項目名稱:gramps,代碼行數:9,代碼來源:repomodel.py

示例3: add_address

 def add_address(self, fields, data):
     """Read the ADR property of a VCard."""
     data_fields = self.split_unescaped(data, ';')
     data_fields = [x.strip() for x in self.unesc(data_fields)]
     if ''.join(data_fields):
         addr = Address()
         def add_street(strng):
             if strng:
                 already = addr.get_street()
                 if already:
                     addr.set_street("%s %s" % (already, strng))
                 else:
                     addr.set_street(strng)
         addr.add_street = add_street
         set_func = ['add_street', 'add_street', 'add_street', 'set_city',
                     'set_state', 'set_postal_code', 'set_country']
         for i, data in enumerate(data_fields):
             if i >= len(set_func):
                 break
             getattr(addr, set_func[i])(data)
         self.person.add_address(addr)
開發者ID:SNoiraud,項目名稱:gramps,代碼行數:21,代碼來源:importvcard.py


注:本文中的gramps.gen.lib.Address類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。