Source code for bibliopixel.main.commands

import importlib, os, pathlib
from .. project.importer import import_module
from .. import commands
from .. util import log


BP_HEADER = """
APPENDIX: ``bp <command> --help`` for each command
==================================================
"""

BP_TEMPLATE = """\
``bp {command}``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

{doc}

{description}
"""

SEPARATOR = """
------------------------------------

"""





if __name__ == '__main__':
    print_help()