一時ファイル import tempfilewith tempfile.TemporaryFile("w+") as f: # 処理 一時ディレクトリ import tempfilewith tempfile.TemporaryDirectory() as d: # 処理 中にファイルを入れて何かするなら import osos.path.join(d, "ファイル名") と合わせるとよい.