Argument aliases/abbrevations for CLI programs (compatible with argparse/click/typer/...)
Project description
ArgAlias
Aliases for arguments in Python CLI utilities (supports argparse, Typer, Click, and similar tools).
This tool is for those who agree that p sh X is shorter then project show X.
You configure which canonical CLI arguments you expect, and what aliases are allowed (e.g. for the canonical argument "show" good aliases are "sh" and "get").
If a canonical name is configured with a prefix, aliases will be resolved only if they follow configured prefix from the first argument.
Add aliases to your argparse, Click, or Typer project in 10 minutes!
Installation
pip3 install argalias
How to use
When you add aliases, the first element is either a str (the canonical name to which the alias will be resolved to) or a List[str] containing prefixes with canonical name.
Each element in the prefix list can be either a simple string (a parameter), * (matches any value of parameter) or values separated by the | symbol.
from argalias import ArgAlias
aa = ArgAlias()
# The script expects "show" parameter anywhere, and it can be aliased as "sh", "s" or even "get"
aa.alias("show", "get", "sh", "s")
# The script expects "employee" as the first parameter, can be aliased as "emp" or "e"
aa.alias(["employee"], "emp", "e")
# same for "project"
aa.alias(["project"], "proj", "p")
# The script expects "create" parameter after "employee" or "project". Can be aliased as "cr" or "c"
aa.alias(["employee|project", "create"], "cr", "c")
# The script expects "delete" as the second parameter after any parameter, can be aliased as "del" or "d"
aa.alias(["*", "delete"], "del", "d")
aa.parse()
# sys.argv now has all aliases resolved, e.g. "sh" resolved to "show"
print(sys.argv)
# now all aliases in sys.argv are resolved and you can do your argparse or click or typer parsing
You can find examples using argparse, Click, and Typer in examples/.
Results:
p sh Something -> project show Something
project cr Mayhem -> project create Mayhem
These aliases will not be replaced:
sh emp John ("sh" resolved to "show" but "emp" will not be resolved: not a first argument)
zzz cr xxx ("cr" will not be resolved: not after employee or project)
aaa bbb del ("del" will not be resolved: prefix is "aaa", "bbb" - two elements, but "*" matches only one element)
Might be replaced incorrectly:
project create sh (You want to create a project named "sh", but "sh" will be replaced with "show" because the alias does not specify any prefix requirements.)
Optional arguments
Optional arguments can make a problems while checking prefixes, e.g. "script.py -v p del X" will not match ["project"] prefix, because first argument is "-v", not "p". Here skip_flags() and nargs() comes to help.
# with skip_flags ArgAlias will ignore any unknown arguments starting with "-", e.g. "-v", or "--some-option"
aa.skip_flags()
# this will ignore --xy 11 22
aa.nargs('--xy', nargs=2)
# this will ginore --level 123 (default value for nargs is 1)
aa.nargs('--level')
See argparse_ex1.py for a real example. You do not need to use skip_flags or nargs for arguments which may be found after prefix (e.g. to "project show projectname -v"). It's needed only when optinal argument may
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file argalias-0.1.3.tar.gz.
File metadata
- Download URL: argalias-0.1.3.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7fdb4f5511026691e9030d19e7849cf2a6fe4e1d02e2c231a5041e946227b6b
|
|
| MD5 |
000e6fd3c4d429b3ee6f181d79bcae40
|
|
| BLAKE2b-256 |
a5fd2eabd295e8ebce341348b170f670b89c7b634ce40e809450b76baea66650
|
File details
Details for the file argalias-0.1.3-py3-none-any.whl.
File metadata
- Download URL: argalias-0.1.3-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a519e4c14f2dd8ad16af85cd8f11bd72e6e4afca6b03b99235657996b26894b7
|
|
| MD5 |
52be70db38bd85bd686f5c2228921b48
|
|
| BLAKE2b-256 |
c9aa533f55535ddcd1931121d0a0c36bdda388d94f77b00ec1b84290b4f1941c
|