example fixes

This commit is contained in:
Ash Garcia 2024-08-12 23:00:01 -07:00
parent aaa4a12b7a
commit 4ce453885f
2 changed files with 8 additions and 6 deletions

View file

@ -58,5 +58,6 @@ example:
Then run the script: Then run the script:
poetry shell
python ./anonymize_entries.py path/to/folder python ./anonymize_entries.py path/to/folder
``` ```

View file

@ -57,19 +57,20 @@ def argparser():
epilog=textwrap.dedent( epilog=textwrap.dedent(
"""\ """\
example: example:
Export your Google Form's CSV & file uploads to the same folder:
path/to/folder: path/to/folder:
form_responses.csv form_responses.csv
file_responses/ file_responses/
Upload A - User 1.zip Upload A - User 1.zip
Upload B - User 2.zip Upload B - User 2.zip
etc. 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
""" """
), ),
) )