-
Notifications
You must be signed in to change notification settings - Fork 4
/
README
28 lines (21 loc) · 821 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
python-mbank - mBank Python parser
===================================
mBank parser for Python.
Features
--------
* List of accounts
* List of transactions
Usage
-----
from mbank.mbank import mBank
mbank = mBank("customer id", "password")
mbank.login()
result = mbank.get_transactions("full account number")
accounts = mbank.get_accounts()
Content of result variable:
[
<.....>
{'ss': 0, 'price': 5961.0500000000002, 'ks': 0, 'vs': 20120040, 'date_realization': datetime.date(2012, 6, 20), 'date_accounting': datetime.date(2012, 6, 20), 'type': 'incoming'},
{'ss': 0, 'price': 3961.0500000000002, 'ks': 7618, 'vs': 70577193, 'date_realization': datetime.date(2012, 6, 20), 'date_accounting': datetime.date(2012, 6, 20), 'type': 'outcoming'},
<.....>
]