def getHomeDir(): try: from pathlib import Path return str(Path.home()) except: from os.path import expanduser return expanduser("~user")