Skip to main content

A Fast Command Analyser based on Dict

Reason this release was yanked:

bug

Project description

Alconna

Alconna latest release Licence PyPI PyPI - Python Version

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

If you're not sure about the file name format, learn more about wheel file names.

arclet_alconna-0.9.0-py3-none-any.whl (67.1 kB view details)

Uploaded Python 3

File details

Details for the file arclet_alconna-0.9.0-py3-none-any.whl.

File metadata

File hashes

Hashes for arclet_alconna-0.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 df24b8ff7baf3aa0d3c9a512f07a0ba78a66f5639a217c038b7eb50cd1552501
MD5 3196fc27cc10c33db3cef7800d849740
BLAKE2b-256 21e1078c008e11a5673574b5808df18ec3be27e21660a5748a3c48dd884555e2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page