a screen-scraping API for Mint.com
pip install pyquery
From python, simply call get_accounts
. We recommend using a keyring library for persisting user credentials.
from mint import api
accounts = api.get_accounts(email, password)
From the command-line, the output is JSON:
>>> python mint/api.py email password
[
{
"accountName": "Chase Checking",
"lastUpdatedInString": "25 minutes",
"accountType": "bank",
"currentBalance": 100.12,
...
},
...
]