import config as config import credentials class Test_Module(): def __init__(self): super().__init__() def main(self): print("[TEST Module]> test") if __name__ == "__main__": testModule = Test_Module() testModule.main()