A High-performance, Generality, Humane Command Line Arguments Parser Library.
Project description
Alconna
English: README
Alconna 隶属于 ArcletProject, 是一个简单、灵活、高效的命令参数解析器, 并且不局限于解析命令式字符串。
Alconna 拥有复杂的解析功能与命令组件,但 一般情况下请当作[STRIKEOUT:奇妙]简易的消息链解析器/命令解析器(雾)
安装
pip
pip install --upgrade arclet-alconna
文档
文档链接: 👉指路
相关文档: 📚文档
简单使用
from arclet.alconna import Alconna, Option, Subcommand, Args
cmd = Alconna(
"/pip",
options=[
Subcommand("install", [Option("-u|--upgrade")], Args.pak_name[str]),
Option("list"),
]
)
result = cmd.parse("/pip install cesloi --upgrade") # 该方法返回一个Arpamar类的实例
print(result.query('install')) # 或者 result.install
其结果为
{'value': None, 'args': {'pak_name': 'cesloi'}, 'options': {'upgrade': Ellipsis}}
讨论
QQ 交流群: 链接
特点
高效. 在 i5-10210U 处理器上, 性能大约为 41000~101000 msg/s; 测试脚本: benchmark
精简、多样的构造方法
强大的类型解析与转换功能
可传入同步与异步的 action 函数
高度自定义的 HelpFormat、Analyser
自定义语言文件, 支持 i18n
命令输入缓存, 以保证重复命令的快速响应
Duplication、FuzzyMatch等一众特性
类型转换示范:
from arclet.alconna import Alconna, Args
from pathlib import Path
read = Alconna(
"read", Args["data":bytes],
action=lambda data: print(type(data))
)
read.parse(["read", b'hello'])
read.parse("read test_fire.py")
read.parse(["read", Path("test_fire.py")])
'''
<class 'bytes'>
<class 'bytes'>
<class 'bytes'>
'''
模糊匹配示范:
from arclet.alconna import Alconna
alc = Alconna('!test_fuzzy', "foo:str", is_fuzzy_match=True)
alc.parse("!test_fuzy foo bar")
'''
!test_fuzy not matched. Are you mean "!test_fuzzy"?
'''
typing 支持示范:
from typing import Annotated # or typing_extensions.Annotated
from arclet.alconna import Alconna, Args
alc = Alconna("test", Args.foo[Annotated[int, lambda x: x % 2 == 0]])
alc.parse("test 2")
alc.parse("test 3")
'''
'foo': 2
ParamsUnmatched: 参数 3 不正确
'''
许可
Alconna 采用 MIT 许可协议
鸣谢
JetBrains: 为本项目提供 PyCharm 等 IDE 的授权 ` <https://www.jetbrains.com/>`__
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for arclet_alconna-1.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c8de58c4ef91ef3ecbe2d422eecff100c8f5d0c1f0d8404db4d9efc5135a269 |
|
MD5 | 7536d9e3960d005274511d8c190466fc |
|
BLAKE2b-256 | 6e30f9d48ca36db786c6ef10f471952f95dc0f16326397c085520ea0524b6331 |