Python beginner. I am trying to run the following script (download_meta_review_dump.py). To make it easier to view I have included a link to github, as I had issues copying it here - https://github.com/trustyou/example-meta-review-dump
I am using Python 2.7.13 on Windows 10 and receive the following error when I try running the script:
Demonstration of how to download a complete meta-review API dump.
[-h] --dest_folder DEST_FOLDER
Demonstration of how to download a complete meta-review API dump.
: error: argument --dest_folder is required
What I am expecting is a prompt to appear, requesting me to enter an AWS access key.
awscli and boto have already been installed.
Also I have created an empty folder (named dest_folder) in the same folder where i have saved the script, but still receive the above error.
Can anyone point me in the right direction of what I am doing wrong?
You are trying to download without pointing a destination. Create the destination folder(let's call it container) inside the folder of the script and append this to the end of the script call ~script name here~ --dest_folder container or ~script name here~ --dest_folder "container".