summaryrefslogtreecommitdiffstats
path: root/python/python3-argcomplete/README
diff options
context:
space:
mode:
Diffstat (limited to 'python/python3-argcomplete/README')
-rw-r--r--python/python3-argcomplete/README11
1 files changed, 11 insertions, 0 deletions
diff --git a/python/python3-argcomplete/README b/python/python3-argcomplete/README
new file mode 100644
index 0000000000..7f94cacc03
--- /dev/null
+++ b/python/python3-argcomplete/README
@@ -0,0 +1,11 @@
+Argcomplete provides easy, extensible command line tab completion
+of arguments for your Python script.Argcomplete is particularly
+useful if your program has lots of options or subparsers, and
+if your program can dynamically suggest completions for
+your argument/option values.
+
+It makes two assumptions:
+
+* You're using bash as your shell
+* You're using argparse to manage your
+ command line arguments/options