A Fast Command Analyser based on Dict
Reason this release was yanked:
bug
Project description
Alconna
Alconna 隶属于ArcletProject, 是 Cesloi-CommandAnalysis 的高级版, 支持解析消息链或者其他原始消息数据
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.get('install')) # 或者 result.install
其结果为
{'pak_name': 'cesloi', 'upgrade': Ellipsis}
讨论
QQ 交流群: 链接
特点
高效. 在 i5-10210U 处理器上, 性能大约为 41000~101000 msg/s
精简、多样的构造方法
强大的自动类型转换功能
可传入同步与异步的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"?
'''
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-0.9.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fef49df32f687bd3b662edf6810471d195c98a86bcdf197a4e3a49d0cf208e55 |
|
MD5 | bd06fb2d14fee1434c60c9cc7113f0c3 |
|
BLAKE2b-256 | 697767dfe8ebfb4aebe2f4ca0ada9d385e0f680e7d44a6b95485d80100084904 |