Source code for rse.client.clear

"""

Copyright (C) 2020 Vanessa Sochat.

This Source Code Form is subject to the terms of the
Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed
with this file, You can obtain one at http://mozilla.org/MPL/2.0/.

"""

from rse.main import Encyclopedia


[docs]def main(args, extra): # Clear a parser, uid, or target enc = Encyclopedia(config_file=args.config_file, database=args.database) enc.clear(args.target, noprompt=args.force)