예제 #1
0
파일: box.py 프로젝트: nakamuray/genaa
def run(opt):
    if getattr(opt, 'text'):
        text = opt.text
    else:
        text = sys.stdin.read()

    box = Box(style_mapping[opt.style],
              width=opt.width, height=opt.height,
              align=opt.align, text=text)

    return box.render()