文件名称:helpgen:帮助制作软件使用信息的 Argparse 前端库
文件大小:3KB
文件格式:ZIP
更新时间:2024-07-14 12:13:37
Python
帮助根 helpgen帮助您轻松制作命令行工具的帮助/使用消息。 例子 接下来是如何使用库的简短示例: #!/usr/bin/env python import sys from helpgen.decorators import Action from helpgen.parser import ActionParser @Action('test') def action_test(): """run a test""" print("I AM A TEST \o/") @Action('hello', args=['word']) def action_hello(word): """display a word""" print("The word is : %s" % (word,)) def main(): parser = Actio
【文件预览】:
helpgen-master
----MANIFEST.in(19B)
----README.rst(2KB)
----helpgen()
--------decorators.py(278B)
--------parser.py(2KB)
--------__init__.py(0B)
----setup.py(743B)
----.gitignore(73B)