import os import pathlib # Not pretty but it works CMD_PATH = os.path.dirname(pathlib.Path(__file__).absolute()) __all__ = [ ] for file in os.listdir(CMD_PATH): path = os.path.join(CMD_PATH, file) if os.path.isfile(path) and file.endswith(".py") and file != "__init__.py": __all__.append(file[:-3])