#!/usr/bin/env python3 import logging import argparse from store import Store import importlib import sys from command_line import CommandLine class Commander(CommandLine): def do_foo(self): store_file = 'data/store.db' s = Store(store_file) s.foo() Commander().run()