Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nickpegg/simple-cli
CLI tool for interacting with your Simple bank account
https://github.com/nickpegg/simple-cli
Last synced: 2 months ago
JSON representation
CLI tool for interacting with your Simple bank account
- Host: GitHub
- URL: https://github.com/nickpegg/simple-cli
- Owner: nickpegg
- License: mit
- Created: 2014-07-06T22:57:10.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-01-08T15:41:42.000Z (almost 4 years ago)
- Last Synced: 2024-04-16T18:31:52.180Z (9 months ago)
- Language: Python
- Size: 24.4 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple CLI
A CLI tool for interacting with your Simple bank account.
*Note:* This is still under early development. The way argument parsing is handled and the available commands are subject to change before the 0.1.0 release (though it shouldn't change too much!).
## Installation
`sudo pip install https://github.com/nickpegg/simple-cli/archive/master.zip`
## Usage
### Examples
```
# Get last 20 transactions
simple tail -n 20# Get last 5 transactions and display any new ones as they appear in your account
simple tail -n5 -f# Check the status of your goals
simple goals# If you use a command-line password manager, such as password-store,
# you can use it to pass the password into simple-cli via standard input, like this:
pass show simple | simple -u yourusername -p goals
```### Full Usage
```
Usage: simple [OPTIONS] COMMAND [ARGS]...Options:
-u TEXT Specify a username
-p Read password from stdin
-o [human|raw|pprint|json] Output format
--version Show the version and exit.
-h Show this message and exit.
--help Show this message and exit.Commands:
balances Show your bank balances
card Show information about your card
goals Show your goals
payments Show your upcoming payments
tail Show your latest transactions
```#### Goals
```
Usage: simple goals [OPTIONS]Show your goals
Options:
--archived Show archived goals
--completed Shop completed goals
-h Show this message and exit.
--help Show this message and exit.
```#### Tail
```
Usage: simple tail [OPTIONS]Show your latest transactions
Options:
-n INTEGER Fetch these many transactions
-f Display transactions as they're made
-h Show this message and exit.
--help Show this message and exit.
```