Dup Ver Goto 📝

Making Temporary File in Python

To
10 lines, 19 words, 223 chars Page 'TempFile' does not exist.

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)