Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nicolewhite/simplebank
A Python API for Simple Bank
https://github.com/nicolewhite/simplebank
Last synced: about 1 month ago
JSON representation
A Python API for Simple Bank
- Host: GitHub
- URL: https://github.com/nicolewhite/simplebank
- Owner: nicolewhite
- Created: 2016-07-10T05:52:47.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-27T20:14:36.000Z (about 8 years ago)
- Last Synced: 2024-11-02T01:50:30.929Z (about 2 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 32
- Watchers: 6
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# simplebank
## An API for [Simple Bank](https://www.simple.com/)
```python
from simplebank import Simplesimple = Simple('username', 'password')
goals = simple.goals()
transactions = simple.transactions()goals[0]
transactions[0]simple.create_goal('Plane Ticket', 750, finish='2016-11-01', color='red')
```