parser.add_argument("-op","--operation","--operations","-lo","--library-only","--libraries-only","--operation-only","--operations-only",dest="operations",help="Run only operations",action="store_true",default=False)
parser.add_argument("-ov","--overlay","--overlays","--overlay-only","--overlays-only",dest="overlays",help="Run only overlays",action="store_true",default=False)
parser.add_argument("-lf","--library-first","--libraries-first",dest="library_first",help="Run library operations before collections",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("-rm","-m","--metadata","--metadata-files","--run-metadata-files",dest="metadata",help="Process only specified Metadata files (comma-separated list)",type=str)
parser.add_argument("-rc","-cl","--collection","--collections","--run-collection","--run-collections",dest="collections",help="Process only specified collections (pipe-separated list '|')",type=str)
parser.add_argument("-rl","-l","--library","--libraries","--run-library","--run-libraries",dest="libraries",help="Process only specified libraries (pipe-separated list '|')",type=str)
parser.add_argument("-rm","-m","--metadata","--metadata-files","--run-metadata-files",dest="metadata",help="Process only specified Metadata files (pipe-separated list '|')",type=str)
parser.add_argument("-ca","--cache-library","--cache-libraries",dest="cache_libraries",help="Cache Library load for 1 day",action="store_true",default=False)
parser.add_argument("-dc","--delete","--delete-collections",dest="delete_collections",help="Deletes all Collections in the Plex Library before running",action="store_true",default=False)
parser.add_argument("-dl","--delete-label","--delete-labels",dest="delete_labels",help="Deletes all Labels in the Plex Library before running",action="store_true",default=False)