Python bindings for the Plaid API.
importjsonfromplaidimportClientclient=Client(client_id='***', secret='***')
connect=client.connect(account_type='bofa', username='***', password='***', email='john@whatever.com')
ifconnect.ok:
json_response=json.loads(connect.content)
printjson_response['mfa'][0] # Should be something like "What's your mother's maiden name?"step=client.step(account_type='bofa', mfa='Smith')
ifstep.ok:
transactions=json.loads(step.content)
# ...This repository was originally authored by Chris Forrette, and will be monitored and maintained (though not actively developed) by the Plaid team. Please email support@plaid.com with any questions.
- PK - fixes and Google App Engine Support