Beispiel #1
0
 def query_from_institution( institution ):
     builder = Builder( institution )
     query = builder.acctQuery()
     resp = builder.doQuery( query )
     resp_handle = StringIO.StringIO(resp)
     accounts = []
     for a in OfxParser.parse(resp_handle).accounts:
         accounts.append( Account.from_ofxparser(institution,a) )
     return accounts