ディレクトリー名:os.path.expanduser(パス) は,パス中のホームディレクトリーの記号(Unis:`, Windows:User)を絶対パスにして返します.
import os.path path = '~/hoge/fuga.txt' res = os.path.expanduser(path) print(res)
/home/yamamoto/hoge/fuga.txt