pythonintermediate

Tempfile Temp

Advanced Python pattern: tempfile-temp

python
from tempfile import NamedTemporaryFile

with NamedTemporaryFile('w+', delete=True) as f:
    f.write('temporary data')
    f.seek(0)
    print(f.read())

Use Cases

  • advanced programming
  • patterns

Tags

Related Snippets

Similar patterns you can reuse in the same workflow.