argsdict
1.0.0
简单的命令行参数解析器。
$ python example.py John Smith --age=30 --married
示例
from argsdict import args
dictionary = args ([ 'name' , 'surname' ])字典
{
"name" : " John " ,
"surname" : " Smith " ,
"--age" : " 30 " ,
"--married" : true
}