From d3204cee883b090b7dd4efa4dc16e99b107c2858 Mon Sep 17 00:00:00 2001 From: Ash Garcia Date: Mon, 12 Aug 2024 17:01:30 -0700 Subject: [PATCH] update readme --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index c8583ac..3679101 100644 --- a/README.md +++ b/README.md @@ -21,26 +21,26 @@ python ./anonymize_entries.py path/to/folder ### Help contents ``` -usage: anonymize_entries.py [-h] [-c CSV] [-f FILE_UPLOADS] [-d | --dry-run | --no-dry-run] [-D | --deanonymized | --no-deanonymized] [-e EMAILS] [-o OUTPUT] +usage: anonymize_entries.py [-h] [-c CSV] [-f FILE_UPLOADS] [-o OUTPUT] [-d | --dry-run | --no-dry-run] [-D | --deanonymized | --no-deanonymized] [-e EMAILS] [-r | --regenerate | --no-regenerate] [-s SEED] - [data_dir] + data_dir positional arguments: - data_dir directory containing both the CSV form data and the file responses (uploads) + data_dir working directory - used to find the form responses CSV, file responses directory, and for output options: -h, --help show this help message and exit - -c CSV, --csv CSV override path to the CSV file of form responses + -c CSV, --csv CSV override CSV form responses path (defaults to first file matching {data_dir}/*.csv) -f FILE_UPLOADS, --file-uploads FILE_UPLOADS - override path to the directory of file responses (uploads) + override file responses directory path (defaults to first subdirectory matching {data_dir}/*/*.zip) + -o OUTPUT, --output OUTPUT + override output path (defaults to {data_dir}/output) -d, --dry-run, --no-dry-run do not create or modify any files -D, --deanonymized, --no-deanonymized skip anonymization of files, simply package them as-is -e EMAILS, --emails EMAILS limit output to files from the specified emails (comma-separated) - -o OUTPUT, --output OUTPUT - output directory -r, --regenerate, --no-regenerate force-update generated CSV columns -s SEED, --seed SEED specify random seed for alias generation (treat this like a password & change it for each round)