Source code for pyiron_base.cli.rm

# Copyright (c) Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department
# Distributed under the terms of "New BSD License", see the LICENSE file.
"""
Remove jobs from pyiron project or whole project.
"""

import os
from argparse import ArgumentParser, Namespace

from pyiron_base.project.generic import Project

__author__ = "Marvin Poul"
__copyright__ = (
    "Copyright 2020, Max-Planck-Institut für Eisenforschung GmbH - "
    "Computational Materials Design (CM) Department"
)
__version__ = "1.0"
__maintainer__ = "Marvin Poul"
__email__ = "poul@mpie.de"
__status__ = "production"
__date__ = "23 Jun, 2020"


[docs] def register(parser: ArgumentParser): parser.add_argument( "project", default=".", nargs="?", help="path to pyiron project" ) parser.add_argument( "-j", "--jobs-only", action="store_true", help="only remove jobs inside project" ) parser.add_argument( "-r", "--recursive", action="store_true", help="recurse into subprojects" )
[docs] def main(args: Namespace) -> None: pr = Project(args.project) if args.jobs_only: pr.remove_jobs(recursive=args.recursive, silently=True) else: pr.remove(enable=True) if os.path.exists(args.project) and not os.listdir(args.project): os.rmdir(args.project)