Skip to content

Instantly share code, notes, and snippets.

@nitinbhojwani
Created November 18, 2021 13:26
Show Gist options
  • Save nitinbhojwani/69bffe864e9e064aca25a5857476629c to your computer and use it in GitHub Desktop.
Save nitinbhojwani/69bffe864e9e064aca25a5857476629c to your computer and use it in GitHub Desktop.
Create temporary file in Python
import tempfile
def _create_temp_file_with_content(file_content):
fp = tempfile.NamedTemporaryFile(delete=False)
fp.write(file_content)
return fp.name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment