def main()

in download.py [0:0]


def main():
    args = get_args()
    if not os.path.exists(args.project_path):
        os.makedirs(args.project_path)
    with open(args.download_link_file, "r") as infile:
        urls = infile.readlines()

    # Download zip files and extract .java files
    parallel_download(urls, download_project, args=(args.project_path,))