https://github.com/timwis/yesvo
Novo batch export command line tool. When Novo says no, Yesvo says Yes!
https://github.com/timwis/yesvo
Last synced: 2 months ago
JSON representation
Novo batch export command line tool. When Novo says no, Yesvo says Yes!
- Host: GitHub
- URL: https://github.com/timwis/yesvo
- Owner: timwis
- Created: 2014-01-24T23:43:29.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-01-24T23:44:17.000Z (over 12 years ago)
- Last Synced: 2025-01-25T07:11:24.046Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 141 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Yesvo
Novo batch export command line tool
## Requirements
PHP with cURL extension
## Usage
With PHP installed, navigate to the file's directory and execute via `php main.php` with the following parameters:
* `-u username_here`
* `-p password_here`
* `-i report_id_here`
* `-d params,comma,separated` (can include multiple times for multiple reports)
* `-e environment_here` (optional - production or development)
## Example Usage
`php main.php -u john.doe -p MyP@ssword -i 1234`
Exports report # 1234 to `data/1234.csv`
---
`php main.php -u john.doe -p MyP@assword -i 4321 -d 1/01/2013,1/31/2013`
Exports report # 4321 using params `1/01/2013` and `1/31/2013` to `data/4321_01-01-2013_01-31-2013.csv`
---
`php main.php -u john.doe -p MyP@ssword -i 4321 -d 1/01/2013,1/31/2013 -d 2/01/2013,2/28/2013`
Exports report # 4321 using params `1/01/2013` and `1/31/2013` to `data/4321_01-01-2013_01-31-2013.csv`, exports report # 4321 using params `1/01/2013` and `1/28/2013` to `data/4321_02-01-2013_02-28-2013.csv`, and then merges them together to `data/Merge_xxxxxx.csv`.