-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a434031
commit c2123d5
Showing
1 changed file
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,16 @@ | ||
# mono-cli | ||
CLI tool that exports mono statements to csv | ||
CLI tool that exports mono statements in csv format and prints it to stdout. | ||
Works only with personal API key. | ||
|
||
### Limitations | ||
Due to monobank API limitations tool can only load statements for 31 days period in one request and only send one request per 60 seconds. So if you launched a tool and it's still running and nothing printed - just wait. | ||
|
||
### Configuration | ||
Tool can be configured using following environment variables | ||
``` | ||
MONO_APIKEY - required. Your personal API key, see https://api.monobank.ua/ | ||
MONO_STARTDATE - this tool will import statements occured after this date. Expected format: unix timestamp in UTC. If not set default value is monobank launch date (15 Nov 2017) | ||
MONO_STARTDATE - this tool will import statements occured before this date. Expected format: unix timestamp in UTC. If not set default value is current date time | ||
``` |