@ -18,10 +18,10 @@ parser.add_argument("-t", "--time", dest="time", help="Time to update each day u
parser.add_argument("-re","--resume",dest="resume",help="Resume collection run from a specific collection",type=str)
parser.add_argument("-r","--run",dest="run",help="Run without the scheduler",action="store_true",default=False)
parser.add_argument("-rt","--test","--tests","--run-test","--run-tests",dest="test",help="Run in debug mode with only collections that have test: true",action="store_true",default=False)
parser.add_argument("-lo","--library-only",dest="library_only",help="Run only library operations",action="store_true",default=False)
parser.add_argument("-co","--collection-only",dest="collection_only",help="Run only collection operations",action="store_true",default=False)
parser.add_argument("-cl","--collection","--collections",dest="collections",help="Process only specified collections (comma-separated list)",type=str)
parser.add_argument("-l","--library","--libraries",dest="libraries",help="Process only specified libraries (comma-separated list)",type=str)
parser.add_argument("-co","--collection-only","--collections-only",dest="collection_only",help="Run only collection operations",action="store_true",default=False)
parser.add_argument("-lo","--library-only","--libraries-only",dest="library_only",help="Run only library operations",action="store_true",default=False)
parser.add_argument("-rc","-cl","--collection","--collections","--run-collection","--run-collections",dest="collections",help="Process only specified collections (comma-separated list)",type=str)
parser.add_argument("-rl","-l","--library","--libraries","--run-library","--run-libraries",dest="libraries",help="Process only specified libraries (comma-separated list)",type=str)
parser.add_argument("-d","--divider",dest="divider",help="Character that divides the sections (Default: '=')",default="=",type=str)