Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/christiankuehnel/monpyou
Pyhton library to read account information from moneyou bank.
https://github.com/christiankuehnel/monpyou
Last synced: 21 days ago
JSON representation
Pyhton library to read account information from moneyou bank.
- Host: GitHub
- URL: https://github.com/christiankuehnel/monpyou
- Owner: ChristianKuehnel
- License: apache-2.0
- Created: 2018-05-29T18:40:34.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-17T17:51:23.000Z (over 6 years ago)
- Last Synced: 2024-10-29T18:25:22.795Z (2 months ago)
- Language: Python
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# monpyou
Python library to read account information from the [moneyou](https://www.moneyou.de/) bank.Right now the library only supports reading the balance of an account.
# Usage
A simple usage example:```python
from monpyou import MonpYoumpy = MonpYou(username, password)
mpy.update_accounts()
for account in mpy.accounts:
print("{} ({}): {} {}".format(account.name, account.iban, account.balance, account.currency))
```
See also [monpyou_demo](monpyou_demo).# License
Licensed under the Apache License, Version 2.0 (the "License");you may not use this project except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0# Disclaimer
This project is not supported in any way by moneyou. Use it at your own risk!