[Django]-Save svg to tempfile Python

4👍

You should not define yourself the name of your temporary file. When you create it, the name will be randomly generated. You can use it directly.

t = tempfile.NamedTemporaryFile()
tree.render(t.name, other_args...)
t.file.seek(0) #reset the file pointer to the beginning
svg_string = t.read()
t.close()

Leave a comment