Upload + download scripts
This page provides simple Python scripts for uploading and downloading data to and from UltiHash using our S3-compatible API. Whether you’re pushing a folder to a bucket or retrieving one locally, these tools make it easy to get started. For more complex workflows, check out the full-featured SDKs available via AWS Developer Tools.
Uploading Data
uh_upload.py
: https://github.com/UltiHash/scripts/tree/main/boto3/multithread_upload
# Example: Upload a folder to a bucket on UltiHash
python3 uh_upload.py --url <https://ultihash> --bucket mybucket folder/
Downloading Data
uh_download.py
: https://github.com/UltiHash/scripts/tree/main/boto3/multithread_download
# Example: Download a bucket from UltiHash
python3 uh_download.py --url <https://ultihash> --path local-folder mybucket
These scripts provide a straightforward way to interact with UltiHash storage using the S3-compatible API. For more advanced scenarios, refer to the comprehensive SDKs available at AWS Developer Tools.
Last updated
Was this helpful?