tags: python tempfile mktemp title: Making Temporary File in Python # Examples ## 1 ``` import tempfile html = vabc1.make_abc_html(src,filename=fn) with tempfile.NamedTemporaryFile(suffix=".html",mode="wt",delete=False) as temp_file: tmpfn = temp_file.name temp_file.write(html) ```