コード例 #1
0
ファイル: csv2html.py プロジェクト: skitazaki/sandbox
def postfook(opts, args):
    check_file_path(opts, args)
    if not opts.style in STYLES:
        raise ArgumentError('Available styles are "list" or "table".')
コード例 #2
0
ファイル: csv2htmllist.py プロジェクト: skitazaki/sandbox
def postfook(opts, args):
    check_file_path(opts, args)
    if not opts.outtype in ("html", "json"):
        raise ArgumentError('Available types are "html" or "json".')