From 8f71068058e963df5cccc1b9a8bd0b1d70399d36 Mon Sep 17 00:00:00 2001 From: Siddharth Ravikumar Date: Thu, 7 Jan 2016 18:41:51 -0500 Subject: Rewrote docstrings combox.config module. They're sphinx friendly now. --- combox/config.py | 58 ++++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 50 insertions(+), 8 deletions(-) diff --git a/combox/config.py b/combox/config.py index fae5430..1458b95 100644 --- a/combox/config.py +++ b/combox/config.py @@ -52,13 +52,35 @@ import stat from os import path from os.path import expanduser + def get_secret(): - "Gets the pass phrase from std. input." + """Reads passphrase from standard input. + + Uses :func:`getpass.getpass`. + + :returns: + The passphrase read from standard input. + :rtype: str + + :raises EOFError: + If the standard input is closed. + :raises GetPassWarning: + When unable to turn echo off on the input. + + """ return getpass.getpass('passphrase: ') def get_stdin(prompt): - "Gets a string from std. input." + """Read string from standard input. + + :param str prompt: + Prompt string. + :returns: + The string read from standard input. + :rtype: str + + """ prompt = "%s: " % (prompt) @@ -69,8 +91,24 @@ def config_cb(config_dir = path.join(expanduser("~"), '.combox'), pass_func = get_secret, input_func = get_stdin, write=True): - """ - Configure combox. + """config_cb(config_dir = path.join(expanduser("~"), '.combox'), pass_func=get_secret, input_func=get_stdin, write=True) + + Configure combox (CLI). + + :param str config_dir: + Location of the combox config directory. Defaults to $HOME/.combox. + :param function pass_func: + Function to read the passphrase. Defaults to + :func:`get_secret`. + :param function input_func: + Function to read a string from standard input. Defaults to + :func:`get_stdin`. + :param bool write: + `True` if combox configuration must be written to disk under the + combox config directory; `False` otherwise. Defaults to `True`. + :returns: combox configuration information as dictionary. + :rtype: dict + """ if not path.exists(config_dir): @@ -116,10 +154,14 @@ def config_cb(config_dir = path.join(expanduser("~"), '.combox'), def get_nodedirs(config): - """ - Returns the node path to directories as a list. - - config: a dictionary which has the combox configuration + """Returns paths of node directories as a list. + + :param dict config: + A dictionary that contains configuration information about + combox. + :returns: + Paths of node directories as a list. + :rtype: list """ nodes = [] -- cgit v1.2.3