Create S3 pre-signed URL
We'll setup a server using MinIO and generate a pre-signed URL using the Python SDK so we can upload a triage collection.
$ sudo apt install python3-pip
$ pip3 install miniofrom minio import Minio
client = Minio(
"minio.yourdomain.com.au:9000",
access_key="default_username",
secret_key="default_password",
secure=True,
)$ python3 get_presigned_url.pyLast updated