-
Notifications
You must be signed in to change notification settings - Fork 0
dagshub
Bankn8II©$A edited this page Sep 17, 2024
·
2 revisions
`from dagshub import get_repo_bucket_client
s3 = get_repo_bucket_client("barionleg/ci_temp")
s3.upload_file( Bucket="ci_temp", # name of the repo Filename="local.csv", # local path of file to upload Key="remote.csv", # remote path where to upload the file )
s3.download_file( Bucket="ci_temp", # name of the repo Key="remote.csv", # remote path from where to download the file Filename="local.csv", # local path where to download the file )`