From 4ce453885f80a8cdca104b1a7e3c08d8227a0d13 Mon Sep 17 00:00:00 2001 From: Ash Garcia Date: Mon, 12 Aug 2024 23:00:01 -0700 Subject: [PATCH] example fixes --- README.md | 1 + anonymize_entries.py | 13 +++++++------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index fd2fef5..331cdfe 100644 --- a/README.md +++ b/README.md @@ -58,5 +58,6 @@ example: Then run the script: + poetry shell python ./anonymize_entries.py path/to/folder ``` diff --git a/anonymize_entries.py b/anonymize_entries.py index cfa28e3..83ef17e 100644 --- a/anonymize_entries.py +++ b/anonymize_entries.py @@ -57,19 +57,20 @@ def argparser(): epilog=textwrap.dedent( """\ example: - + + Export your Google Form's CSV & file uploads to the same folder: + path/to/folder: ├ form_responses.csv └ file_responses/ ├ Upload A - User 1.zip ├ Upload B - User 2.zip └ etc. - - python ./anonymize_entries.py path/to/folder - - OR - python ./anonymize_entries.py -c path/to/folder/form_responses.csv -f path/to/folder/file_responses + Then run the script: + + poetry shell + python ./anonymize_entries.py path/to/folder """ ), )