From afd4e795e3a7e7b34e0d3127f11c05c0e7a2fede Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Tue, 12 Mar 2024 12:02:59 -0600 Subject: AƱade main.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/arg_parser.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/arg_parser.py (limited to 'src') diff --git a/src/arg_parser.py b/src/arg_parser.py new file mode 100644 index 0000000..c2db3bd --- /dev/null +++ b/src/arg_parser.py @@ -0,0 +1,18 @@ +import argparse + + +AVAILABLE_COMMANDS_HELP_STRING = """Available commands: + row-at n: print row at the nth position + get-rows n: print first n rows + insert "csv string": insert row at the end, the row must have exactly 3 elements. + search "lookup": search "lookup" in the table. + """ + + +class ArgParser: + def __init__(self): + self.parser = argparse.ArgumentParser() + self.parser.add_argument('-f', required=True, help='CSV file location') + self.parser.add_argument('-c', required=True, help=AVAILABLE_COMMANDS_HELP_STRING, nargs=2) + self.args = self.parser.parse_args() + print(self.args) \ No newline at end of file -- cgit v1.2.3