-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathneptoon_gui_utils.py
43 lines (34 loc) · 1.02 KB
/
neptoon_gui_utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import io
from pathlib import Path
import atexit
import tempfile
import streamlit as st
def cleanup(temp_file: Path):
"""Remove temporary file if it exists"""
if isinstance(temp_file, Path) and temp_file.exists():
temp_file.unlink(missing_ok=True)
def save_uploaded_file(uploaded_file: io.BytesIO):
"""
Save uploaded file to a temporary location.
Parameters
----------
uploaded_file : StreamlitUploadedFile
The uploaded file from Streamlit
Returns
-------
Path
Path to the saved temporary file
"""
if uploaded_file is None:
return None
suffix = Path(uploaded_file.name).suffix.lower()
with tempfile.NamedTemporaryFile(delete=False, suffix=suffix) as tmp_file:
tmp_file.write(uploaded_file.getvalue())
return Path(tmp_file.name)
# Function to process uploaded file (cached)
@st.cache_data
def read_file(file):
if file is not None:
file = open(file, "r")
return file.read() # Read file content
return None