This adds a `help` verb (and `--help` option) to the `fonttools` command line tool. Submodules will be listed in the help text if they have an importable `main` function with a docstring, and `main`'s docstring will be used as the one-line description for the help text.
35 lines
956 B
Python
35 lines
956 B
Python
import pkgutil
|
|
import sys
|
|
import fontTools
|
|
import importlib
|
|
import os
|
|
from pathlib import Path
|
|
|
|
|
|
def main():
|
|
"""Show this help"""
|
|
path = fontTools.__path__
|
|
descriptions = {}
|
|
for pkg in sorted(
|
|
mod.name
|
|
for mod in pkgutil.walk_packages([fontTools.__path__[0]], prefix="fontTools.")
|
|
):
|
|
try:
|
|
imports = __import__(pkg, globals(), locals(), ["main"])
|
|
except ImportError as e:
|
|
continue
|
|
try:
|
|
description = imports.main.__doc__
|
|
if description:
|
|
pkg = pkg.replace("fontTools.", "").replace(".__main__", "")
|
|
descriptions[pkg] = description
|
|
except AttributeError as e:
|
|
pass
|
|
for pkg, description in descriptions.items():
|
|
print("fonttools %-12s %s" % (pkg, description), file=sys.stderr)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print("fonttools v%s\n" % fontTools.__version__, file=sys.stderr)
|
|
main()
|