Reference
Arger
Bases: ArgumentParser
Contains one parser or multiple commands (subparsers).
Source code in arger/main.py
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 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 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 | |
__init__(func=None, version=None, sub_parser_title='commands', formatter_class=ap.ArgumentDefaultsHelpFormatter, exceptions_to_catch=(), _doc_str=None, _level=0, **kwargs)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
Callable | None
|
A callable to parse the root parser's arguments. |
None
|
version
|
str | None
|
Adds the |
None
|
sub_parser_title
|
The sub-parser title to pass. |
'commands'
|
|
exceptions_to_catch
|
Sequence[type[Exception]]
|
Exceptions to catch and print their messages. This will exit with code 1 and hide the traceback. |
()
|
_doc_str
|
DocstringTp | None
|
Internally passed from |
None
|
_level
|
Internal. |
0
|
|
**kwargs
|
All the arguments that are supported by ArgumentParser |
{}
|
Examples:
Adding a version flag:
version = '%(prog)s 2.0'
Arger() is equivalent to Arger().add_argument('--version', action='version', version=version)
Source code in arger/main.py
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 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 250 251 252 253 | |
add_cmd(func=None, **kwargs)
add_cmd(func: tp.Callable[P, R]) -> Arger
add_cmd(func: None = None, **kwargs) -> tp.Callable[[tp.Callable[P, R]], Arger]
Create a sub-command from the function.
All of its parameters will be converted to CLI arguments based on their types.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
func
|
Callable | None
|
The function to create a sub-command from. |
None
|
**kwargs
|
Passed to the |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
Arger |
Any
|
A new parser created from the function. |
Source code in arger/main.py
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 | |
add_commands(*func)
Add multiple sub-commands to the main command at once.
Source code in arger/main.py
333 334 335 | |
run(*args, capture_sys=True, **kwargs)
Parse CLI and dispatch functions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
capture_sys
|
Whether to capture |
True
|
|
*args
|
str
|
The arguments passed to |
()
|
**kwargs
|
Passed to the |
{}
|
Source code in arger/main.py
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 | |
Argument
Source code in arger/main.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 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 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 | |
__init__(*, type=None, metavar=None, required=None, nargs=None, const=None, choices=None, action=None, flags=(), **kwargs)
Represent positional arguments to the command that are required by default.
Analogous to ArgumentParser.add_argument
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
type
|
Callable[[str], T] | FileType | None
|
The type to which the command-line argument should be converted. Obtained from the type annotation.
Use the Example: |
None
|
metavar
|
str | None
|
A name for the argument in usage messages. |
None
|
nargs
|
int | str | None
|
The number of command-line arguments that should be consumed. To be generated from the type hint. Example: Types and how they are converted to
Note: Even though |
None
|
const
|
Any
|
Covered by the type hint and the given default value. |
None
|
choices
|
Iterable[Any] | None
|
Use |
None
|
action
|
str | type[Action] | None
|
The basic type of action to be taken when this argument is encountered at the command line. |
None
|
flags
|
Sequence[str]
|
These are generated from the argument name. If you want to override the generated flags, you can pass them explicitly. |
()
|
default
|
Any
|
The value produced if the argument is absent from the command line.
|
required |
kwargs
|
Any
|
Delegated to the |
{}
|
Source code in arger/main.py
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 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 111 112 113 114 | |
__repr__()
Helps during tests.
Source code in arger/main.py
116 117 118 | |