budget/main.py
Luís Murta 9d33df78a8
Adds command line option to add/remove categories
Implements the argument parser, the manager logic and the DB client
methods.
Encapsulates the DbClient connection under the _db attribute on the
manager.

Adds verbose option to enable ORM increased logging.
2022-12-08 00:25:56 +00:00

6 lines
123 B
Python

from pfbudget import Manager, run
if __name__ == "__main__":
command, args = run()
Manager(command, args).start()