UltiHash documentation
← back to ultihash.io
  • Get started with UltiHash
  • Cheatsheet
  • Help + support
  • About UltiHash
    • Introduction
    • Features
      • Built-in deduplication
      • S3-compatible API
      • Cloud + on-prem with Kubernetes
      • Fast + lightweight deletion
      • Erasure coding for data resiliency
      • Access management
    • Benchmarks
  • Installation
    • Test installation
    • Kubernetes installation
    • AWS installation
    • System requirements
  • Connection
    • API use
    • Integrations
      • Featured: SuperAnnotate
      • Airflow
      • AWS Glue
      • Iceberg
      • Icechunk
      • Kafka
      • Neo4j
      • Presto
      • PySpark
      • PyTorch
      • Trino
      • Vector databases
    • Upload + download scripts
    • Pre-signed URLs
    • Data migration
  • Administration
    • Scaling, updates + secrets
    • Performance optimization
    • User and policy management
    • Advanced configuration
    • Encryption
  • Troubleshooting
  • Changelog
    • Core image
    • Helm chart
Powered by GitBook
On this page
  • Uploading Data
  • Downloading Data

Was this helpful?

  1. Connection

Upload + download scripts

Last updated 1 month ago

Was this helpful?

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 .

Uploading Data

uh_upload.py :

# Example: Upload a folder to a bucket on UltiHash
python3 uh_upload.py --url <https://ultihash> --bucket mybucket folder/

Downloading Data

uh_download.py :

# 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
https://github.com/UltiHash/scripts/tree/main/boto3/multithread_upload
https://github.com/UltiHash/scripts/tree/main/boto3/multithread_download
AWS Developer Tools