Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Ifeanyi/Gemini-Image-Generator
Ifeanyi
/
Image2Network
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
cf3f9fc
Image2Network
/
Download.py
Ifeanyi
Upload 3 files
d83f3b2
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
188 Bytes
import
pandas
as
pd
def
save_csv
(
df
):
if
df
is
None
or
len
(df) ==
0
:
return
None
file_path =
"data.csv"
df.to_csv(file_path, index=
False
)
return
file_path