diff options
author | kotfu <kotfu@kotfu.net> | 2020-02-14 22:27:59 -0700 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2020-02-14 22:27:59 -0700 |
commit | 1e1480507108271a2ba77e1a469582c8944e2c60 (patch) | |
tree | 53001c6892855f476ddc48fdd363ac0b69d15152 /docs/api/parsing.rst | |
parent | 51c831d2f28609c736a0d649b04e7d2e3b3d742a (diff) | |
download | cmd2-git-1e1480507108271a2ba77e1a469582c8944e2c60.tar.gz |
Add documentation for parsing classes
Diffstat (limited to 'docs/api/parsing.rst')
-rw-r--r-- | docs/api/parsing.rst | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/docs/api/parsing.rst b/docs/api/parsing.rst new file mode 100644 index 00000000..dd800eed --- /dev/null +++ b/docs/api/parsing.rst @@ -0,0 +1,45 @@ +cmd2.parsing +=============== + +.. autoclass:: cmd2.Statement + :members: + + .. attribute:: command + + The name of the command after shortcuts and macros have been expanded + + .. attribute:: args + + The arguments to the command as a string with spaces between the words, + excluding output redirection and command terminators. If the user used + quotes in their input, they remain here, and you will have to handle them + on your own. + + .. attribute:: arg_list + + The arguments to the command as a list, excluding output + redirection and command terminators. Each argument is represented as an + element in the list. Quoted arguments remain quoted. If you want to + remove the quotes, use :func:`cmd2.utils.strip_quotes` or use + ``argv[1:]`` + + .. attribute:: raw + + If you want full access to exactly what the user typed at the input + prompt you can get it, but you'll have to parse it on your own, + including: + + - shortcuts and aliases + - quoted commands and arguments + - output redirection + - multi-line command terminator handling + + If you use multiline commands, all the input will be passed to you in + this string, but there will be embedded newlines where the user hit + return to continue the command on the next line. + + +.. autoclass:: cmd2.parsing.StatementParser + :members: + + .. automethod:: __init__ |