From e1bbcabed5f39205f891fd4a03c74113dc801d73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Oliva?= Date: Wed, 3 May 2023 19:39:50 -0600 Subject: Read and test command line arguments. First try at reading command line arguments. Still needs testing the command `--sort`. --- ledger.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 ledger.py (limited to 'ledger.py') diff --git a/ledger.py b/ledger.py new file mode 100755 index 0000000..61eb6a5 --- /dev/null +++ b/ledger.py @@ -0,0 +1,12 @@ +#!/usr/bin/env python3 +from utils.args import get_arguments, test_args + +def main(): + args = get_arguments() + test_args(args) + + print(args) + + +if __name__ == '__main__': + main() -- cgit v1.2.3