File size: 667 Bytes
5f0301f 0d800ab |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import argparse
from openfactcheck.core.base import OpenFactCheck
from openfactcheck.lib.config import OpenFactCheckConfig
def parse_args():
parser = argparse.ArgumentParser(description='Initialize OpenFactCheck with custom configuration.')
# Add arguments here, example:
parser.add_argument("--config-path",
type=str,
help="Config File Path",
default="config.json")
# Parse arguments from command line
args = parser.parse_args()
return args
if __name__ == "__main__":
args = parse_args()
ofc = OpenFactCheck(OpenFactCheckConfig(args.config_path)) |