ai_generation_bot / utils /file_handler.py
Prashanthsrn's picture
Upload 2 files
5934eb7 verified
raw
history blame contribute delete
258 Bytes
import os
import tempfile
def save_uploaded_file(uploaded_file):
with tempfile.NamedTemporaryFile(delete=False, suffix=os.path.splitext(uploaded_file.name)[1]) as temp_file:
temp_file.write(uploaded_file.getvalue())
return temp_file.name