Module API - Parser
clak.parser
Clak ParserNode Module
This module provides an enhanced command-line argument parsing system built on top of argparse. It supports hierarchical command structures, subcommands, and argument injection.
Key Features:
- Hierarchical command structure support via subparsers
- Argument injection capabilities
- Enhanced help formatting
- Debug logging support
- Exception handling for clean program termination
The module provides several key classes:
- ParserNode: Main parser class extending argparse functionality
- SubParser: For creating nested command structures
- Command: Alias for SubParser for compatibility
Usage can be in either argparse-style:
Or Clak-style:
Debug logging can be enabled by setting CLAK_DEBUG=1 environment variable.
ArgParseItem
Bases: Fn
Base class for argument parser items.
This class represents a generic argument parser item that can be added to an argument parser. It provides common functionality for handling destinations and building parameter dictionaries.
Attributes:
Name | Type | Description |
---|---|---|
_destination |
str
|
The destination name for the argument value |
Source code in clak/parser.py
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 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 141 142 143 144 145 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 |
|
destination
property
writable
Get the destination name for this argument.
Returns:
Name | Type | Description |
---|---|---|
str |
Optional[str]
|
The destination name, derived from the argument name if not explicitly set |
None |
Optional[str]
|
If no destination can be determined |
build_params(dest)
Build parameter dictionary for argument parser.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dest
|
str
|
Destination name for the argument |
required |
Returns:
Name | Type | Description |
---|---|---|
tuple |
Tuple[tuple, dict]
|
A tuple containing (args, kwargs) for argument parser |
Raises:
Type | Description |
---|---|
ValueError
|
If no arguments are found |
Source code in clak/parser.py
Argument
Bases: ArgParseItem
Represents an argument that can be added to an argument parser.
This class handles both positional arguments and optional flags, automatically determining the appropriate type based on the argument format.
Source code in clak/parser.py
attach_arg_to_parser(key, config)
Create and add an argument to the parser.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key
|
str
|
The argument key/name |
required |
config
|
ParserNode
|
The parser configuration object |
required |
Returns:
Type | Description |
---|---|
Action
|
argparse.Action: The created argument parser action |
Source code in clak/parser.py
FormatEnv
Bases: dict
Format env
Source code in clak/parser.py
MetaSetting
Parser
Bases: ParserNode
A simplified parser class that extends ParserNode.
This class provides a more streamlined interface to ParserNode by: - Automatically parsing arguments on initialization - Maintaining compatibility with legacy argument parser names - Providing simpler command/argument creation methods
Parameters:
Name | Type | Description | Default |
---|---|---|---|
*args
|
list
|
Positional arguments passed to ParserNode |
()
|
parse
|
bool
|
Whether to automatically parse arguments on init, only on root nodes |
True
|
**kwargs
|
dict
|
Keyword arguments passed to ParserNode |
{}
|
Source code in clak/parser.py
ParserNode
Bases: Node
An extensible argument parser that can be inherited to create custom CLIs.
This class provides a framework for building complex command-line interfaces with: - Hierarchical subcommands - Automatic help generation - Plugin support - Custom argument types - Exception handling
The parser can be extended by: 1. Subclassing and adding Argument instances as class attributes 2. Adding SubParser instances to create command hierarchies 3. Implementing cli_run() for command execution 4. Implementing cli_group() for command group behavior
Attributes:
Name | Type | Description |
---|---|---|
arguments_dict |
dict
|
Dictionary of argument name to ArgParseItem |
children |
dict
|
Dictionary of subcommand name to subcommand class |
inject_as_subparser |
bool
|
Whether to inject as subparser vs direct |
meta__name |
str
|
ParserNode name |
Source code in clak/parser.py
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 613 614 615 616 617 618 619 620 621 622 623 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 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 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 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 |
|
subparsers
property
Lazily create and return the subparsers object.
__init__(add_help=True, parent=None, name=None, key=None, parser=None, inject_as_subparser=True, proc_name=None)
Initialize the parser.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
add_help
|
bool
|
Whether to add help flags |
True
|
parent
|
ParserNode
|
Parent parser instance |
None
|
name
|
str
|
ParserNode name |
None
|
key
|
str
|
ParserNode key |
None
|
parser
|
ArgumentParser
|
Existing parser to use |
None
|
inject_as_subparser
|
bool
|
Whether to inject as subparser |
True
|
proc_name
|
str
|
Process name |
None
|
Source code in clak/parser.py
add_argument(key, arg=None, **kwargs)
Add an argument to this parser.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key
|
str
|
The key/name for the argument |
required |
arg
|
Argument
|
The argument object to add |
None
|
**kwargs
|
Any
|
Additional keyword arguments to pass to add_argument() |
{}
|
This method adds a new argument to the parser. The argument can be either a positional argument or an optional flag, determined by the Argument object.
Source code in clak/parser.py
add_arguments(arguments=None)
Initialize all argument options defined for this parser.
This method: 1. Collects arguments from arguments_dict 2. Collects arguments defined as class attributes 3. Adds internal arguments like cli_self 4. Creates all argument parser entries
Source code in clak/parser.py
add_subcommand(key, arg=None, **kwargs)
add_subcommands(subcommands=None)
Initialize all subcommands defined for this parser.
This method: 1. Collects subcommands from children dictionary 2. Collects Command instances defined as class attributes 3. Creates parser entries for all subcommands
Source code in clak/parser.py
clean_terminate(err, known_exceptions=None)
Handle program termination based on exception type.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
err
|
Exception
|
The exception that triggered termination |
required |
known_exceptions
|
list
|
List of exception types to handle specially |
None
|
Source code in clak/parser.py
834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 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 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 |
|
cli_execute(args=None)
Execute the command with given arguments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
args
|
Optional[Dict[str, Any]]
|
Arguments to parse |
None
|
Raises:
Type | Description |
---|---|
ClakParseError
|
If argument parsing fails |
NotImplementedError
|
If command has no implementation |
Source code in clak/parser.py
1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 |
|
cli_exit(status=0, message=None)
Exit the CLI application with given status and message.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
status
|
int
|
Exit status code |
0
|
message
|
str
|
Optional message to display |
None
|
cli_exit_error(message)
Exit the CLI application with an error message.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
message
|
str
|
Error message to display |
required |
cli_group(ctx, **_)
Execute group-level command behavior.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ctx
|
SimpleNamespace
|
Command context object |
required |
**_
|
Any
|
Unused keyword arguments |
{}
|
cli_run(**kwargs)
Execute the command implementation.
This method should be overridden by subclasses to implement command behavior. The base implementation shows help for non-leaf nodes.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**kwargs
|
Any
|
Additional keyword arguments from command line |
{}
|
Raises:
Type | Description |
---|---|
ClakNotImplementedError
|
If leaf node has no implementation |
Source code in clak/parser.py
create_parser()
Create a new parser
Source code in clak/parser.py
dispatch(args=None, trace=False, **_)
Main dispatch function for command execution.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
args
|
Optional[Dict[str, Any]]
|
Arguments to parse |
None
|
**_
|
Any
|
Unused keyword arguments |
{}
|
Source code in clak/parser.py
970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 |
|
find_closest_subcommand(args=None)
Find the deepest valid subcommand from given arguments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
args
|
list
|
Command line arguments, defaults to sys.argv[1:] |
None
|
Returns:
Name | Type | Description |
---|---|---|
ParserNode |
ParserNode
|
The deepest valid subcommand parser |
Source code in clak/parser.py
get_fname(attr='key')
parse_args(args=None)
Parse command line arguments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
args
|
Optional[Union[str, List[str], Dict[str, Any]]]
|
Arguments to parse, can be: - None: Use sys.argv[1:] - str: Split on spaces - list: Use directly - dict: Return as-is |
None
|
Returns:
Name | Type | Description |
---|---|---|
Namespace |
Namespace
|
Parsed argument namespace |
Raises:
Type | Description |
---|---|
ValueError
|
If args is invalid type |
Source code in clak/parser.py
show_epilog()
show_help()
RegistryEntry
Registry entry
Source code in clak/parser.py
add_entry(key, value)
Add a new entry to the registry.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key
|
str
|
Key to store the entry under |
required |
value
|
Any
|
Value to store in the registry |
required |
SubParser
Bases: ArgParseItem
Represents a subcommand parser that can be added to a parent parser.
This class handles creation of nested command structures, allowing for hierarchical command-line interfaces. It supports both subparser and injection modes.
Attributes:
Name | Type | Description |
---|---|---|
meta__help_flags |
bool
|
Whether to enable -h and --help support |
meta__usage |
str
|
Custom usage message |
meta__description |
str
|
Custom description message |
meta__epilog |
str
|
Custom epilog message |
Source code in clak/parser.py
248 249 250 251 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 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 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 |
|
attach_sub_to_parser(key, config)
Create a subcommand parser for this command.
Creates a new subparser for the command and configures it with the appropriate help text and options. Validates that the command name is valid.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key
|
str
|
Name of the subcommand |
required |
config
|
ParserNode
|
Parent parser configuration object |
required |
Raises:
Type | Description |
---|---|
ValueError
|
If command name contains spaces |
Returns:
Name | Type | Description |
---|---|---|
ParserNode |
ParserNode
|
The created child parser instance |
Source code in clak/parser.py
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 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 |
|
first_doc_line(text)
Get the first non-empty line from a text string.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text
|
str
|
The text to extract the first line from |
required |
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The first non-empty line, or empty string if no non-empty lines found |
Raises:
Type | Description |
---|---|
AssertionError
|
If first non-empty line starts with spaces |
Source code in clak/parser.py
prepare_docstring(text, variables=None, reindent='')
Prepare a docstring by deindenting and formatting with variables.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text
|
str
|
The docstring text to prepare |
required |
variables
|
dict
|
Variables to format into the docstring |
None
|
reindent
|
str
|
String to use for reindenting |
''
|
Returns:
Name | Type | Description |
---|---|---|
str |
Optional[str]
|
The prepared docstring, or None/SUPPRESS if input was None/SUPPRESS |
Raises:
Type | Description |
---|---|
KeyError
|
If formatting fails due to missing variables |
AssertionError
|
If variables arg is not a dict |