Image2Network / Download.py
Ifeanyi's picture
Upload 3 files
d83f3b2 verified
raw
history blame contribute delete
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