File management
Upload
single_file_upload_response = await client.astore_file_content(
name="Demo file entry for a single file",
file_path="./datasets/brain_size_data.csv", # ADD DATASET PATH HERE
description="This is a test file that will be be analysed by Edison Analysis",
)directory_upload_response = await client.astore_file_content(
name="Demo file entry for a whole directory",
file_path="./datasets", # ADD DATASET FOLDER PATH HERE
description="This is a directory that will be be analysed by Edison Analysis",
as_collection=True,
)Download
Last updated
