''' Move an artifact within Anaconda Repository. example:: conda repo move mychannel/mypackage/1.2.0/mypackage.tar.gz ''' from .base import BulkActionCommand, PackageSpec class SubCommand(BulkActionCommand): name = "move" def add_parser(self, subparsers): parser = subparsers.add_parser('move', help='Move packages from one channel to another.', description=__doc__) parser.add_argument('specs', help=('Package - written as ' '/[::[/[/]]]' 'If filename is not given, move all files in the version'), type=PackageSpec.from_string, nargs='+') parser.add_argument('-d', '--destination', help='Channel to put all packages into', default=None) parser.add_argument('--family', default='conda', help='artifact family (i.e.: conda, python, cran, anaconda_project, ' 'anaconda_env, nootebook)') parser.set_defaults(main=self.main)