From 5be8659264297759411d36cbee59865715a1885e Mon Sep 17 00:00:00 2001 From: Nick Heppler Date: Thu, 22 May 2025 10:32:35 -0400 Subject: [PATCH] docs: Update README to include --test flag functionality - Added documentation for the new `--test` command-line argument. - Updated the "Script Usage" section to reflect the new flag. - Enhanced the "Functionality" section to mention the test mode feature. - Included examples of how to use the `--test` flag in the "Usage Examples" section. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index afc30ec..90cf852 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,7 @@ python 753DataSync.py --results_per_page 100 | Argument | Description | |----------------------|---------------------------------------------| | `--results_per_page` | Optional. Number of results per API call (default: `100`) | +| `--test` | Optional. If set, only fetch the first page of results. | --- @@ -99,6 +100,7 @@ python 753DataSync.py --results_per_page 100 5. **๐Ÿ“ค Add Features** โ€” Sends data to ArcGIS feature layer. 6. **๐Ÿงน File Cleanup** โ€” Deletes `.json`/`.log` files older than `PURGE_DAYS`. 7. **๐Ÿ“‘ Dynamic Logs** โ€” Logs saved to `753DataSync_YYYY-MM-DD.log`. +8. **๐Ÿงช Test Mode** โ€” Use the `--test` flag to fetch only the first page of results for testing purposes. ---