Can anyone really explain in lay man’s terms hoe this can actually be done.
I just created a working notebook that outputs a csv file into the /kaggle/working directory and it gets updated with a timestamp every time I run it.
df.to_csv(f’/kaggle/working/CMC_24h_Gainers_Starting_07_10_24 updated – {timestamp}.csv’,mode=’a’, header=False, index=False)#To append to the list
Now I want to make that csv a dataset for the public.
I do not quite understand the use of the kaggle api.
Is this the only way or there’s another?
Thanks!