コード例 #1
0
ファイル: handlers.py プロジェクト: linkedinyou/vumi-go
 def find_contact(self, account_key, msisdn):
     contact_store = ContactStore(
         self.dispatcher.vumi_api.manager, account_key)
     try:
         contact = yield contact_store.contact_for_addr('ussd', msisdn)
         returnValue(contact)
     except ContactError:
         returnValue(None)