def get_args()

in download.py [0:0]


def get_args():
    parser = argparse.ArgumentParser()
    parser.add_argument(
        "--download_link_file",
        required=True,
        help="the path to the project download links file",
    )
    parser.add_argument(
        "--project_path",
        required=True,
        help="the directory to save the downloaded projects",
    )
    args = parser.parse_args()
    return args