actually the file shouldn't be called

'good_repos.csv' because there aren't only good repos, so calling it 'repos.csv'
This commit is contained in:
Karma Riuk
2025-03-13 11:25:13 +01:00
parent f8568fe8ec
commit 3a1b24dcb3

View File

@ -258,7 +258,7 @@ if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Clone repos from a given file")
parser.add_argument("file", default="results.csv.gz", help="The file to download the repos from. Default is 'results.csv.gz'")
parser.add_argument("-d", "--dest", default="./results/", help="The root directory in which to download the repos. Default is './results/'")
parser.add_argument("-r", "--results", default="good_repos.csv", help="The name of file in which to save the results. Also used with --continue. Default is 'good_repos.csv'")
parser.add_argument("-r", "--results", default="repos.csv", help="The name of file in which to save the results. Also used with --continue. Default is 'repos.csv'")
parser.add_argument("-l", "--lazy", action="store_true", help="If given, the program will continue from where it left off, by not touch the already processed repos. Will look at the file pointed by the --results argument")
parser.add_argument("-f", "--force", action="store_true", help="Force the download of the repos")
parser.add_argument("-v", "--verbose", action="store_true", help="Make the program verbose")