a screen-scraping API for Mint.com
Project description
a screen-scraping API for Mint.com. [](https://travis-ci.org/mrooney/mintapi)
Requirements === Ensure you have Python 2 or 3 and pip (easy_install pip) and then:
pip install mintapi
Usage ===
from Python — From python, simply call get_accounts. We recommend using the keyring library for persisting credentials.
import mintapi accounts = mintapi.get_accounts(email, password)
from anywhere — Run it as a sub-process from your favorite language; pip install mintapi creates a binary in your $PATH. From the command-line, the output is JSON:
>>> mintapi email password
[
{
"accountName": "Chase Checking",
"lastUpdatedInString": "25 minutes",
"accountType": "bank",
"currentBalance": 100.12,
...
},
...
]
If you need to avoid using pip or setup.py, you can also clone/download this repository and run: python mintapi/api.py email password
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file mintapi-1.4.tar.gz.
File metadata
- Download URL: mintapi-1.4.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95a1733422678dc6ca6d1f9afa81135ad84ae941623fab20d49ca65cdea3d13b
|
|
| MD5 |
c55b26c00d6cffed8e5264f0045d91b7
|
|
| BLAKE2b-256 |
d39a572b831ac8ef065543361f274239482784c3ddaa73a7fef0056a8ea0623e
|