Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ccptr/qbtools
QuickBooks tools for your terminal.
https://github.com/ccptr/qbtools
quickbooks quickbooks-api quickbooks-online
Last synced: about 1 month ago
JSON representation
QuickBooks tools for your terminal.
- Host: GitHub
- URL: https://github.com/ccptr/qbtools
- Owner: ccptr
- License: mit
- Created: 2022-07-22T04:12:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-26T09:42:52.000Z (about 1 year ago)
- Last Synced: 2023-09-26T11:27:26.533Z (about 1 year ago)
- Topics: quickbooks, quickbooks-api, quickbooks-online
- Language: Rust
- Homepage:
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - ccptr/qbtools - QuickBooks tools for your terminal. Mirror of https://codeberg.org/ccptr/qbtools. (Rust)
README
# Examples
## Export items to stdout in the JSON format
```sh
qbtools export items
```## Export customers to stdout in the TOML format
```sh
qbtools export customers -f toml
```## Export customers to a file
```sh
qbtools export customers --output-path customer-data.json
```# Configuration
Run once to create an example JSON config file in your current directory.
The config file read in the following order:
- qb-api-cfg.json
- qb-api-cfg.toml
- qb-api-cfg.yaml
- qb-api-cfg.yml# Warning
This crate is still in development, and things (such as the config file name/lookup order) may change at any time, and without warning, *especially* before the crate reaches version 0.1.0. However, I don't expect anything in the `Examples` section to break.