On Python 3.7 importing from the same directory does not work as per https://www.python.org/dev/peps/pep-0328/
the current line line in txfcm.py
import baseapi
gives the error
ModuleNotFoundError: No module named 'baseapi'
I fixed this by changing the line to
from . import baseapi