twilight
ArgResult 🔗
Bases: Generic[T]
, MatchResult[T, ArgumentMatch]
表示 ArgumentMatch 匹配结果
Source code in src/graia/ariadne/message/parser/twilight.py
411 412 413 414 |
|
ArgumentMatch 🔗
参数匹配
Source code in src/graia/ariadne/message/parser/twilight.py
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 |
|
__init__ 🔗
__init__(*pattern: str, **kwargs: str) -> None
初始化 ArgumentMatch 对象.
Parameters:
-
*pattern
(
str
) –匹配的参数名.
-
action
(
Union[str, Type[Action]]
) –参数的动作. Defaults to "store".
-
nargs
(
Union[int, str]
) –参数的个数.
-
const
(
T
) –参数的常量值.
-
default
(
T
) –参数的默认值.
-
type
(
Callable[[str], T]
) –参数的类型.
-
choices
(
Iterable[T]
) –参数的可选值.
-
optional
(
bool
) –参数是否可选. Defaults to True.
Returns:
-
None(
None
) –无返回
Source code in src/graia/ariadne/message/parser/twilight.py
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 |
|
help 🔗
help(value: str) -> Self
设置帮助值
Parameters:
-
value
(
str
) –帮助字符串
Returns:
-
Self(
Self
) –返回自身
Source code in src/graia/ariadne/message/parser/twilight.py
394 395 396 397 398 399 400 401 402 403 404 405 |
|
param 🔗
param(target: Union[int, str]) -> Self
标注分派位置
Parameters:
Returns:
-
Self(
Self
) –返回自身
Source code in src/graia/ariadne/message/parser/twilight.py
381 382 383 384 385 386 387 388 389 390 391 392 |
|
ElementMatch 🔗
Bases: RegexMatch
元素类型匹配
Source code in src/graia/ariadne/message/parser/twilight.py
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 |
|
__init__ 🔗
__init__(type: Type[Element] = ..., optional: bool = False) -> None
初始化 ElementMatch 对象.
Parameters:
Source code in src/graia/ariadne/message/parser/twilight.py
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
|
ElementResult 🔗
Bases: MatchResult[Element, ElementMatch]
表示 ElementMatch 匹配结果
Source code in src/graia/ariadne/message/parser/twilight.py
423 424 425 426 |
|
ForceResult 🔗
Bases: MatchResult[T, Match]
声明匹配结果一定存在/可通过 matched 判别
Source code in src/graia/ariadne/message/parser/twilight.py
429 430 431 432 433 434 |
|
FullMatch 🔗
Bases: RegexMatch
全匹配
Source code in src/graia/ariadne/message/parser/twilight.py
212 213 214 215 216 217 |
|
Help 🔗
Bases: Decorator
, Generic[T]
返回帮助信息的装饰器
Source code in src/graia/ariadne/message/parser/twilight.py
854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 |
|
__init__ 🔗
__init__(
formatter: Optional[
Callable[[str, DecoratorInterface], Union[Awaitable[T], T]]
] = None
) -> None
Parameters:
Source code in src/graia/ariadne/message/parser/twilight.py
879 880 881 882 883 884 885 886 887 |
|
Match 🔗
Bases: abc.ABC
, Representation
匹配项抽象基类
Source code in src/graia/ariadne/message/parser/twilight.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
|
help 🔗
help(value: str) -> Self
设置匹配项的帮助信息.
Source code in src/graia/ariadne/message/parser/twilight.py
90 91 92 93 |
|
param 🔗
param(target: Union[int, str]) -> Self
设置匹配项的分派位置.
Source code in src/graia/ariadne/message/parser/twilight.py
95 96 97 98 |
|
MatchResult 🔗
Bases: Generic[T, T_Match]
, Representation
匹配结果
Source code in src/graia/ariadne/message/parser/twilight.py
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
|
__init__ 🔗
__init__(matched: bool, origin: T_Match, result: T = None) -> None
初始化 MatchResult 对象.
Parameters:
-
matched
(
bool
) –是否匹配成功
-
origin
(
T_Match
) –原来的 Match 对象
-
result
(
T
) –匹配结果. Defaults to None.
Source code in src/graia/ariadne/message/parser/twilight.py
130 131 132 133 134 135 136 137 138 139 140 |
|
ParamMatch 🔗
Bases: RegexMatch
与 WildcardMatch 类似, 但需要至少一个字符. 且仅匹配用空格分开的一段
Source code in src/graia/ariadne/message/parser/twilight.py
284 285 286 287 288 289 290 291 292 293 294 295 |
|
RegexMatch 🔗
Bases: Match
正则表达式匹配
Source code in src/graia/ariadne/message/parser/twilight.py
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 |
|
__init__ 🔗
__init__(pattern: str = '', optional: bool = False) -> None
初始化 RegexMatch 对象.
Parameters:
Returns:
-
None(
None
) –无返回.
Source code in src/graia/ariadne/message/parser/twilight.py
152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
|
flags 🔗
flags(flags: re.RegexFlag) -> Self
设置正则表达式的标志.
Parameters:
Returns:
-
Self(
Self
) –RegexMatch 自身.
Source code in src/graia/ariadne/message/parser/twilight.py
167 168 169 170 171 172 173 174 175 176 177 |
|
space 🔗
space(space: SpacePolicy) -> Self
设置正则表达式的尾随空格策略.
Parameters:
-
space
(
SpacePolicy
) –尾随空格策略.
Returns:
-
Self(
Self
) –RegexMatch 自身.
Source code in src/graia/ariadne/message/parser/twilight.py
179 180 181 182 183 184 185 186 187 188 189 |
|
RegexResult 🔗
Bases: MatchResult[MessageChain, RegexMatch]
表示 RegexMatch 匹配结果
Source code in src/graia/ariadne/message/parser/twilight.py
417 418 419 420 |
|
ResultValue 🔗
Bases: Decorator
, Derive[MessageChain]
返回 Match 结果值的装饰器
Source code in src/graia/ariadne/message/parser/twilight.py
829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 |
|
SpacePolicy 🔗
指示 RegexMatch 的尾随空格策略.
Source code in src/graia/ariadne/message/parser/twilight.py
58 59 60 61 62 63 64 65 66 67 68 69 70 |
|
Sparkle 🔗
Bases: Representation
Source code in src/graia/ariadne/message/parser/twilight.py
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 |
|
Twilight 🔗
Bases: Generic[T_Sparkle]
, BaseDispatcher
暮光
Source code in src/graia/ariadne/message/parser/twilight.py
624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 |
|
__init__ 🔗
__init__(
*root: Union[Iterable[Match], Match],
map_param: Optional[Dict[str, bool]] = None,
preprocessor: Union[
ChainDecorator, AnnotatedType, None, Literal[Sentinel]
] = Sentinel
) -> None
本魔法方法用于初始化本实例.
Parameters:
-
*root
(
Iterable[Match] | Match
) –匹配规则.
-
map_param
(
Dict[str, bool]
) –控制 MessageChain 转化的参数.
-
preprocessor
(
ChainDecorator
) –消息链预处理器. 应该来自
graia.ariadne.message.parser.base
模块. Defaults to None.
Source code in src/graia/ariadne/message/parser/twilight.py
629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 |
|
beforeExecution
async
🔗
beforeExecution(interface: DispatcherInterface)
检验 MessageChain 并将 Sparkle 存入本地存储
Parameters:
-
interface
(
DispatcherInterface
) –DispatcherInterface, 应该能从中提取 MessageChain
Raises:
-
ExecutionStop
–匹配以任意方式失败
Source code in src/graia/ariadne/message/parser/twilight.py
780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 |
|
from_command
classmethod
🔗
from_command(
command: str, extra_args: Optional[List[Match]] = None
) -> Twilight
从 shell 式命令生成 Twilight.
Parameters:
-
command
(
str
) –命令, 使用 {param} 或 {0} 的形式创建参数占位符. 使用 [a|b] 创建选择匹配. 使用 反斜杠 转义.
-
extra_args
(
List[Match]
) –可选的额外 Match 列表.
Returns:
-
Twilight(
Twilight
) –生成的 Twilight.
Source code in src/graia/ariadne/message/parser/twilight.py
673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 |
|
generate 🔗
generate(
chain: MessageChain, storage: Optional[Dict[str, Any]] = None
) -> T_Sparkle
从消息链生成 Sparkle 实例.
Parameters:
-
chain
(
MessageChain
) –传入的消息链.
Returns:
-
T_Sparkle(
T_Sparkle
) –生成的 Sparkle 对象.
Source code in src/graia/ariadne/message/parser/twilight.py
654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 |
|
get_help 🔗
get_help(
usage: str = "",
description: str = "",
epilog: str = "",
dest: bool = True,
sep: str = " -> ",
formatter_class: Type[HelpFormatter] = HelpFormatter,
) -> str
利用 Match 中的信息生成帮助字符串.
Parameters:
-
usage
(
str
) –使用方法 (命令格式).
-
description
(
str
) –前导描述. Defaults to "".
-
epilog
(
str
) –后置总结. Defaults to "".
-
dest
(
bool
) –是否显示分派位置. Defaults to True.
-
sep
(
str
) –分派位置分隔符. Defaults to " -> ".
-
formatter_class
(
Type[HelpFormatter]
) –帮助格式化器. Defaults to HelpFormatter.
Returns:
-
str(
str
) –生成的帮助字符串, 被格式化与缩进过了
Source code in src/graia/ariadne/message/parser/twilight.py
754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 |
|
help 🔗
help(
usage: str = "",
description: str = "",
epilog: str = "",
dest: bool = True,
sep: str = " -> ",
formatter_class: Type[HelpFormatter] = HelpFormatter,
*,
brief: Optional[str] = None,
help_id: str = TwilightHelpManager.AUTO_ID,
manager: Union[str, TwilightHelpManager] = "global"
) -> Self
利用 Match 中的信息生成帮助字符串.
Parameters:
-
usage
(
str
) –使用方法 (命令格式).
-
description
(
str
) –前导描述. Defaults to "".
-
epilog
(
str
) –后置总结. Defaults to "".
-
dest
(
bool
) –是否显示分派位置. Defaults to True.
-
sep
(
str
) –分派位置之间的分隔符. Defaults to " -> ".
-
formatter_class
(
Type[HelpFormatter]
) –帮助格式化器. Defaults to HelpFormatter.
-
help_id
(
str
) –帮助 id. 默认为自动生成 (推荐自行指定).
-
brief
(
str
) –简要介绍, 默认与 description 相同.
-
manager
(
str
) –帮助信息管理器. 默认 "global" (全局管理器).
Returns:
-
str(
Self
) –生成的帮助字符串, 被格式化与缩进过了
Source code in src/graia/ariadne/message/parser/twilight.py
711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 |
|
TwilightMatcher 🔗
Twilight 匹配器
Source code in src/graia/ariadne/message/parser/twilight.py
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 |
|
get_help 🔗
get_help(
usage: str = "",
description: str = "",
epilog: str = "",
dest: bool = True,
sep: str = " -> ",
formatter_class: Type[HelpFormatter] = HelpFormatter,
) -> str
利用 Match 中的信息生成帮助字符串.
Parameters:
-
usage
(
str
) –使用方法 (命令格式).
-
description
(
str
) –前导描述. Defaults to "".
-
epilog
(
str
) –后置总结. Defaults to "".
-
dest
(
bool
) –是否显示分派位置. Defaults to True.
-
sep
(
str
) –分派位置分隔符. Defaults to " -> ".
-
formatter_class
(
Type[HelpFormatter]
) –帮助格式化器. Defaults to HelpFormatter.
Returns:
-
str(
str
) –生成的帮助字符串, 被格式化与缩进过了
Source code in src/graia/ariadne/message/parser/twilight.py
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 |
|
match 🔗
match(
arguments: List[str], elem_mapping: Dict[str, Element]
) -> Tuple[Dict[Union[int, str], MatchResult], re.Match]
匹配参数
Parameters:
Returns:
Source code in src/graia/ariadne/message/parser/twilight.py
520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 |
|
UnionMatch 🔗
Bases: RegexMatch
多重匹配
Source code in src/graia/ariadne/message/parser/twilight.py
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 |
|
__init__ 🔗
__init__(*pattern: Union[str, Iterable[str]], optional: bool = False) -> None
初始化 UnionMatch 对象.
Parameters:
Source code in src/graia/ariadne/message/parser/twilight.py
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 |
|
WildcardMatch 🔗
Bases: RegexMatch
泛匹配
Source code in src/graia/ariadne/message/parser/twilight.py
298 299 300 301 302 303 304 305 306 307 308 |
|
__init__ 🔗
__init__(greed: bool = True, optional: bool = False) -> None
初始化 WildcardMatch 对象.
Parameters:
Source code in src/graia/ariadne/message/parser/twilight.py
301 302 303 304 305 306 307 308 |
|