#!/usr/bin/python3 import imh_cwp_dns import argparse parser = argparse.ArgumentParser(description='Sync DNS Zone to IMH DNS') parser.add_argument('zone', type=str, help='The zone to sync') args = parser.parse_args() imh_cwp_dns.updateZone(args.zone)