Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

ussuning/plaid-python

Open more actions menu
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Plaid

Python bindings for the Plaid API.

Usage

Connecting/Logging in with Multi Factored Authentication

import json

from plaid import Client

client = Client(client_id='***', secret='***')
connect = client.connect(account_type='bofa', username='***', password='***', email='john@whatever.com')

if connect.ok:
    json_response = json.loads(connect.content)

    print json_response['mfa'][0] # Should be something like "What's your mother's maiden name?"

    step = client.step(account_type='bofa', mfa='Smith')
    if step.ok:
        transactions = json.loads(step.content)
        # ...

Attribution & Maintenance

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.

Other Contributors

  • PK - fixes and Google App Engine Support

About

Python bindings for Plaid

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • Python 99.8%
  • Makefile 0.2%
Morty Proxy This is a proxified and sanitized view of the page, visit original site.