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.
6 lines
123 B
Python
6 lines
123 B
Python
from pfbudget import Manager, run
|
|
|
|
if __name__ == "__main__":
|
|
command, args = run()
|
|
Manager(command, args).start()
|