aboutsummaryrefslogtreecommitdiff
path: root/bcst/args.py
blob: 993c9ed4cd0a81d5f9040deaf308931d1c66bc9e (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python

import argparse

args_parser = argparse.ArgumentParser()
args_parser.add_argument("resource", nargs="?", help="A JSON resource file.")
args_parser.add_argument("destination", nargs="?",help="Start page folder name.")
args_parser.add_argument("-l","--list", dest="list",action="store_true", help="List available themes.")
args_parser.add_argument("-e","--extract", metavar="theme",dest="extract", help="Extract theme resource.")
args = args_parser.parse_args()