ofx-processor/ofx_processor/main.py

23 lines
488 B
Python

import click
from ofx_processor.utils import ynab
from ofx_processor.utils.utils import discover_processors
CONTEXT_SETTINGS = dict(help_option_names=["-h", "--help"])
@click.group(context_settings=CONTEXT_SETTINGS)
@click.version_option()
def cli():
"""
Import your data to YNAB with the processors listed below
or manage your config.
"""
cli.add_command(ynab.config, name="config")
discover_processors(cli)
if __name__ == "__main__":
cli() # pragma: nocover