Skip to content

Smahoney37/mintapi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 

Repository files navigation

mintapi

a screen-scraping API for Mint.com.

Requirements

Ensure you have Python 2 or 3 and pip (easy_install pip) and then:

pip install requests pyquery

Usage

from Python

From python, simply call get_accounts. We recommend using the keyring library for persisting credentials.

from mint import api
accounts = api.get_accounts(email, password)

from anywhere

Run it as a sub-process from your favorite language. 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,
    ...
  },
  ...
]

About

a screen-scraping API for Mint.com

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published