一時ファイル

import tempfile
with tempfile.TemporaryFile("w+") as f:
# 処理

一時ディレクトリ

import tempfile
with tempfile.TemporaryDirectory() as d:
# 処理

中にファイルを入れて何かするなら

import os
os.path.join(d, "ファイル名")

と合わせるとよい.