SDK - File transfer
pip install blockhouse==1.0.16from blockhouse import Transfer
# Initialize the client
transfer_client = Transfer("f6d8d388f0c3c1479d5b30cb43d5346d")
# Define the bucket name and file name
bucket_name = 'blockhouse-sdk' # Use this specific bucket name
file_name = "your_file"
# Transfer the file
file_upload_response = transfer_client.send_file(file_name, bucket_name)
print("File Upload Response:", file_upload_response)Outputs
Last updated